21. |
Constant variables can be created in CPP by using ________ . (________ નો ઉપયોગ કરીને CPP માં Constant variables બનાવી શકાય છે.)
|
||||||||
Answer:
Option (b) |
22. |
A References is _______ References એ _______ છે.
|
||||||||
Answer:
Option (b) |
23. |
A variable can be declared as reference by putting _______ in the declaration. (variable declaration માં _______ મૂકીને variable ને reference તરીકે જાહેર કરી શકાય છે.)
|
||||||||
Answer:
Option (c) |
24. |
What is the difference between references and pointers? (references અને pointers વચ્ચે શું તફાવત છે?)
|
||||||||
Answer:
Option (a) |
25. |
What is the output of this program? int main() { int a; a = 5 + 3 * 5; cout << a; return 0; } નીચે આપેલા પ્રોગ્રામનું આઉટપુટ શું છે? int main() { int a; a = 5 + 3 * 5; cout << a; return 0; }
|
||||||||
Answer:
Option (b) |
26. |
What is the output of this program? int main() { int a = 5, b = 6, c; c = (a > b) ? a : b; cout << c; return 0; } નીચે આપેલા પ્રોગ્રામનું આઉટપુટ શું છે? int main() { int a = 5, b = 6, c; c = (a > b) ? a : b; cout << c; return 0; }
|
||||||||
Answer:
Option (a) |
27. |
Identify the user-defined types from the following? (નીચેના માંથી યુઝર ડિફાઇન ડેટા ટાઇપ ને ઓળખો?)
|
||||||||
Answer:
Option (c) |
28. |
In C++, ………………….. refer to fixed values that do not change during the execution of a program. (C++ માં, ………………… .. ફિક્સ વેલ્યુ ને રીફર કરે છે જે પ્રોગ્રામના execution દરમિયાન બદલાતી નથી.)
|
||||||||
Answer:
Option (b) |
29. |
A reference variable must be initialized at the time of ……………………………… (reference variable ……………………………… સમયે initialize થવો જરૂરી છે )
|
||||||||
Answer:
Option (b) |
30. |
Which of the following is an abstract data type? (નીચેનામાંથી abstract ડેટા ટાઇપ કઈ છે?)
|
||||||||
Answer:
Option (a) |