It is read and write memory. Its contents can be changed.
Discuss About this Question.
Consider the following DO statement in Fortran 77
DO 23 X = 10.0, 2.0
The number of DO loop executions in the above statement is
A:
10
B:
2
C:
5
D:
zero
Answer:D
Do loop will not be executed since 0 is less than 10.
Discuss About this Question.
Consider the following logical IF statement in FORTRAN 77
IF (SALT. EQ. PEPPER) GO TO 11 GOTO 13
The above statement using arithmetic IF statement would be
A:
IF (SALT - PEPPER) 13, 11, 13
B:
IF (SALT - PEPPER) 11, 11, 13
C:
IF (SALT - PEPPER) 11, 13, 13
D:
IF (SALT - PEPPER) 13, 11, 11
Answer:A
The given statement is logical IF statement. The control goes to statement 11 if SALT = PEPPER otherwise control goes to statement 13 Same is true in arithmetic statement (a).
Discuss About this Question.
Which has volatile memory?
A:
Magnetic tape
B:
RAM
C:
Diskette
D:
Hard disk
Answer:B
RAM has volatile memory and therefore the matter has to be saved frequently.
Discuss About this Question.
If PRIN = 200.0 and BINT = 0.0525 the result of expression INCOME = PRIN * (1 + BINT) will be
A:
210
B:
210.5
C:
210.5000
D:
210.50
Answer:A
The result should not contain decimal.
Discuss About this Question.
Ad Slot (Above Pagination)
Install ExamAdept
Fast access — add this app to your device.
To install on iPhone/iPad: tap Share → Add to Home Screen.
Discuss About this Question.