In C++ cout is:
a) object
b) class
c) something else

Answers were Sorted based on User's Feedback



In C++ cout is: a) object b) class c) something else..

Answer / sanjay makwana

Stream Object

Is This Answer Correct ?    40 Yes 5 No

In C++ cout is: a) object b) class c) something else..

Answer / chandra

cout is an object of class ostream that represents the
standard output stream. It corresponds to the cstdio stream
stdout.

By default, most systems have their standard output set to
the console, where text messages are shown, although this
can generally be redirected.

Because cout is an object of class ostream, we can write
characters to it either as formatted data using for example
the insertion operator (ostream::operator<<) or as
unformatted data using the write member function

Is This Answer Correct ?    21 Yes 1 No

In C++ cout is: a) object b) class c) something else..

Answer / reejusri

Its an Object of class OStream, thats why we add its
corresponding header file that is <iostream.h>, Open this
header file you wil get complete infomation.

Is This Answer Correct ?    9 Yes 0 No

In C++ cout is: a) object b) class c) something else..

Answer / kiruthika

C++ treats everything as an object.me,u,we,cout all are
object in C++.So cout is an object.

Is This Answer Correct ?    10 Yes 1 No

In C++ cout is: a) object b) class c) something else..

Answer / ganesh

a, it is an object in C++

Is This Answer Correct ?    8 Yes 1 No

In C++ cout is: a) object b) class c) something else..

Answer / vaibhav meena

cout is an object.....

Is This Answer Correct ?    7 Yes 2 No

In C++ cout is: a) object b) class c) something else..

Answer / chetan bhola

COut is an object of OStream Class of c++

Is This Answer Correct ?    4 Yes 0 No

In C++ cout is: a) object b) class c) something else..

Answer / shakti singh khinchi

object of ostream_withassign. (a) is the right answer.

Is This Answer Correct ?    5 Yes 2 No

In C++ cout is: a) object b) class c) something else..

Answer / hemant majithia

ans is a) it is an object of ostream_withassign.

Is This Answer Correct ?    2 Yes 2 No

In C++ cout is: a) object b) class c) something else..

Answer / manju

The answer is someting else.

cout is an ostream opertor.

Is This Answer Correct ?    4 Yes 14 No

Post New Answer

More C++ General Interview Questions

What are the differences between a struct and a class in C++?

7 Answers   Amazon, Wipro,


What is the difference between *p++ and (*p)++ ?

0 Answers  


what is the order of initialization for data?

10 Answers   Amazon, TCS, Wipro,


Write about the retrieval of n number of objects during the process of delete[]p?

0 Answers  


Is turbo c++ free?

0 Answers  






5. Can inline functions have a recursion?

4 Answers  


What things would you remember while making an interface?

0 Answers  


Explain the difference between realloc() and free() in c++?

0 Answers  


Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort

0 Answers  


What is cout flush?

0 Answers  


What is private inheritance?

0 Answers  


In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h

0 Answers  


Categories