0% found this document useful (0 votes)
195 views1 page

C++ Class VII

This document provides a list of questions about key concepts in C++ classes including definitions of common acronyms used in programming, data types, variables, operators, and examples of calculations using unary and binary operators.

Uploaded by

Arindam Mondal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
195 views1 page

C++ Class VII

This document provides a list of questions about key concepts in C++ classes including definitions of common acronyms used in programming, data types, variables, operators, and examples of calculations using unary and binary operators.

Uploaded by

Arindam Mondal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

C++

Class – VII

1. Full form of the following


a) CAD d) HLL
b) CPU e) OPP
c) GUI f) UPS
2. What is data?
3. What is compiler?
4. What is type of data?
5. What is variable?
6. What are the variable naming conventions rules?
7. Name the operator given below?
a. + d. !=
b. >> e. <=
c. && f. ||
8. What is the size of following data types?
a) Int c) Double
b) Float d) Char
9. What is unary operator?
10. What is type casting?
11. What is binary operator?
12. Calculate the value if a=5, b=8
a) a++ + ++a - --b + b++ + ++b e) ++b * ++a / 2
b) ++b - --b + ++a + --a + a-- f) b++ % 3 * 5 / 2
c) 45 / --b + 50 % 17 + b++ /--a g) 100 % ++b - --a * 50 % 4
d) 4 * b++ /a-- + ++b h) 66+2%3+2-3/12

You might also like