Answer:
(c) system.exist(1);
Explanation:
system.exist(1); is used for the termination of the program here both option c and d should be correct but in option d there is exit(0) and zero indicates return means program will return but besides zero if there is any non zero number then program will not return and in option c there is a non zero number which means program will not return so option c system.exist(1); will be the correct option for the termination of program
Answer:
Laptops
Explanation:
They are the most common disk exchanging devices.
Answer:
MP3
Explanation:
It is MP3 because it is the best audio to use for audio input
Answer:
On the Formulas tab, in the Function Library group, click the Financial button, and click PMT. Enter B3/12 in the Rate argument box. Enter B4 in the Nper argument box. Enter B2 in the Pv argument box. Click OK.
Explanation:
Inside any excel spreadsheet like Microsoft Excel or Libre office Calc.
While your cursor is present at cell B6, do the following
On the formulas tab, in the function library group,
click the financial button
Then click PMT
Enter B3/12 in the rate argument box.
Enter b4 in the Nper argument box. Enter B2 in the argument box.
Click ok.
The following assumptions were made:
the annual interest rate is stored in cell B3
the number of payments in cell B4
the loan amount in cell B2.
Answer:
You would start by multiplying 9 with 1 then with 2 and then with 3 and so on as:
9 x 1 = 9
9 x 2 = 18
9 x 3 = 27
. . . . . . . .
Just put this into QBASIC statements now.
Let us assume you want to display 10 multiples of 9. Then you would want to multiply 9 with 1 and do the same thing upto 10. This is how you do it.
CLS
FOR I = 1 TO 10
PRINT 9 * I
NEXT I
END