Web Application Development - Visual Studio.Net
Create a database with a table called "tblStudents" and "tblLogin." This table should have the following columns. StudentID -Text (Primary Key.) LastName - Text. TelephoneNumber - Text. Level (e.g. "sophomore," "junior," etc.) The table, tblLogin, should have the following columns – ID - Autonumber (Primary ...continues
Decision Support System Application
Write a paper demonstrating the application of your chosen DSS to a specific problem or set of problems. Include the role of the following components of a DSS as they pertain to your system: -description of the situation, intended users, database, and model base.
Describe what exactly is an object-oriented software architecture?
Can you help to describe what is exactly object-oriented software architecture mean?
1. You have just been asked to take over an existing project and asked to make a few changes for new features. The person that worked on this software before you is not available. What documentation (either in the code or external) or other information would you like to see to help you more quickly understand the code you have - ...continues
Your local community college is seeking your help to develop a hierarchy chart. The college administrator provides you with the following information. Students with less than 16 hours of coursework are considered freshmen, students with 17 to 32 hours are sophomores, students with 33 to 48 hours are juniors, and students with mo ...continues
Your team has been hired as a Java programmer by Real Estates Solutions Inc. Your task is to write a Java applet for their web site that would enable customers to figure out their monthly mortgage payments. The applet input will be the loan amount, annual percentage rate or APR, and the number of years to pay out the loan. Th ...continues
You have been hired by an engineering company to develop software to perform advanced geometric calculation. Your new boss asked you to develop an application that allows engineers to calculate the surface area and the volume of a sphere. For this, you will need to use the following formulas. Surface Area = 4 * p * r2 Volum ...continues
What are the advantages and disadvantage of a phased development approach?
Write a method, removeAll, that takes three parameters: an array of integers, the length of the array, and an integer, say, removeItem. The method should find and delete all occurrences of removeItem in the array. If the value does not exist or the array is empty, output an appropriate message. (Note that after deleting the elem ...continues
The Programming Example: Calculator in Chapter 12 is designed to do operations on integers. Write a similar program that can be used to do operations on decimal numbers. (Note: If division by zero occurs with values of the int data type, the program throws a division by zero exception. However, if you divide a decimal number by ...continues