XLSX is the extension for an excel document.
Answer:
Ans1.
double calc_a;
calc_a=Math.pow(3.0,2.0)+Math.sqrt(9);
Ans2.
double calc_b;
calc_b=((12.0/3.0)-(2.0*4.0));
Ans 3.
double calc_c;
calc_c=(Math.sqrt(16.0)*(7.0+9.0));
Ans 4.
double calc_d;
calc_d=Math.pow(7.0,2.0)/Math.sqrt(49.0);
Explanation:
The expressions are done with Java in answer above.
Answer:
We need to have binary numbers because that is how computers process data.
Explanation:
The answer should be: True
Answer:
The above code print the text at three times.
Explanation:
- It is because the above code has one loop which executes three times. The loop executes for the value of i = 0,1 and 10.
- when the value of i is 0 then "++i" will increase the value 1 and the text will be printed.
- If the value of i=1, then the value of i is 2 in the second iteration and the again the text is printed, then the if condition gives the true result and the value of i will be 10.
- Then the loop executes for the last time when the value of i is 10.Then the value will be 11 because of the increment operator and the text will be printed for the third time.
- Then the while loop is not true for the 11 value of i and the loop will get terminated.