<< Prev Showing: 81-85 of 348 Next >>
· 56-60 · 61-65 · 66-70 · 71-75 · 76-80 · 81-85 · 86-90 · 91-95 · 96-100 · 101-105 · 106-110 ·Need you to check and correct answer to problem. The computer screen should look like this when the program is run.
Serendipity Booksellers
Main Menu
1. Cashier Module
2. Inventory Database Module
3. Report Module
4. Exit
Enter Your Choice:
int. main()
{
cout << "Serendipity Booksellers"; endl;
cout << "Main Menu"; endl;
cout << "1. Cashier Module"; endl;
cout << "2. Inventory Database Module"; endl;
cout << "3. Report Module"; endl;
cout << "4. Exit"; endl;
cout<< "Enter Your Choice"; endl;
cout<
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
65840
OTA ID:
103644
COBOL: Widely used Business-Oriented language
All COBOL was the first business-oriented language available, is 30+ years old, and is still being used for many business applications. offer opinions on why it is still being used. What are the common characteristics that almost all programming languages have in common. There are four. Identify them and explain for which each is used.
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
70898
OTA ID:
105263
It contains the C++ wages program using a repeat loop in order to enable the user to compute several wages. The loop ends when the user enters -1 for either the hours_worked or the pay_rate. C++ uses the "do" keyword instead of "repeat". /* Program to compute the weekly wages repeatedly */ /* */ /* Inputs: (keyboard) */ /* 1. No. of hours worked during a week (integer) */ /* 2. Pay rate (dollars per week) (float) */ /* */ /* Output: */ /* weekly wages displayed on screen as float */ /*... click for more
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
77080
OTA ID:
104597
Declare x as float Declare y as integer Declare i as integer Declare result as float Input x // can be any float Input y // has to be a positive integer Set result = 1 // initial value For i = 1 to y result = result * x End for Output result Convert this pseudocode into a C++ program. Note the restrictions on x and y: x can be any kind of float (including negatives), whereas y should only be an integer that is greater than or equal to 0 (0 is allowed). Use the following template for your program and remember to maintain all the blank lines, spaces, and general alignment. Then replace the areas that have been highlighted in yellow with your code. Do not change any of the oth... click for more
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
77082
OTA ID:
104597
Visual Basic .NET 2003 mortage calculator a MS windows (GUI)
Write the program in VB.Net (not Web based) using a loan amount of $200,000 with an interest rate of 5.75% and a 30 year term. Display the mortgage payment amount. Insert comments to document the program. This is generate a GUI for entering loan information and the VB.NET program to calculate information entered input into the GUI and results output mortage paymeny Insert comments to document the program. Attach a design flow chart and a version control sheet.
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
77134
OTA ID:
103644
<< Prev Showing: 81-85 of 348 Next >>
· 1-5 · 6-10 · 11-15 · 16-20 · 21-25 · 26-30 · 31-35 · 36-40 · 41-45 · 46-50 · 51-55 · 56-60 · 61-65 · 66-70 · 71-75 · 76-80 · 81-85 · 86-90 · 91-95 · 96-100 · 101-105 · 106-110 · 111-115 · 116-120 · 121-125 · 126-130 · 131-135 · 136-140 · 141-145 · 146-150 · 151-155 · 156-160 · 161-165 · 166-170 · 171-175 · 176-180 · 181-185 · 186-190 · 191-195 · 196-200 · 201-205 · 206-210 · 211-215 · 216-220 · 221-225 · 226-230 · 231-235 · 236-240 · 241-245 · 246-250 · 251-255 · 256-260 · 261-265 · 266-270 · 271-275 · 276-280 · 281-285 · 286-290 · 291-295 · 296-300 · 301-305 · 306-310 · 311-315 · 316-320 · 321-325 · 326-330 · 331-335 · 336-340 · 341-345 · 346-348 ·Page generated in 0.0945 seconds