Is c++ a low level language?
Explain storage qualifiers in c++.
What is the purpose of templates in c++?
What is the use of data hiding?
Which field is used in c++?
How does list r; differs from list r();?
Describe about storage allocation and scope of global, extern, static, local and register variables?
What is the real purpose of class – to export data?
Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
Difference between struct and class in terms of access modifier.
Why should we use null or zero in a program?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
How do you declare a set in c++?