What will be the output of the following command
i. select power(10,2)
ii. select round(14.4743, 1)
Answers
Answer:
1. 100
2. 14.5
Explanation:
hope it helps
The correct answers are as follows
(i) 100
(ii) 14.5
Explanation
The data given is i. select power(10,2) ii. select round(14.4743, 1)
where we need to find the output .
Now finding the output for the select power means the numbers in the bracket and command given is select power that describes that we need to find out the power of (10,2) that means 10^2 as in mathematical exponential form .
So the power is 2 and 10^2 is 100 so the output will be 100 for (i)
Now finding the output for select round(14.4743, 1)
Here the command given is select round(14.4743, 1) that describes that we need to find the rounded number of 10.4743,1
So the number rounded off will be 14.5 so if we put a command that select round(14.4743, 1) then we will get the output of 14.5 as the rounded off number
Hence the output will be 14.5
#SPJ2