Exam 5: Functions and an Introduction to Recursion
Exam 1: Introduction to Computers, the Internet and the World Wide Web27 Questions
Exam 2: Introduction to C Programming21 Questions
Exam 3: Control Statements, Part 127 Questions
Exam 4: Control Statements, Part 228 Questions
Exam 5: Functions and an Introduction to Recursion47 Questions
Exam 6: Arrays and Vectors19 Questions
Exam 7: Pointers and Pointer-Based Strings28 Questions
Exam 8: Sequential-Access Files12 Questions
Exam 9: Classes35 Questions
Exam 10: Classes: a Deeper Look, Part 215 Questions
Exam 11: Operator Overloading; String and Array Objects32 Questions
Exam 12: Object-Oriented Programming: Inheritance19 Questions
Exam 13: Object-Oriented Programming: Polymorphism23 Questions
Exam 14: Templates13 Questions
Exam 15: Stream Inputoutput33 Questions
Exam 16: Exception Handling24 Questions
Exam 17: File Processing11 Questions
Exam 18: Class String and String Stream Processing26 Questions
Exam 19: Searching and Sorting10 Questions
Exam 20: Data Structures19 Questions
Exam 21: Standard Template Library Stl56 Questions
Exam 22: Bits, Characters, C Strings and Structs26 Questions
Exam 23: Boost Libraries, Technical Report 1 and C0x21 Questions
Exam 24: Other Topics19 Questions
Exam 25: ATM Case Study, Part 1: Object-Oriented Design With the Uml15 Questions
Exam 26: ATM Case Study, Part 2: Implementing an Object-Oriented Design3 Questions
Exam 27: Game Programming With Ogre23 Questions
Select questions type
Depending on the circumstances, the compiler may ignore the storage class specifier:
(Multiple Choice)
4.7/5
(40)
Which of the following is false about the following function prototype?
Void functionA void );
(Multiple Choice)
4.8/5
(34)
If a set of functions have the same program logic and operations and differ only in the data types) each receives as arguments) then an) __________ should be used.
(Multiple Choice)
4.9/5
(34)
An activation record will be popped off the function call stack whenever:
(Multiple Choice)
4.9/5
(39)
What happens when two blocks, one nested inside of the other, both declare variables with the same identifier? Assume that the outer block declares its variable before the opening left-brace of the inner block.)
(Multiple Choice)
4.9/5
(28)
Which of the following is not true of static local variables?
(Multiple Choice)
4.8/5
(27)
Which of the following is not included in a function's activation record?
(Multiple Choice)
4.9/5
(30)
When an argument is passed-by-value, changes in the called function __________ affect the original variable's value; when an argument is passed call-by-reference, changes in the called function __________ affect the original variable's value.
(Multiple Choice)
4.7/5
(43)
Assuming the following pseudocode for the Fibonacci series, what is the value of fibonacci 5 )?
Fibonacci 0 ) = 0
Fibonacci 1 ) = 1
Fibonacci n ) = fibonacci n - 1 ) + fibonacci n - 2 )
(Multiple Choice)
4.7/5
(34)
Showing 21 - 40 of 47
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)