In C++ cout is:
a) object
b) class
c) something else
Answer Posted / sriram
ANSWER IS C. COUT IS AN BUID IN OPERATOR THAT WAS DEFINED
IN HEADER FILE: <IOSTREAM.H>
SINCE, IN C++ COUT IS AN CONSOLE OUTPUT OPERATOR.
| Is This Answer Correct ? | 2 Yes | 17 No |
Post New Answer View All Answers
What is private inheritance?
How new/delete differs from malloc()/free?
Define upcasting.
Name four predefined macros.
How to declare a pointer to an array of integers?
What are virtual constructors/destructors?
What do you mean by delegate? Can a user retain delegates?
why is iostream::eof inside a loop condition considered wrong?
What are 2 ways of exporting a function from a dll?
What is c++ flowchart?
Is c++ primer good for beginners?
What is the return value of the insertion operator?
Eplain extern keyword?
Describe friend function & its advantages.
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300