FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
A high score in a video game may change over time. Where is this value stored for the program to work with?
A
Variable
B
Loop
C
Conditional
D
None of the above
Explanation: 

Detailed explanation-1: -A variable is a data storage location that has a value that can change during program execution.

Detailed explanation-2: -Variables are usually stored in RAM. This is either on the heap (e.g. all global variables will usually go there) or on the stack (all variables declared within a method/function usually go there). Stack and Heap are both RAM, just different locations.

Detailed explanation-3: -You store a value in a variable by putting the variable name on the left side of an assignment statement.

Detailed explanation-4: -CLOB or Character Large Object store large string data in database character set format.

There is 1 question to complete.