False Line spacing options
Single This option accommodates the largest font in that line, plus a small amount of extra space. The amount of extra space varies depending on the font that is used.
1.5 lines This option is one-and-one-half times that of single line spacing.
Double This option is twice that of single line spacing.
At least This option sets the minimum line spacing that is needed to fit the largest font or graphic on the line.
Exactly This option sets fixed line spacing, expressed in points. For example, if the text is in a 10-point font, you can specify 12 points as the line spacing.
Multiple This option sets line spacing that can be expressed in numbers greater than 1. For example, setting line spacing to 1.15 will increase the space by 15 percent, and setting line spacing to 3 increases the space by 300 percent (triple spacing).
hope this help
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
Plan for the unexpected
write a solid business plan
Keep lines of communication open
Predict how business is progressing
Answer:
in word, you go to the File tab on a document, then click print, or enter the keyboard shortcut: ctrl+p
to edit a downloaded document, open the document, and on the top of the document, click "enable editing"
Explanation:
hope this helps!
Answer:
Explanation:
Using Python as our programming language
code:
def partitionArray(A,k):
flag=0
if not A and k == 1:
return "Yes"
if k > len(A) or len(A)%len(A):
return "No"
flag+=1
cnt = {i:A.count(i) for i in A}
if len(A)//k < max(cnt.values()):
return "No"
flag+=1
if(flag==0):
return "Yes"
k=int(input("k= "))
n=int(input("n= "))
print("A= ")
A=list(map(int,input().split()))[:n]
print(partitionArray(A,k))
Code Screenshot:-