Sde 44
Sde 44
BSc MATHEMATICS
VI Semester
Elective Course
1. # Define is a
A. opening brace of the main function. B. Closing brace of the main function. Before the main function
D. None.
D. All variables in C must be declared for their types before they are used in the program.
A. Only for floating point data B. integer data C. exponential functions D. None.
A. If both operands are of the same sign B. If both the first and second operand is negative always
C.. If the second operand is negative D. Both A and B above.
A. Incremented first and then expression is evaluated using the new value of the variable.
B. The expression is evaluated first using the original value of the variable and then variable is
incremented.
C. The expression is evaluated first using the original value of the variable and then the variable is
A. Construct conditional expressions B. link the related expressions together C. manipulate Data at bit
Level.
A. Relational operator B. logical operator C. Compile time operator D.Both A and B above.
A. -2 B. 2 C. 1 D. None.
D. None.
#include <stdio.h>
int main( )
int y =12;
const int x = y;
return 0;
A. Both can occur multiple times, but a declaration must occur first.
C. A declaration occurs once, but a definition is the statement that actually allocates no memory.
D. None.
24. What will be printed when the sample code below is printed?
int x =0;
for( x=1; x<4; x++);
printf(“x= %d\n”, x);
A 0 B 1 C 3 D 4.
25. what will x contain when the sample code below is executed?
int x =3;
if (x= =2);
x = 0;
if (x = = 3);
x= ++;
else x + = 2;
27. Which one of the following will read a character from the keyboard and will store it in the variable c ?
int i;
i++;
int main( )
A. will not compile B. will print out I =9 C. will print out I = 10 D. It will loop indefinitely.
case 8
i+= 4
break;
printf( “i = %d\n”,i)’
A i= 4 B i=8 C i=9 D i = 8.
for(;;)
if ( x++ = = 4)
break;
continue;
printf ( “ x = % d\n”.x );
A. x =0 B. x = 1 C. x = 4 D. x =5.
33 . Which one among the following statement is correct, while using function from character handling library?
A. It is a must to include <stdio.h) header file B. The header file <stdio.h> is not needed C. The contents
of the header file <stdio.h) is not a part of the source code during compilation D None.
A. A white space character is found in a numeric specification. B. Maximum number of Characters are
read and write. C. When the function arguments are pointers D. None.
A. code statements. B. Use braces on separate lines to identify the blocks C. Use Branching statements
A one that is Not optional B. one that transfers control out of the switch statement. C. A program
stops its execution when break is encountered. D. Always used with nested loops.
A. A switch expression can be of any type B. The default label is required in the switch
statement C. It is not permitted to nest switch statements. D. The switch statement tests
the value of a given variable against a list of case values, and when match is found
38. When applied to a variable, what does the unary "&" operator yield?
39. Which one of the following will define a function that CANNOT be called from another
Source file?
A void function() B .extern void function() C. const void function() D. private void
function() .
42. A memory location with some data that will not change is a :
43. All of the following are required to declare a symbolic constant except:
A. .The Const keyword. B. The data type. C The name of the constant.
D..The value of the constant..
A. The Dim keyword. B. The name of the variable. C .The data type.
D. All of the above are required.
46. To declare more than one variable on the same line, separate the variables with:
A. ‘ ’ .B .” “. C. ‘a’ D ‘abc’.
49 Variable and constant names can not contain a:
53.If you want a local variable to preserve its value for the duration of the form, use:
56..The number of significant digits a numeric data type can handle refers to its:
58.The data type that stores the values True and False is:
59.The data type often used for counters, which rarely exceed several thousands is:
60. When the result of a numeric operation exceeds the capacity that a data type can handle, error
occurs.
63.The function that. converts an argument into a String data type is:
A.The value in the variable HourlyPlan is copied into the txtPay.Text text box.
B.The value in the variable HourlyPlan is compared to the value in txtPay .
C.The value entered in the txtPay text box is copied into the variable Hourlyplan.
D.The value entered in the txtPay text box is compared to the value in the variable
\ Hourlyplan.
68.When several arithmetic operations are combined into one expression, the highest order of
precedence is:
A. quotation marks (“). B.single quotes (‘). C.pound signs (#). .D.exclamation points(!).
71.The function that converts the string “345” into a numeric value is:
A.1 B. 2 C. 9/4 D 0
77.According to the Standard C specification, what are the respective minimum sizes (in bytes)
of the following three data types: short; int; and long?
A. 1, 2, 2. B. 1, 2, 4 . C. 1, 2, 8. D. 2, 2, 4.
A! B. # C. $ D;
A. 32 B. 40 C. 24 D. 56
85. The pair of functions used for single character I/O are:
A.getchar( ) and putchar() B. scanf() and printf() c. Input() and output() D .None .
86.Function used to read a single character that echoes on the screen , as you type is:
A.getchar() B.Getch() C. getche() D both B&C.
87.The format specification for printing an integer number with minimum field width w is:
A. %wf B. %ld C .% wd D. %wf
A .A multi way decision operator B. Two way conditional operator C .loop operator
D. None.
A. goto does not break the normal sequential execution f the program
B. The goto requires a lanel and it will be label can be only before the goto statement
C.The goto requires a label n order to udentify the place where branch is to be made.
A. Exit controlled loop statement. B. entry controlled loop statement C. Both A&B
D .None.
A. It is an exit controlled loop B. the body of the loop is executed many times
A. An .Entry controlled loop B. Nesting is allowed C. The starting value of the control
variable must be less than its ending value D. Both A &B above.
A. arrays must be declared before they are used so that the compiler can allocate space for
them in memory B. The type specification such as int is not needed C .Each character of
A. It is an extension of Simple if. B..If the test expression is true then the true block of
A. An array is similar to an ordinary variable except that it can store multiple elements of
similar type.
C. array elements can be passed to a function by calling the function by value or by reference
A. when we need to choose one among the number alternatives, a switch statement is used.
D.The control falls through any of the cases unless a break statement is encountered.
A. The statements within the while loop would keep on getting executed till the condition
1.B 29.D
2.A 30.B
3.B 31.B
4.A 32.A
5.D 33.A
6.C 34.A
7.B 35.B
8.A 36.B
9.B 37.D
10.A 38.A
11.B 39.A
12.B 40.C
13.C 41.B
14.A 42.A
15.C 43.B
16.A 44.D
17.B 45.C
18.B 46.A
19.A 47.B
20.D 48.B
21.B 49.D
22.B 50.A
23.A 51.B
24.A 52.B
25.D 53.B
26.A 54.B
27.D 55.D
28.D 56.A
57.C 86.B
58.D 87.A
59.B 88.D
60.A 89.D
61.B 90.D
62.C 91.C
63.A 92.D
64.D 93.A
65.B 94.D
66.D 95.C
67.A 96.D
68.D 97.A
69.B 98.D
70.A 99.A
71.A 100. D
72.A
73.A
74.A
75.D
76.B
77.A
78.D
79.D
80.A
81.A
82.C
83.D
84.B
85,C