1.
__________ is used to store temporary data by programmers.
Answer: Option 'B'
Variable The name variable is used because their values change throughout the lifetime of the application. Thus the variable is also stored temporary data by programmers. Variable can be of any data type such as integer, character etc. For example, int a=0, is of datatype integer, where ‘a’ is a variable used to store an integer value.
2.
___________ determines the type of data stored in a variable.
3.
___________ is the universal coding scheme for characters.
4.
”dblMy Age “what is the problem with this variable name?
5.
Declaring a variable tell the computer to allocate a memory space that can be accessed by the variable name. The size of the memory space depends on?
6.
___________ data type can store any type of data.
7.
String data type can store from zero to ___________ Unicode characters.
Answer: Option 'B'
2 billion String is used to store text and can store up to 2 billion characters in Unicode. A string is generally understood as a data type and is often implemented as an array of bytes (or words) that stores a sequence of elements, typically characters, using some character encoding. A string may also denote more general arrays or other sequence (or list) data types and structures.
8.
The range of Integer data type is ___________ to ___________
9.
The Char data type can store ___________
10.
The variable name is also termed as ___________
Answer: Option 'C'
The variable name is also called an identifier. An identifier is a name that identifies (that is, labels the identity of) either a unique object or a unique class of objects, where the “object” or class may be an idea, physical [countable] object (or class thereof), or physical [noncountable] substance (or class thereof). The abbreviation ID often refers to identity, identification (the process of identifying), or an identifier (that is, an instance of identification). An identifier may be a word, number, letter, symbol, or any combination of those.