Campus Placement Exam  >  Campus Placement Test  >  Placement Papers - Technical & HR Questions  >  CSC Technical Paper - Campus Placement MCQ

CSC Technical Paper - Free MCQ Test with solutions for Campus Placement


MCQ Practice Test & Solutions: CSC Technical Paper (50 Questions)

You can prepare effectively for Campus Placement Placement Papers - Technical & HR Questions with this dedicated MCQ Practice Test (available with solutions) on the important topic of "CSC Technical Paper". These 50 questions have been designed by the experts with the latest curriculum of Campus Placement 2026, to help you master the concept.

Test Highlights:

  • - Format: Multiple Choice Questions (MCQ)
  • - Duration: 100 minutes
  • - Number of Questions: 50

Sign up on EduRev for free to attempt this test and track your preparation progress.

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.

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
85 docs|57 tests
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