ISS (Statistical Services) Statistics Paper I (New 2016 MCQ Pattern): Questions 110 - 114 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 110
Question
MCQ▾Which of the following is among the five standard data types of python programming language?
Choices
Choice (4) | Response | |
---|---|---|
a. | Numbers | |
b. | Tuple | |
c. | List | |
d. | All a., b. and c. are correct |
Question 111
Question
MCQ▾The situation when in a linked list START = NULL is called Stack________.
Choices
Choice (4) | Response | |
---|---|---|
a. | Saturated | |
b. | Underflow | |
c. | Overflow | |
d. | Fullflow |
Question 112
Question
MCQ▾Which of the following statement is/are incorrect regarding Static class member variables?
Choices
Choice (4) | Response | |
---|---|---|
a. | All the objects share the single copy of a static variable. | |
b. | On the creation of the first object of the class a static variable is always initialized by zero. | |
c. | The scope is only within the class but its lifetime is throughout the program. | |
d. | None of the above |
Question 113
Question
MCQ▾What is the output of following program?
#include<stdio.h>
void main()
{
int x=25,y=15,z;
z = x< 2 + y!=15;
printf("%d",z);
}
Choices
Choice (4) | Response | |
---|---|---|
a. | 0 | |
b. | 5 | |
c. | 1 | |
d. | 15 |
Question 114
Question
MCQ▾What will happen if the below program is executed?
#include <stdio.h>
int main()
{
int main = 45;
printf("%d", main);
}
Choices
Choice (4) | Response | |
---|---|---|
a. | It will experience infinite looping. | |
b. | It will cause a compile-time error. | |
c. | It will cause a run-time error. | |
d. | It will run without any error and prints 45. |