Placement Questions C Operators Viva Interview for Engineering Freshers Basics Tutorials

1.Which of the following is not a compound assignment operator?
a) /=
b) +=
c) %=
d) == 
ANSWER: d) ==

2.What will be the output of the following code snippet?
Y = 5;
if (! Y > 10)
X = Y + 3;
else
X = Y + 10;
printf(“ X = %d Y = %d”, X, Y);
a) The program will print X = 15 Y = 5 
b) The program will print X = 15 Y = 0
c) The program will print X = 8 Y = 5
d) The program will print X = 3 Y = 0
ANSWER: a) The program will print X = 15 Y = 5


3.Which of the following statement is correct about the code snippet given below?
num = 5;
printf( “%d”, ++num++ );
a) The code will print 5
b) The code will print 6
c) The code will result in L – value required 
d) The code will result in R – value required
ANSWER: c) The code will result in L – value required

4.Which of the following statement is correct about the code snippet given below?
#include < stdio.h>
int main()
{
float z = 12.35, c = 10;
if( ++z%10 -z)
c += z; 
else
c - = z;
printf( “%f %f”, z, c);
return 0;
}
a) The program will result in compile time error 
b) The program will print 12.35 22.35
c) The program will print 13.35 22.35
d) The program will print 1.35 11.35
ANSWER: a) The program will result in compile time error

5.Which of the following statement is correct about the code snippet given below?
#include < stdio.h>
int main()
{
int n = 12, k;
printf(“%d”, (k = sizeof( n + 12.0))++);
return 0;
}
a) The code will print 17
b) The code will print 5
c) The code will result compile time error 
d) The code will print 4
ANSWER: c) The code will result compile time error

6.Which is executed quickly?
a) ++p
b) P++
c) Both 
d) P+1
ANSWER: c) Both

7.What is the value of X in the sample code given below?
double X; X = ( 2 + 3) * 2 + 3;
a) 10
b) 13 
c) 25
d) 28
ANSWER: b) 13

8.What value will be stored in z if the following code is executed?
main()
{
int x = 5; y = -10, z;
int a = 4, b = 2;
z = x+++++y * b/a;
}
a) -2
b) 0
c)
d) 2
ANSWER: c) 1

9.What is the output of the following program?
#include < stdio.h>
int main()
{
int max =123, min = 10, *maxptr = &max, *minptr = &min;
int **nptr = &minptr, **mptr = &maxptr;
*maxptr = ++*mptr % **nptr;
max - = ( *minptr -**nptr && *maxptr || *minptr);
printf( “ %d %d”, ++**mptr, *minptr);
return 0;
}
a) 4 10 
b) 3 11
c) 3 10
d) 4 11
ANSWER: a) 4 10

10.What will be the output of the following program?
#include < stdio.h>
int main()
{
int num = 0, z = 3;
if ( ! (num <= 0) || ++z )
printf( “%d %d ”, ++num + z++, ++z );
else
printf( “%d %d”, - -num + z- -, - - z);
return 0;
}
a) – 2 1
b) 6 5 
c) 4 5
d) 5 5
ANSWER: b) 6 5

11.Which of the following statement is correct about the code snippet given below?
#include < stdio.h>
int main()
{
int a = 10, b = 2, c;
a = !( c = c == c) && ++b;
c += ( a + b- -);
printf( “ %d %d %d”, b, c, a);
return 0;
}
a) The program will print the output 1 3 0 
b) The program will print the output 0 1 3
c) The program will results in expression syntax error
d) The program will print the output 0 3 1
ANSWER: a) The program will print the output 1 3 0

12.Which of the following is the better approach to do the operation i = i * 16?
a) Multiply I by 16 and keep it
b) Shift left by 4 bit 
c) Add I 16 times
d) Shift right by 4 bit
ANSWER: b) Shift left by 4 bit

13.For the following statement find the values generated for p and q?
int p = 0, q = 1;
p = q++;
p = ++q;
p = q--;
p = --q;
Value of p & q are
a) 1 1 
b) 0 0
c) 3 2
d) 1 2
ANSWER: a) 1 1

14.What is the value of the following expression?
i = 1;
i = ( I< <= 1 % 2)
a)
b) 1
c) 0
d) Syntax error
ANSWER: a) 2

15.What is the correct and fully portable way to obtain the most significant byte of an unsigned integer x?
a) x & 0xFF00
b) x > > 24
c) x > > ( CHAR_BIT * (sizeof(int) - 3))
d) x > > ( CHAR_BIT * (sizeof(int) - 1)) 
ANSWER: d) x > > ( CHAR_BIT * (sizeof(int) - 1))

16.Expression x % y is equivalent to____?
a) (x – (x/y))
b) (x – (x/y) * y) 
c) (y – (x/y))
d) (y – (x/y) * y)
ANSWER: b) (x – (x/y) * y)

17.Which header file is essential for using strcmp() function?
a.) string.h
b.) strings.h
c.) text.h
d.) strcmp.h
ANSWER: a.) string.h

18.What is the value of the following expression?
i = 1;
i < < 1 % 2;
a)
b) -2
c) 1
d) 0
ANSWER: a) 2

19.p++ executes faster than p + 1 since
a) P uses registers
b) Single machine instruction required for p++ 
c) Option a and b
d) None
ANSWER: b) Single machine instruction required for p++

20.) Type the name of the single dot that represents the smallest graphic unit that can be displayed on the screen?
a.) unit
b.) bit
c.) byte
d.) pixel
ANSWER: d.) pixel

21.) what is the original(or highest level)directory on a disk?
a.) root
b.) tree
c.) c>
d.) d>
ANSWER: a.) root

Related

Java Question Bank Objective Q&A

Here we have collected frequently asked question in job interviews.We have chosen Java as our readers choice.You will find these helpful.We encourage our Readers to send in their suggestion. If re...

Common C Questions : TURBO C/C++ - Getting Started Answers to Common Questions

Questions:What potential problems can arise from typecasting a base class pointer into a derived class pointer so that the derived class's member functions can be called? Answers: Syntacticall...

Interview Questions Loop C Programming For Enginnering Students Basics Viva Tutorials

1.Which is the correct statement? a) Printf(“Maximum = %d\n”, (x.y) ? x : y); b) Printf( “%s\n”, (mark >= 60) ? “First class” : “Not first class” ); c) Printf(“%s\n”, PASS); d) All of the above ...

Post a Comment

SPAMMING will not be Appreciated.

emo-but-icon
:noprob:
:smile:
:shy:
:trope:
:sneered:
:happy:
:escort:
:rapt:
:love:
:heart:
:angry:
:hate:
:sad:
:sigh:
:disappointed:
:cry:
:fear:
:surprise:
:unbelieve:
:shit:
:like:
:dislike:
:clap:
:cuff:
:fist:
:ok:
:file:
:link:
:place:
:contact:

Hot in weekRecentComments

Hot in week

Recent

C Programming - Data Structure Interview Questions Answer

We have started series of C programming Q&A for job interview for freshers.Computer / IT Engineering Professionals and Students alike will be benefited.We recommend our user to go through pre...

C Programming Question Answer

We have started series of C programming Q&A for job interview candidates.Engineering Professionals and students alike will be benefited.We recommend our user to go through previous post to enha...

Java Objective Multiple Answer Questions Bank

We have chosen Java Oracle J2EE, J2SE, Net-beans, JVM ( Java Virtual Machine ) as our readers choice.We have created Objective Type Multiple Answer Question Collection that are frequent in job inte...

Java Question Bank Objective Q&A

Here we have collected frequently asked question in job interviews.We have chosen Java as our readers choice.You will find these helpful.We encourage our Readers to send in their suggestion. If re...

C Question Bank

We have started series of C programming Question bank for job interview candidates.Engineering Professionals and students alike will be benefited.We encourage our readers to provide feedback and as...

Comments

Anonymous:

Technology is always being the vital part of evolution either mobile phones or computer all are the part of it. Electronics have made things so easy and reliable for human being s. very few schools in...

Anonymous:

A detailed and complete knowledge guide for fresher's to crack their interviews in Embedded Programming. Looking for a job contact <a href="http:/celebratejobs.com/>celebratejobs</a&...

YouLoseBellyFat:

visual basic example codes

App Development Mumbai:

It was very useful for me. Keep sharing such ideas in the future as well. This was actually what I was looking for, and I am glad to came here! Thanks for sharing the such information with us.

Anonymous:

Thanks for Appreciations.We love to hear again from you.

Our Channel

Contact Us

Name

Email *

Message *

item