Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Object-Oriented Programming Using C++
Quiz 14: Advanced Topics
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Matching
Match each term with the correct statement below.
Premises:
Responses:
occurs when a function is defined in terms of itself
enumerator
binary system
bit
Premises:
occurs when a function is defined in terms of itself
Responses:
enumerator
binary system
bit
Question 42
Matching
Match each term with the correct statement below.
Premises:
Responses:
value whose only purpose is to filter values from other variables
enumerator
EBCDIC
byte
Premises:
value whose only purpose is to filter values from other variables
Responses:
enumerator
EBCDIC
byte
Question 43
Essay
Write a recursive function cumulativeSum() in which for any argument, num , that is passed in with a value greater than 1, the function returns a value that is num plus the cumulativeSum() of num - 1. If num is 1, it returns that value.