Answer:
C (2.5)
Explanation:
int(3.5) = 3
So, using order of operations, (3/2)+1=2.5
Answer:
Rename a file or folder
Explanation:
1.Right-click on the item and select Rename, or select the file and press F2 .
2.Type the new name and press Enter or click Rename.
Answer:
3
Explanation:
The function floor() is used to give the integer which is smaller than or equal to the provided decimal value.
for example:
let a=5.8
floor(a);
the function provides the value 5 (smaller than or equal to 5.8).
In the given code:
variable num assigns the number 3.14.
then, floor(3.14) gives the value 3 (smaller than or equal to 3.14).
then, the echo print the value on the screen.
Therefore, the correct answer is 3.
A, because normally that would be a requirment