Answer:
Answer explained below
Explanation:
When disabling inherited permissions on an object, if you select Remove all inherited permissions from this object then you lose every user or group assigned to the folder.
This will delete all existing permissions, including administrator accounts, leaving you a blank slate to apply your own permissions to the folder.
Answer:
// program in Python to check perfect number
#function to find number is perfect or not
def is_Perfect_Number(n):
#total variable
tot = 1
i = 2
#sum of all divisor of number
while i*i<=n:
if n%i==0:
tot = tot + i + n/i
if tot == n and n != 1:
return 1
i = i+1
return 0
#read until user enter a perfect number
while True:
#read integer
num = int(input("Input an integer: "))
#call the function
if(is_Perfect_Number(num)):
print(num,"is perfect number")
#if perfect number break
break
else:
print(num,"is not a perfect number")
#ask again
print("try again.")
Explanation:
Read number from user and then call the function is_Perfect_Number() with parameter "num".This will find the sum of all divisor of number.If sum is equal to number then it will return 1 else return 0.If the number is not perfect then it will again ask to enter a number until user enter a perfect number.
Output:
Input an integer: 24
24 is not a perfect number
try again.
Input an integer: 28
28 is perfect number
Answer:
4000k-ohm to 10,000k-ohm
Explanation:
As we know that time constant for an RC circuit is t=RC
Putting the values of t we can get the range of varaiable resistor as;
t=RC
Putting t=2 we get the first value of the range for the variable resistor
2=R*0.500*10^-6
R=2/(0.500*10^-6)
R=4*10^6
R=4000k-ohm
Now putting t=5 we get the final value for the range of variable resistor
t=RC
5=R*0.500*10^-6
R=5/(0.500*10^-6)
R=10*10^6
R=10,000k-ohm
So variable resistance must be made to vary in the range from 4000k-ohm to 10,000k-ohm
Answer:
Subtraction
Explanation:
That is subtracting the values of two cells.
You know because of the "-" sign