<span>Microsoft Excel is a spreadsheet developed by Microsoft for Windows, Mac OS X, Android and iOS.</span>
Answer:
Explanation:
Each of the following println statements will print the following values
ystem.out.println(floozy); // Problem 1: 97.4
System.out.println(theObj.gravy); //Problem 2: 107.43
System.out.println(xray[2]); //Problem 3: 100
System.out.println(s); //Problem 4: Hello
This is because out of all of the variables that the myMethod gives a value to, the only variable that is being saved back to the global variable in the main method is a[2]. The other variables are being saved as instance variables and not being returned. Therefore, when the println statements are called they target the local variables in the main method.
<span>user input a elit Interactive legentium lineae ad lineam convertit et "Sus
</span>
Answer:
// program in Python.
#library
import math
#read the radius of sphere
rad=float(input("Enter the radius of sphere:"))
# find the Surface area
A=4*math.pi*rad**2
V=(4/3)*math.pi*rad**3
#print the Surface area
print("The surface area of the sphere is:",A)
#print the Volume of sphere
print("The volume of the sphere is:",V)
Explanation:
Import math library to use the value of "pi".Read the radius of sphere from user and assign it to variable "rad".Then calculate the surface area A = 4*3.14r**2 and volume of sphere V=V = 4/3 x 3.14r**3.Print the surface area and volume of the sphere.
Output:
Enter the radius of sphere:2.5
Surface area is: 78.539812
Volume of sphere is: 65.44985
Answer
A. Rolling a six-sided number cube 24 times and recording if a 4 comes up
Explanation
A binomial experiment is a statistical experiment which has the following characteristics;
• It has n repeated trials
• Each trial can result in just two possible outcomes
• The outcomes can be a success or failure
• The chances of success (p), is similar on every trial.