Podcast
Questions and Answers
What is a reserved word in C?
What is a reserved word in C?
- Any word that starts with a lowercase letter
- A keyword that identifies memory locations
- A term that can be freely used for identifiers
- A word with a specific meaning in C (correct)
Which of the following is an example of an identifier?
Which of the following is an example of an identifier?
- return
- myVariable (correct)
- int
- if
What distinguishes a reserved word from an identifier?
What distinguishes a reserved word from an identifier?
- Reserved words cannot be used to name data elements. (correct)
- Reserved words can be used as identifiers.
- Identifiers have a defined function in the language.
- Identifiers are always numerical values.
Which statement about identifiers is true?
Which statement about identifiers is true?
How many reserved words are there in the C programming language?
How many reserved words are there in the C programming language?
Flashcards
Reserved Word
Reserved Word
A word with a predefined meaning in C programming.
Example of Reserved Word
Example of Reserved Word
int or return are examples of words with predefined meaning in C programming.
Identifier
Identifier
A name given to a data element or object in a C program.
Purpose of Identifier
Purpose of Identifier
Signup and view all the flashcards
Identifier Example
Identifier Example
Signup and view all the flashcards