ISS (Statistical Services) Statistics Paper I (New 2016 MCQ Pattern): Questions 123 - 127 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 123
Question
MCQ▾What does an Inline Function do?
Choices
Choice (4) | Response | |
---|---|---|
a. | It removes the overhead cost associated with the function. | |
b. | It makes the program grow larger. | |
c. | Both a. and b. are correct | |
d. | Question does not provide sufficient data or is vague |
Question 124
Question
MCQ▾Which of the following is/are correct regarding Frontend development?
Choices
Choice (4) | Response | |
---|---|---|
a. | Frontend is usually visible to user in the form of an interface inviting to interact with user. | |
b. | The front-end developer is the bridge connecting the designer and back-end developer. | |
c. | Both a. and b. are correct | |
d. | None of the above |
Question 125
Question
MCQ▾The format identifier ‘% o’ can be used for ________ data type?
Choices
Choice (4) | Response | |
---|---|---|
a. | scientific notation | |
b. | char | |
c. | an octal number | |
d. | int |
Question 126
Question
MCQ▾Suppose we implement quicksort on an array of n elements by always choosing the central element of the array as the pivot. Then the tightest upper bound for the worst case performance is
Choices
Choice (4) | Response | |
---|---|---|
a. | o (n2) | |
b. | O (nLogn) | |
c. | O (n2) | |
d. | Θ (nLogn) |
Question 127
Question
MCQ▾The output of following code is:
#include <stdio.h>
void main()
{
5> 6 ? return 5 : return 6;
}
Choices
Choice (4) | Response | |
---|---|---|
a. | Return 5 | |
b. | Return 6 | |
c. | Garbage Value | |
d. | Compilation error |