Exam 11: Structured Data
Exam 1: Introduction to Computers and Programming50 Questions
Exam 2: Introduction to C Plus Plus60 Questions
Exam 3: Expressions and Interactivity44 Questions
Exam 4: Making Decisions53 Questions
Exam 5: Loops and Files63 Questions
Exam 6: Functions49 Questions
Exam 7: Arrays58 Questions
Exam 8: Searching and Sorting Arrays20 Questions
Exam 9: Pointers45 Questions
Exam 10: Characters, C-Strings, and More About the String Class45 Questions
Exam 11: Structured Data53 Questions
Exam 12: Advanced File Operations38 Questions
Exam 13: Introduction to Classes47 Questions
Exam 14: More About Classes40 Questions
Exam 15: Inheritance, Polymorphism, and Virtual Functions40 Questions
Exam 16: Exceptions, Templates, and the Standard Template Library Stl39 Questions
Exam 17: Linked Lists40 Questions
Exam 18: Stacks and Queues47 Questions
Exam 19: Recursion22 Questions
Exam 20: Binary Trees38 Questions
Select questions type
The expression *s->p; indicates that s is a structure pointer and p, which is also a pointer, is a member of the structure pointed to by s.
(True/False)
4.8/5
(39)
When a programmer creates an abstract data type, he or she can decide what values are acceptable for the data type, as well as what operations may be performed on the data type.
(True/False)
4.9/5
(40)
The names of the enumerators in an enumerated data type must be enclosed in quotation marks.
(True/False)
4.9/5
(35)
When you use a strongly typed enumerator in C++ 11, you must prefix the enumerator with the name of the enum, followed by the :: operator.
(True/False)
4.9/5
(42)
You can define any number of union variables, but each variable can only store the value of one member at a time.
(True/False)
5.0/5
(40)
Which of the following assigns a value to the hourlyWage member of employee[2]?
(Multiple Choice)
4.8/5
(38)
A structure ________ contain members of the same data type.
(Multiple Choice)
4.7/5
(46)
Look at the following declaration.
What is the value of the following relational expression?
OAK > PINE

(Multiple Choice)
4.9/5
(34)
Look at the following structure declaration.
In this declaration, Employee is:

(Multiple Choice)
4.8/5
(34)
In C++ 11, if you want to retrieve a strongly typed enumerator's underlying integer value, you must use a cast operator.
(True/False)
4.8/5
(30)
It is possible for a structure variable to be a member of another structure variable.
(True/False)
4.8/5
(34)
Any mathematical operations that can be performed on regular C++ variables can be performed on structure members.
(True/False)
4.7/5
(31)
Showing 21 - 40 of 53
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)