Answer:
mkdir -m 770 sales
Explanation:
The command mkdir is used to create a directory and the attribute or flag
-m is used to assign permissions on create a folder.
Example:
mkdir -m 770 sales
Create a folder with permissions 770 with name sales
Answer:
the answer should be A that's the best
Make a Fist, hold, and stretch your fingers is the correct answer
import sys
number = int (input ("Enter a number between 1 to 100 : "))
x = 0
y = 0
if number == 0:
sys.exit()
if number > 50:
print("Increment x value")
x=x+1
else:
print("Increment y value")
y=y+1
if x > y:
print("Most of your numbers are greater than 50")
else
print("Most of your numbers are less than or equals to 50")
Explanation:
In this algorithm the User is asked to input the number.
If the input number is 0 then the user will exit the algorithm
If the input number is greater than 50 then X variable is incremented by 1
If the input number is less than 50 then the variable Y is incremented by 1
Then X and Y values are compared,if the value of x is greater than y then
and print command will print Most of your numbers are greater than 50
If the value of Y is greater than X then print command will print Most of your numbers are less than or equal to 50