Answer:
1.25 inches
Explanation:
It is 1.25 inches or 3.17 cm which is the left and right margin in the " Word 2003 document". And 1 inch or the 2.54 cm is being set as both sides left and right standard margin and 1.25 inches are also set for the top and bottom margin in the "Word 2003 document". And hence, by default, the left margin in Word 2003 document happens to be 1.25 inches.
Answer:
option 1: sum++
option 2: ++sum
Explanation:
In programming, a variable a container or memory location assigned to a value. The C++ syntax specifies the memory location type of value on the declaration. The major types of variables in C++ are; integer, float, double, char, string, and boolean.
To add 1 to an integer variable, the variable value could be summed with one and assigned to that same variable or '++before' and 'after++' with adds one to the variable before and after the execution of a statement.
Answer:
Sequential Operations: Suppose we want to switch on the LED, fan and a PC. We can do it one by one and in a sequence. And it means step by step in a proper sequence, and that which is mentioned.
Conditional Operation: Suppose we are given a condition that if LED is switched on then you cannot switch on the PC. Such type is known as the conditional operation.
Iterative Operations: If you the number of times a given code is to be looped, or iterative, then we are dealing with the iterative operations.
In pseudo-code we represent them as:
Start
PC_State= Open
LED_State =Open
fan_State =Open
Stop
Condition Statement
If LED= Open
PC=Blocked
Iterative Statement:
For i =1 to 3
Open Device No <i>
And this way the three are different in everyday life, and hence in pseudocode.
Explanation:
Please check the answer section.