11. |
What must be specified when we construct an object of class ostream?
જ્યારે આપણે class ostream નું object બનાવી એ ત્યારે શું specified કરવું જોઈએ?
|
||||||||
Answer:
Option (b) |
12. |
Where does a cin stops it extraction of data?
cin તેને ડેટા extraction ક્યાં થી stop થાય છે?
|
||||||||
Answer:
Option (a) |
13. |
Which is used to get the input during runtime?
રનટાઇમ દરમિયાન ઇનપુટ મેળવવા માટે શું વપરાય છે?
|
||||||||
Answer:
Option (b) |
14. |
What will be the output of the following C++ code? #include <iostream> using namespace std; int main () { int i; cout << ""Please enter an integer value: ""; cin >> i + 4; return 0; }
નીચે આપેલા c++ code નું output શું થશે? #include <iostream> using namespace std; int main () { int i; cout << ""Please enter an integer value: ""; cin >> i + 4; return 0; }
|
||||||||
Answer:
Option (c) |
15. |
What will be the output of the following C++ code? #include <iostream> using namespace std; int main( ) { char line[100]; cin.getline( line, 100, 't' ); cout << line; return 0; }
નીચે આપેલા c++ code નું output શું થશે? #include <iostream> using namespace std; int main( ) { char line[100]; cin.getline( line, 100, 't' ); cout << line; return 0; }
|
||||||||
Answer:
Option (c) |
16. |
How many parameters are there in getline function? ગેટલાઇન ફંક્શનમાં કેટલા parameters છે?
|
||||||||
Answer:
Option (c) |
17. |
What can be used to input a string with blank space? blank space સાથે string ઇનપુટ આપવા માટે શું વાપરી શકાય છે?
|
||||||||
Answer:
Option (b) |
18. |
Which is used for formatting purpose in c++? c++ માં formatting purpose માટે શું વપરાય છે?
|
||||||||
Answer:
Option (b) |