Answer:
The statement is false.
Explanation:
In Laissez-faire Style of group leadership, the members of the group are given all the responsibilities by the leader or the manager. The members of the group take all the decisions and control the working of the group. The manager provides with some guidance or support only when it is asked by the group members.
-100 it is horruble, I would never join the class
Answer:
An operating system is the primary software that manages all the hardware and other software on a computer. The operating system, also known as an “OS,” interfaces with the computer’s hardware and provides services that applications can use.
If your using a computer that's probably why lol it is cool though
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