ISS (Statistical Services) Statistics Paper I (New 2016 MCQ Pattern): Questions 89 - 93 of 472
Access detailed explanations (illustrated with images and videos) to 472 questions. Access all new questions- tracking exam pattern and syllabus. View the complete topic-wise distribution of questions. Unlimited Access, Unlimited Time, on Unlimited Devices!
View Sample Explanation or View Features.
Rs. 300.00 -OR-
How to register? Already Subscribed?
Question 89
Question
MCQ▾File servers have the following characteristics:
Choices
Choice (4) | Response | |
---|---|---|
a. | Single CPU | |
b. | Redundant power supplies | |
c. | Slow I/O buses | |
d. | Slow hard disks |
Question 90
Question
MCQ▾Find the order of following algorithm where N is a natural number and z, y, x are variables:
for(z=0;z<N⚹N;z++) {
for(y=0;y<N+2;y++) {
for(x=0;x<N/2;x++) {
do_work( x,y,z );
}
}
}
Choices
Choice (4) | Response | |
---|---|---|
a. | o () | |
b. | O () | |
c. | o () | |
d. | O () |
Question 91
Question
MCQ▾ENIAC computers are examples of:
Choices
Choice (4) | Response | |
---|---|---|
a. | Fourth generation computers. | |
b. | Third generation computers. | |
c. | First generation computers. | |
d. | None of the above |
Question 92
Question
MCQ▾What is hoax?
Choices
Choice (4) | Response | |
---|---|---|
a. | Hoax message contains the famous sentence “Forward this warning to all your friends immediately” . | |
b. | Hoaxes describe viruses with functionalities that cannot exist in real life. | |
c. | A hoax is a chain letter that is usually circulated as an email message. | |
d. | All a., b. and c. are correct |
Question 93
Question
MCQ▾The output of following C program will be:
#include <stdio.h>
int main () {
int a = 10;
while(a) {
while(!a==a-a) {
printf("value of a: %dn", a);
}
return 0;
}
Choices
Choice (4) | Response | |
---|---|---|
a. | 0 | |
b. | 1 | |
c. | 10 | |
d. | None of the above |