Strings In C Programming Interview Exam Questions Answers For Engineering Graduates

1.What would be the output of the following program?
main()
{
char *str[] = {“Frog”,”Do”,”Not”, “Die.”,”They”,”Croak!”};
printf(“%d %d”, sizeof (str), sizeof (str[0]));
}
a) 3 12
b) 2 12
c) 12 3
d) 12 2
ANSWER: D

2.What would be the output of the following program?
main()
{
char str1[] = “Hello”;
char str2[] = “Hello”;
if(str1 == str2)
printf(“Equal”);
else
printf(“\nUnequal”);
}
a) Error.
b) Equal.
c) Unequal.
d) None.
ANSWER: C

3.Would the following code give any error on compilation?
strcat (string,’!’);
a) Yes.
b) No.
ANSWER: A

4.What will happen if I use this code in my program?
#define TRACE(n) printf("TRACE: %d\n", n)
a) Nothing it is good.
b) Code is wrong.
c) Error: macro replacement within a string literal
d) None 
ANSWER: C

5.How can I print a '%' character in a printf format string?
a) Use “\%”
b) Use “/%”
c) None
d) Use “%%”
ANSWER: D
6.String operation such as strcmp(s, t), strcat(s, t), strcpy(s, t) and strlen(s) heavily rely upon
a) Presence of any escape sequence
b) Presence of NULL character
c) Presence of new-line character
d) None of the mentioned
ANSWER: B

7.What would be the output of the following code?
main()
{
Printf(“%c”,”abcdefghijklmn[4]”);
}
a) d.
b) e.
c) abcdefgh.
d) None
ANSWER: B

8.What would be the output of the following program?
main()
{
printf (5+“program”);
}
a) ram
b) gram
c) am
d) None 
ANSWER: C

9.In the following program which functions would get called?
main()
{
char str1[] = “Keep me clean ”;
char str2[40] ;
strcpy(str2,str1);
printf(“n%s”, str2);
}
strcpy(char *t, char *s)
{
while(*s)
{
*t = *s;
t++;
s++;
}
*t =”\0”;
}
a) The library defined strcpy() 
b) The user defined strcpy()
c) Both 
d) None.
ANSWER: B

10.What is the difference in the following declaration? 
char *p = “Sundaram”;
char a[] =”Sundaram”;
a) Both are same
b) First pointer initialization with string and other array initialization with string
c) First pointer initialized to point to string constant and other array initialization with string
d) None
ANSWER: C

11.Is the following program correct?
main()
{
Char *str1 = “Union”;
Char *str2 = “Minister”;
Char *str3;
str3 = strcat(str1, str2);
Printf(“\n%s”, str3);
}
a) Print “Union Minister”
b) Garbage value
c) Print “UnionMinster”
d) Error
ANSWER: B

12.What would be the output of the following program.
main()
{
Char str[7] = “Strings”;
printf(“%s”, str);
}
a) Strings
b) Error
c) Cannot predict 
d) None 
ANSWER: C

13.What is the output of the following program?
void main()
{
printf("IMEIMEMYSELF"+9);
}
a) IMEI. 
b) MYSELF.
c) SELF
d) None 
ANSWER: C

14.If the two strings are identical, then strcmp() function returns? 
a) 0
b) 1
c) -1
d) None 
ANSWER: A

15.What would be the output of the following program
main()
{
char ch =’A’;
printf(“%d %d”, sizeof(ch), sizeof(‘A’));
}
a) 2 1
b) 1 1
c) 2 2
d) 1 2 
ANSWER: D

16.What would be the output of the following program?
main()
{
printf(“%d %d %d”, sizeof(‘3’), sizeof(“3”), sizeof(3));
}
a) 1 1 1
b) 2 2 2
c) 1 2 3
d) 1 2 2
ANSWER: B

17.Which one of the following functions returns the string representation from a pointer to a time_t value? 
a) gettime().
b) seektime().
c) ctime().
d) None 
ANSWER: C

18.Consider the declaration
Static char hello[] = “hello”;
The output of printf(“%s\n”, hello);
Will be the same as that of 
a) Puts(hello).
b) Puts(“hello”).
c) Puts(“hello\n”).
d) Puts(“%s\n”, “hello”).
ANSWER: A, B, D

19.The following program
main()
{
static char a[3][4] = {“abcd”, “mnop”,”fghi”};
putchar(**a);
}
a) Will not compile successfully 
b) Report error at run time
c) Print garbege
d) None 
ANSWER: D

20.A string that is a formal parameter can be declared 
a) An array with empty braces 
b) A pointer to character
c) A pointer to a character
d) None 
ANSWER: A, B

Post a Comment

  1. Very Very useful for people searching for Job. Good Collection.

    ReplyDelete

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