MCQOPTIONS
Bookmark
Saved Bookmarks
→
C++ Programming
→
Constructors And Destructors in C++ Programming
→
What does the client module import?..
1.
What does the client module import?
A.
interface
B.
records
C.
macro
D.
All of above
E.
None of these
Answer» B. records
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> namespace One<br> {<br> int num = 12;<br> }<br> namespace Two<br> {<br> double num = 10.027;<br> }<br> int main ()<br> {<br> int n;<br> n = One::num + Two::num;<br> cout << n;<br> return 0;<br> }<br></iostream></pre>
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> namespace calculation<br> {<br> int p;<br> }<br> void p()<br> {<br> using namespace calculation;<br> int p;<br> p = 15;<br> cout << p;<br> }<br> int main()<br> {<br> enum letter { K, L};<br> class K { letter L; };<br> ::p();<br> return 0;<br> }<br></iostream></pre>
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> namespace calc<br> {<br> int p = 12;<br> }<br> namespace calc<br> {<br> int q = 23;<br> }<br> int main(int argc, char * argv[])<br> {<br> calc::p = calc::q =6;<br> cout << calc::p << calc::q;<br> }<br></iostream></pre>
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> namespace first<br> {<br> int num = 5;<br> }<br> namespace second<br> {<br> int num = 11;<br> }<br> int main ()<br> {<br> int num = 27;<br> first::num;<br> second::num;<br> cout << num;<br> return 0;<br> }<br></iostream></pre>
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> namespace One<br> {<br> int K = 15;<br> int L = 11;<br> }<br> namespace Two<br> {<br> double K = 4.016;<br> double L = 7.6001;<br> }<br> int main ()<br> {<br> using One::K;<br> using Two::L;<br> bool p, q;<br> p = K > L;<br> q = One::K < Two::L;<br> cout << p < return 0;<br> }<br></iostream></pre>
Which operator is used to signify the namespace?
What is the ability to group some lines of code that can be included in the program?
How many types do functions call depends on modularization?
Which of the following implements the module in the program?
What is similar to the interface in c++
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply