COMPILER DESIGN

TOOLS AND TECHNIQUES FOR COMPILER DESIGN

MISCELLENOUS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
____ hold the data that is local to the execution of the procedure.
A
Global variable
B
Temporary variable
C
Local variable
D
Static variable
Explanation: 

Detailed explanation-1: -A local variable is one that is declared within a procedure. A member variable is a member of a Visual Basic type; it is declared at module level, inside a class, structure, or module, but not within any procedure internal to that class, structure, or module.

Detailed explanation-2: -variable name datatype [NOT NULL] [:= initial value]; DECLARE l total sales NUMBER(15, 2); l credit limit NUMBER (10, 0); l contact name VARCHAR2(255); BEGIN NULL; END; DECLARE l product name VARCHAR2( 100 ) := ‘Laptop’; BEGIN NULL; END; More items

There is 1 question to complete.