Answer:
day=int(input(“Enter today’s day numerically: ”))
if(day ==15 or day ==30):
print(“It’s payday!”)
if(day !=15 and day !=30):
print(“Sorry, not a payday.”)
Explanation:Good luck!
An example of linear motion is an athlete running 100m along a straight track. Linear motion is the most basic of all motion. ... Neglecting the rotation and other motions of the Earth, an example of linear motion is the ball thrown straight up and falling back straight down.
Answer:
CPU clock cycles = Instruction count x CPI.
CPU execution time =
= CPU clock cycles x Clock cycle.
= Instruction count x CPI x Clock cycle.
T =
I.
x CPI x C
Explanation:
i'm guessing
The user requests an application to run by making a system call to get it started
Answer:
Following are the program in the Python Programming Language.
#declare empty string variable
s=""
#declare variable that store "*" as string
x= "*"
#set the while loop
while(len(s) < 777):
#initialize the value of 'x' in 's'
s= x
x += "*"
Explanation:
<u>Following are the description of the program</u>.
- Set an empty variable to store the string type values.
- Again, set a variable 'x' and initialize asterisks in it as a string.
- Set the while loop that iterate, when the length of the variable 's' is less than 777, then initialize the value of the variable 'x' in the variable 's' and concatenate asterisks with the variable 's'.