Answer: The graphical user interface
Explanation:
The graphical user interface (GUI) is a form of user interface that allows user of a device interacts with it through graphical icons or cursors, text based commands or audio commands. The functionality of a GUI is a consequence of the direct manipulation of its graphical elements. Specialized GUIs that allows for speech based commands are called natural user interfaces.
Answer:
I believe the answer is B
Explanation:
Answer:
#program in python.
#variables
slice_area=14.125
pi=3.14159
#read diameter
d=int(input("Enter diameter of pizza:"))
#area of pizza
area=pi*(d/2)*(d/2)
#number of slice
no_slice=int(area/slice_area)
#print slice
print("total silce are:",no_slice)
Explanation:
Declare and initialize a variable "slice_area" with 14.125 which is the area of a pizza slice.Initialize a variable "pi" with 3.14159.Then read the diameter of pizza.Find the area of pizza as "area=pi *d/2*d/2".Divide the total area with area of pizza slice.This will be the number of slice.
Output:
Enter diameter of pizza:20
total silce are: 22
Suggest why people might not want the government to carry out Internet surveillance?
To see your history all that p o r n ya watch
Pls mark me brainliest;p
Answer: Change this however you'd like :)
Explanation:
for n in range(100):
print("priya")
print()
for n in range(10):
for i in range(10):
print("priya", end= " ")
print()
print()
tempList = []
for n in range(1, 1001):
tempList.append(n)
print(sum(tempList))
print()
for n in range(1, 9):
for i in range(1, 9):
print(n*i)
print()
x = 100
while x != 0:
print(x)
x -= 1