Quant Exam  >  Quant Tests  >  CSC Technical Paper - Quant MCQ

CSC Technical Paper - Quant MCQ


Test Description

30 Questions MCQ Test - CSC Technical Paper

CSC Technical Paper for Quant 2024 is part of Quant preparation. The CSC Technical Paper questions and answers have been prepared according to the Quant exam syllabus.The CSC Technical Paper MCQs are made for Quant 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for CSC Technical Paper below.
Solutions of CSC Technical Paper questions in English are available as part of our course for Quant & CSC Technical Paper solutions in Hindi for Quant course. Download more important topics, notes, lectures and mock test series for Quant Exam by signing up for free. Attempt CSC Technical Paper | 50 questions in 100 minutes | Mock test for Quant preparation | Free important questions MCQ to study for Quant Exam | Download free PDF with solutions
CSC Technical Paper - Question 1

------- is associated with web services. 

CSC Technical Paper - Question 2

Any large single block of data stored in a database, such as a picture or sound file, which does not include record fields, and cannot be directly searched by the database’s search engine.

1 Crore+ students have signed up on EduRev. Have you? Download the App
CSC Technical Paper - Question 3

A reserved area of the immediate access memory used to increase the running speed of the computer program. 

CSC Technical Paper - Question 4

A small subnet that sit between a trusted internal network and an untruster external network, such as the public internet.

CSC Technical Paper - Question 5

Technologies that use radio waves to automatically identify people or objects,which is very similar to the barcode identification systems,seen in retail stores everyday.

CSC Technical Paper - Question 6

main(){

float fl = 10.5;

double dbl = 10.5

if(fl ==dbl)

printf(“UNITED WE STAND”);

else

printf(“DIVIDE AND RULE”)

}

Q. What is the output?

CSC Technical Paper - Question 7

main(){

static int ivar = 5;

printf(“%d”,ivar--);

if(ivar)

main();

}

Q. What is the output?

CSC Technical Paper - Question 8

main()

{

extern int iExtern;

iExtern = 20;

printf(“%d”,iExtern);

}

Q. What is the output?

CSC Technical Paper - Question 9

#define clrscr() 100

main(){

clrscr();

printf(“%d ”, clrscr());

}

Q. What is the output?

CSC Technical Paper - Question 10

main()

{

void vpointer;

char cHar = ‘g’, *cHarpointer = “GOOGLE”;

int j = 40;

vpointer = &cHar;

printf(“%c”,*(char*)vpointer);

vpointer = &j;

printf(“%d”,*(int *)vpointer);

vpointer = cHarpointer;

printf(“%s”,(char*)vpointer +3);

}

Q. What is the output?

CSC Technical Paper - Question 11

#define FALSE -1

#define TRUE 1 

#define NULL 0

main() {

if(NULL)

puts(“NULL”);

else if(FALSE)

puts(“TRUE”);

else

puts(“FALSE”);

}

Q. What is the output?

CSC Technical Paper - Question 12

main() {

int i =5,j= 6, z;

printf(“%d”,i+++j);

}

Q. What is the output?

CSC Technical Paper - Question 13

main() {

int i ;

i = accumulator();

printf(“%d”,i);

}

accumulator(){

_AX =1000

}

Q. What is output? 

CSC Technical Paper - Question 14

main() {

int i =0;

while(+(+i--)!= 0)

i- = i++;

printf(“%d”,i);

}

Q. What is the output?

CSC Technical Paper - Question 15

main(){

int i =3;

for(; i++=0;)

printf((“%d”,i);

}

What is the output?

CSC Technical Paper - Question 16

main(){

int i = 10, j =20;

j = i ,j?(i,j)?i :j:j;

printf(“%d%d”,i,j);

}

Q. What is the output?

CSC Technical Paper - Question 17

main(){

extern i;

printf(“%d ”,i);{

int i =20;

printf(“%d ”,i);

}

}

Q. What is the output?

CSC Technical Paper - Question 18

int DIMension(int array[]){

return sizeof(array/sizeof(int);}

main(){

int arr[10];

printf(“Array dimension is %d”,DIMension(arr));

}

Q. What is output?

CSC Technical Paper - Question 19

main(){

void swap();

int x = 45, y = 15;

swap(&x,&y);

printf(“x = %d y=%d”x,y);

}

void swap(int *a, int *b){

*a^=*b, *b^=*a, *a^ = *b;

Q. What is the output?

CSC Technical Paper - Question 20

main(){

int i =257;

int *iptr =&i;

printf(“%d%d”,*((char*)iptr),*((char *)iptr+1));

}

Q. What is output?

CSC Technical Paper - Question 21

main(){

int i =300;

char *ptr = &i;

*++ptr=2;

printf(“%d”,i);

}

Q. What is output?

CSC Technical Paper - Question 22

#include

main(){

char *str =”yahoo”;

char *ptr =str;

char least =127;

while(*ptr++)

least = (*ptr

printf(" %d”,least);

}

Q. What is the output?

CSC Technical Paper - Question 23

void main(){

int I =10, j=2;

int *ip = &I ,*jp =&j;

int k = *ip/*jp;

printf(“%d”,k);

}

Q. What is the output?

CSC Technical Paper - Question 24

main(){

char a[4] =”GOOGLE”;

printf(“%s”,a);

}

Q. What is the output?

CSC Technical Paper - Question 25

For 1MB memory, the number of address lines required

CSC Technical Paper - Question 26

There is a circuit using 3 nand gates with 2 inputs and 1 output,f ind the output.

CSC Technical Paper - Question 27

What is done for push operation

CSC Technical Paper - Question 28

Memory allocation of variables declared in a program is:

CSC Technical Paper - Question 29

What action is taken when the processer under execution is interrupted by TRAP in 8085MPU?

CSC Technical Paper - Question 30

Purpose of PC (program counter)in a microprocessor is:

View more questions
Information about CSC Technical Paper Page
In this test you can find the Exam questions for CSC Technical Paper solved & explained in the simplest way possible. Besides giving Questions and answers for CSC Technical Paper, EduRev gives you an ample number of Online tests for practice
Download as PDF