1. |
To perform File I/O operations, we must use _____________ header file.
File I/O operations કરવા માટે, આપણે _____________ હેડર ફાઇલનો ઉપયોગ કરવો જરૂરી છે.
|
||||||||
Answer:
Option (c) |
2. |
To create an output stream, we must declare the stream to be of class ___________ .
output stream બનાવવા માટે, આપણે stream ને ___________ class માં declare કરવી જોઈએ.
|
||||||||
Answer:
Option (a) |
3. |
Predict the output int x = 786; cout << setfill(‘*’) << setw(6) << x;"
output બતાવો int x = 786; cout << setfill(‘*’) << setw(6) << x;"
|
||||||||
Answer:
Option (c) |
4. |
___________ header file is used for manipulators. ___________ હેડર ફાઇલનો ઉપયોગ મેનિપ્યુલેટર માટે થાય છે.
|
||||||||
Answer:
Option (d) |
5. |
Which operator is used to insert the data into file? ફાઇલમાં ડેટા insert કરવા માટે કયા ઓપરેટરનો ઉપયોગ થાય છે?
|
||||||||
Answer:
Option (b) |
6. |
Which header file is used for reading and writing to a file?
ફાઇલમાં reading અને writing માટે કઈ હેડર ફાઇલનો ઉપયોગ થાય છે?
|
||||||||
Answer:
Option (b) |
7. |
Which operator is used for input stream?
ઇનપુટ સ્ટ્રીમ માટે કયા operator નો ઉપયોગ થાય છે?
|
||||||||
Answer:
Option (b) |
8. |
Pick out the correct objects about the instantiation of output stream.
output stream ના instantiation વિશે યોગ્ય objects પસંદ કરો.
|
||||||||
Answer:
Option (d) |
9. |
What will be the output of the following C++ code? #include <iostream> using namespace std; int main () { char str[] = ""Steve jobs""; int val = 65; char ch = 'A'; cout.width (5); cout << right; cout << val << endl; return 0; }
નીચે આપેલા c++ code નું output શું થશે? #include <iostream> using namespace std; int main () { char str[] = ""Steve jobs""; int val = 65; char ch = 'A'; cout.width (5); cout << right; cout << val << endl; return 0; }
|
||||||||
Answer:
Option (d) |
10. |
How many types of output stream classes are there in c++? c++ માં કેટલા પ્રકારનાં આઉટપુટ સ્ટ્રીમ classes છે?
|
||||||||
Answer:
Option (c) |