Q1

On the screen how do you write the following words?
she sells seashells by the seashore
(a) all in one line
(b) in three lines


Q2

Write a program that asks interactively the user’s name and age and
responds with
Hello name, next year you will be next_age.
where next_age is age + 1

Q3

For the different values of n, what is the output?
printf(“%x %c %o %d”,n,n,n,n);
(a) n = 67
(b) n = 20
(c) n = 128
(d) n = 255
(e) n = 100

Q4

What will be the output of the following program?
int main()
{
char a,b,c;
scanf(“%c %c %c”,&a,&b,&c);
printf(“a=%c b=%c c=%c”,a,b,c);
return 0;
}
[Note: The user input is:ABC DEF GHI]

Answer Posted / dede

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.

564


what are Access specifiers in C++ class? What are the types?

632


What is the use of map in c++?

609


Explain how an exception handler is defined and invoked in a Program.

586


How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?

1841






What is the difference between C and CPP?

635


What is function declaration in c++ with example?

550


Why iomanip is used in c++?

639


explain the reference variable in c++?

580


When should overload new operator on a global basis or a class basis?

615


Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].

963


why is c++ called oops? Explain

583


What does flush do?

563


Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h

659


Can circle be called an ellipse?

638