CS201-Midterm
1 / 50
If the elements of an array are already sorted then the useful search algorithm is,
2 / 50
Declaring structures does not mean that memory is allocated.
3 / 50
In C/C++ the #include is called,
4 / 50
Consider the following code segment. What will the following code segment display? int main(){
int age[10] = {0};
cout << age ;
}
5 / 50
What does 5 | 6 , evaluate to in decimal where ‘|’ is bitwise OR operator?
6 / 50
When a pointer is incremented, it actually jumps the number of memory addresses
7 / 50
Which of the following header file include string conversion functions?
8 / 50
How many parameter(s) function getline() takes?
9 / 50
What will be the correct syntax for initialization of pointer ptr with string "programming"?
10 / 50
UNIX has been developed in ________ language.
11 / 50
A precise sequence of steps to solve a problem is called
12 / 50
If an array has 100 elements, what is allowable range of subscripts?
13 / 50
What will be the result of arithmetic expression 6+27/3*3?
14 / 50
Consider the following code segment. What will be the output of this code segment?
int arr[6] = {2, 3, 7, 4, 5, 6} ;
int *ptr1 =&arr[1] ;
int *ptr2 = &arr[4] ;
cout << (ptr2-ptr1) ;
15 / 50
For which values of the integer _value will the following code becomes an infinite loop?
int number=1;
while (true) {
cout << number;
if (number == 3) break;
number += integer_value; }
any number other than 1 or 2
16 / 50
The size of int data type is
17 / 50
What is the output of the following statement?
int i = 2.5; do { cout i * 2; } while (i > 3 && i < 10);
18 / 50
Initialization of variable at the time of definition is,
19 / 50
The remainder (%) operator is,
20 / 50
Most efficient method of dealing with structure variables is to define the structure globally
21 / 50
Which of the following function(s) is/are included in stdlib.h header file?
22 / 50
In Flow chart process is represented by
23 / 50
The return type of a function that do not return any value must be __________
24 / 50
C++ views each file as a sequential stream of________________ .
25 / 50
We want to access array in random order which approach is better?
26 / 50
What does !(7) evaluate to in decimal where ! is a NOT operator?
27 / 50
The address operator (&) can be used with,
28 / 50
There are mainly------------------- types of software
29 / 50
Which of the following header file defines the rand() function?
30 / 50
The correct syntax of do-while loop is,
31 / 50
In C/C++ the string constant is enclosed
32 / 50
25.What will be the range of numbers generated by function rand () % 9?
33 / 50
Which of the following is an extension of header file?
34 / 50
What will be the value of i and j in the following code segment?
int i, j ;
int x[5] = {2, 3, 4, 8, 9} ;
int *ptr =&x[2];
i = (*ptr)++ ;
j = *ptr++ ;
35 / 50
C is widely known as development language of _______ operating system.
36 / 50
Syntax of union is identical to ______
37 / 50
The variables having a name, type and size are just like empty boxes.
38 / 50
Pointer is a variable which store
39 / 50
Which of the following is the starting index of an array in C++?
40 / 50
What does 5 ^ 6 , evaluate to in decimal where ‘^’ is Exclusive OR operator?
41 / 50
Carefully analyze the following lines of code and chose the correct option.
ch1=”a”;
ch2=’a’;
42 / 50
&& is------------------ operator.
43 / 50
C is a/an ______ language
44 / 50
Which of the following functionreturns the size of a string variable?
45 / 50
What will be the correct syntax to initialize all elements of two-dimensional array to value 0?
46 / 50
When we are using const keyword with a variable x then initializing it at the time of declaration is,
47 / 50
The Compiler of C language is written in
48 / 50
When an array element is passed to a function, it is passed by ----------------.
49 / 50
The condition in while loop may contain logical expression but not relational expression.
50 / 50
In if structure the block of statements is executed only,
Your score is
The average score is 73%
Restart quiz