Computer Science, asked by muskanparveenmuskanp, 8 days ago

b) What is the final value of x? double a=-63.50; double x=(Math.sqrt(Math.ceil(Math.abs(a))); i) -8.00 i) 8.00 i) 63.00 iv) 64.00 ​

Answers

Answered by ItzMeSam35
2

Option ii) 8.0

import java.util.*;

public class x

{

public static void main (String args[])

{

double a = -63.50;

double x = (Math.sqrt(Math.ceil(Math.abs(a))));

System.out.println("Value Of x = "+x);

}

}

Similar questions