Week 5 Identifiers, Variables, Keywords, and Data Flashcards
tokens are _______ building blocks in C language
tokens are basic building blocks in C language
tokens are _______ individual units in C
tokens are smallest individual units in C
Types of \_\_\_\_\_\_\_ in C Keywords Identifiers Constants Variables String Operators
Types of Token in C Keywords Identifiers Constants Variables String Operators
_______ are symbols which are used to perform logical and mathematical operations in a C program
operators are symbols which are used to perform logical and mathematical operations in a C program
_______ are join individual constants and variables to form _______.
operators are join individual constants and variables to form expressions.
\_\_\_\_\_\_\_ \_\_\_\_\_\_\_ \+ addition or unary plus - subtraction or unary minus * multiplication / division % remainder after division( modulo division)
ARITHMETIC OPERATORS \+ addition or unary plus - subtraction or unary minus * multiplication / division % remainder after division( modulo division)
_______ name must begin with letter or underscore.
Variable name must begin with letter or underscore.
Variables _______ case sensitive
Variables are case sensitive
_______ can be constructed with digits, letters.
Variables can be constructed with digits, letters.
No special symbols are allowed other than ______, for variables
No special symbols are allowed other than underscore, for variables
sum, height, _value are some examples for _______ name
sum, height, _value are some examples for variable name
CATEGORIES OF VARIABLES
- _______ variable
- _______ variable
- _______ variable
CATEGORIES OF VARIABLES
- Local variable
- Global variable
- Environment variable
_______ _______ are defined as the data storage format that a variable can store a data to perform a specific operation.
data types are defined as the data storage format that a variable can store a data to perform a specific operation.
_______ _______ are used to define a variable before to use in a program
data types are used to define a variable before to use in a program
• Basic _______ types (int, char, float, double)
• Basic data types (int, char, float, double)