Answer:
make sure the speaker is clean and you volume setting is on normal there is alot of setting for deaf people so make sure that is correctly
Answer:
Keep Source Formatting & Embed Workbook
Explanation:
Source formatting is used to apply the formatting from source document while copying and pasting.
Source is the place where the data is already placed and we want to move it make a copy of it on some other document. So if we don't want to change the formatting of source document, we choose source formatting from the options while pasting.
Embed is used to whenever we don't want to link the formatting with source document.
So,
You use the Paste Options button labeled <u><em>Keep Source Formatting & Embed Workbook</em></u><em> </em>if you want the pasted chart not to be linked to the source document and you want the pasted chart to keep the formatting from the source document.
Answer:
The program to this question can be given as:
Program:
factorial=1 #declare a variable.
number=int(input("Enter a positive integer:")) #input a number.
while (number>0): #loop
factorial= factorial*number # holding value in factorial variable
number=number-1
print('=',factorial) #print value.
Output:
Enter a positive integer:6
= 720
Explanation:
The description of the above python program can be given as:
- In the above program firstly we define a variable that is "factorial". In this variable, we assign a value that is 1 and it is used to calculate the factorial value.
- We define a variable "number". The number variable is used to take input from the user.
- Then we define a loop in the loop we calculate the factorial and hold the value in the factorial value in the last we print the value.
Answer:
The program in Python is as follows:
num1 = int(input())
num2 = int(input())
if num1 >=0 and num2 >= 0:
print(num1+num2)
elif num1 <0 and num2 < 0:
print(num1*num2)
else:
if num1>=0:
print(num1**2)
else:
print(num2**2)
Explanation:
This gets input for both numbers
num1 = int(input())
num2 = int(input())
If both are positive, the sum is calculated and printed
<em>if num1 >=0 and num2 >= 0:</em>
<em> print(num1+num2)</em>
If both are negative, the products is calculated and printed
<em>elif num1 <0 and num2 < 0:</em>
<em> print(num1*num2)</em>
If only one of them is positive
else:
Calculate and print the square of num1 if positive
<em> if num1>=0:</em>
<em> print(num1**2)</em>
Calculate and print the square of num2 if positive
<em> else:</em>
<em> print(num2**2)</em>
Answer:
19.9 pF
Explanation:
Given that:
Series connection :
11pF and 21pF
C1 = 11pF ; C2 = 21pF
Cseries = (C1*C2)/ C1 + C2
Cseries = (11 * 21) / (11 + 21)
Cseries = 7.21875 pF
C1 = 22pF ; C2 = 30pF
Cseries = (C1*C2)/ C1 + C2
Cseries = (22 * 30) / (22 + 30)
Cseries = 12.6923 pF
Equivalent capacitance is in parallel, thus,
7.21875pF + 12.6923 pF = 19.91105 pF
= 19.9 pF