Embedded C Programming Twenty Interview Questions Basics Viva Tutorials

1.) Trace the output of the code

#include 
void foo(int*);
int main()
{
int i = 10;
foo((&i)++);
}
void foo(int *p)
{
printf(""%d\n"", *p);


a.) 10
b.) Some garbage value
c.) Segmentation fault/Code crash
d.) Compile time error
ANSWER: c.) Segmentation fault/Code crash
2.) Trace the output of the code
#include 
struct p
{
int x;
char y;
};
int main()
{
struct p p1[] = {1, 92, 3, 94, 5, 96};
struct p *ptr1 = p1;
int x = (sizeof(p1) / 3);
if (x == sizeof(int) + sizeof(char))
printf(""%d\n"", ptr1->x);
else
printf(""falsen"");


a.) Compile time error
b.) 1
c.) Undefined Behaviour
d.) FALSE
ANSWER: d.) FALSE

Watchdog Timer Interview Questions
Structures Unions Enumeration - Flow-control in C
C Storage Classes
Variable Function And Structure
C Viva Questions for Freshers Basics


3.) Which of the following structure declaration doesn't require pass-by-reference?
a.) struct{int a;}s; main(){ }
b.) struct temp{int a;}; main() { struct temp s; }
c.) struct temp{int a;};
main(){}
struct temp s;
d.) None of the mentioned
ANSWER: d.) None of the mentioned


4.) Which of the following is correct statement?
a.) Variable name must start with underscore
b.) Variable name must have digit
c.) keyword can not be a variable name
d.) None of the mentioned
ANSWER: c.) keyword can not be a variable name

5.) In c programming a function can return ___________
a.) Single value
b.) Double value
c.) Many value
d.) all of the above
ANSWER: a.) Single value

6.) Array index always start from 
a.) 0
b.) 1
c.) 2
d.) 3
ANSWER: a.) 0

7.) Which of the following is incorrect statement
a.) All array variable have same type
b.) An array is the collection of variable
c.) Array variable can be used individually
d.) None of the mentioned
ANSWER: d.) None of the mentioned

8.) While coding in c programming for "call by reference" we pass
a.) Address of variable
b.) Value of variable
c.) Either value or address
d.) Both value and address
ANSWER: a.) Address of variable

9.) An assembly language is a .......... programming language but BASIC is ....... programming language
a.) problem oriented.....low level
b.) problem oriented.........high level
c.) machine oriented......high level
d.) machine oriented......low level
ANSWER: c.) machine oriented......high level

10.) A utility programme that takes a procedure and searches a library to locate copies of any procedures called but not defined in the first procedure, is called
a.) Linker
b.) Re-locator
c.) Loader
d.) Text editor
ANSWER: a.) Linker

11.) What do the 'c' and 'v' in argv stands for?
a.) 'c' means argument control 'v' means argument vector
b.) 'c' means argument count 'v' means argument vertex
c.) 'c' means argument count 'v' means argument vector
d.) 'c' means argument configuration 'v' means argument visibility
ANSWER: c.) 'c' means argument count 'v' means argument vector

12.) Which of the following is TRUE about argv?
a.) It is an array of character pointers
b.) It is a pointer to an array of character pointers
c.) It is an array of strings
d.) None of above
ANSWER: a.) It is an array of character pointers

13.) Which of the following statements are FALSE about the below code?
Int main (int ac, char *av[]) { }

a.) ac contains count of arguments supplied at command-line
b.) av[] contains addresses of arguments supplied at a command line
c.) In place of ac and av, argc and argv should be used
d.) The variables ac and av are always local to main()
ANSWER: c.) In place of ac and av, argc and argv should be used

14.) Queue can be used to implement
a.) radix sort
b.) quick sort
c.) recursion
d.) depth first search
ANSWER: a.) radix sort

15.) The depth of a complete binary tree is given by
a.) Dn = n log2n
b.) Dn = n log2n+1
c.) Dn = log2n
d.) Dn = log2n+1
ANSWER: d.) Dn = log2n+1

16.) The maximum length of a variable in c is:
a.) 8
b.) 16
c.) 32
d.) 64
ANSWER: a.) 8

17.) A link is:
a.) a compiler
b.) an active debugger
c.) a c interpreter
d.) a analyzing tool in c
ANSWER: d.) a analyzing tool in c

18.) c is a __________ language:
a.) high level
b.) low level
c.) middle level
d.) machine level
ANSWER: c.) middle level

19.) The choices file options and so are called:
a.) items
b.) reserved words
c.) terms
d.) queries
ANSWER: a.) items


20.) what among the following is a unconditional control structure:

a.) do-while

b.) if-else

c.) goto
d.) for
View Answer / Hide Answer

ANSWER: c.) goto

Related

Question Bank - C Programming

1. We can insert pre written code in a C program by using         #read         #get         #include         #put Answer: Option 3 2. Difference between calloc() and malloc()     calloc() ta...

Function Argument Variables In C Programming Job Interview Question and Answers

1. What is the purpose of main() function? Answer:-main() is the user-defined function. main() is the first function in the program, which gets called when the program executes. The startup code co...

Variable Function Structure Pointer C Programming Interview Questions Basics Viva Tutorials

1.) Smallest element of array's index is called a.) lower bound b.) upper bound c.) range d.) Extraction ANSWER: a.) lower bound 2.) O(N)(liner time) is better than O(1) constant time. a.) T...

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