Podcast
Questions and Answers
What is the term for the ease with which programs of a language can be read and understood?
What is the term for the ease with which programs of a language can be read and understood?
What property of a language allows a small set of primitive constructs to be combined to build control and data structures?
What property of a language allows a small set of primitive constructs to be combined to build control and data structures?
What is the term for the ability of a language to be used to create programs for a chosen problem domain?
What is the term for the ability of a language to be used to create programs for a chosen problem domain?
What is the term for a program that performs to its specifications under all conditions?
What is the term for a program that performs to its specifications under all conditions?
Signup and view all the answers
What is the process of translating programs into machine language that can be executed quickly directly on the computer?
What is the process of translating programs into machine language that can be executed quickly directly on the computer?
Signup and view all the answers
What is the term for the meaning of the expressions, statements, and program units?
What is the term for the meaning of the expressions, statements, and program units?
Signup and view all the answers
What is the purpose of a lexical analyzer?
What is the purpose of a lexical analyzer?
Signup and view all the answers
What type of diagram is a state transition diagram?
What type of diagram is a state transition diagram?
Signup and view all the answers
What is the term for a grammar that generates a sentential form with two or more distinct parse trees?
What is the term for a grammar that generates a sentential form with two or more distinct parse trees?
Signup and view all the answers
What is the term for a device that generates sentences of a language?
What is the term for a device that generates sentences of a language?
Signup and view all the answers
What is the term for the hierarchical representation of a derivation?
What is the term for the hierarchical representation of a derivation?
Signup and view all the answers
What type of parser is a recursive descent parser?
What type of parser is a recursive descent parser?
Signup and view all the answers
What is the result of parsing the input string 'cad' using the given grammar?
What is the result of parsing the input string 'cad' using the given grammar?
Signup and view all the answers
What approach does a recursive-descent parser use?
What approach does a recursive-descent parser use?
Signup and view all the answers
What is a string of characters used to identify some entity in a program?
What is a string of characters used to identify some entity in a program?
Signup and view all the answers
What type of programming language is C++?
What type of programming language is C++?
Signup and view all the answers
What determines the range of values a variable can store?
What determines the range of values a variable can store?
Signup and view all the answers
What is the process of placing a memory cell back into the pool of available memory?
What is the process of placing a memory cell back into the pool of available memory?
Signup and view all the answers
What is a data type that is not defined in terms of other types?
What is a data type that is not defined in terms of other types?
Signup and view all the answers
What measures the accuracy of the fractional part of a value?
What measures the accuracy of the fractional part of a value?
Signup and view all the answers
What data type stores a fixed number of decimal digits with an implied decimal point at a fixed position?
What data type stores a fixed number of decimal digits with an implied decimal point at a fixed position?
Signup and view all the answers
What type of data is represented as sequences of characters?
What type of data is represented as sequences of characters?
Signup and view all the answers
What type of data has values that are named constants provided in the definition?
What type of data has values that are named constants provided in the definition?
Signup and view all the answers
What type of array has statically bound subscript ranges and storage allocation is done before runtime?
What type of array has statically bound subscript ranges and storage allocation is done before runtime?
Signup and view all the answers
What type of array is characterized by statically bound subscript ranges and allocation at declaration elaboration time during execution?
What type of array is characterized by statically bound subscript ranges and allocation at declaration elaboration time during execution?
Signup and view all the answers
Which type of array has fixed subscript ranges and storage bindings, similar to a fixed stack-dynamic array?
Which type of array has fixed subscript ranges and storage bindings, similar to a fixed stack-dynamic array?
Signup and view all the answers
What type of array has dynamic binding of subscript ranges and storage allocation that can change during its lifetime?
What type of array has dynamic binding of subscript ranges and storage allocation that can change during its lifetime?
Signup and view all the answers
What is a multidimensional array with all rows having the same number of elements and all columns having the same number of elements called?
What is a multidimensional array with all rows having the same number of elements and all columns having the same number of elements called?
Signup and view all the answers
What type of array has rows with different lengths?
What type of array has rows with different lengths?
Signup and view all the answers