CPU is the Answer to this question.
I am pretty sure A is the answer because it makes most sense plugged into the sentence.
Answer: Power P at distance 0.7 km is: 0.234 µW
Explanation:
We know that
inverse cube-power law.
Thus Power, P = c / d³
Substituting we have
15 µW = c / (175 m)³
c = (15 µW) x (175 m)³
Then finally Power value at 0.7 km.
Will be
P = c / d³
P = ((15 µW) x (175 m)³) / (700 m)³
= (15 µW) x (175 / 700)³
= (15 µW) x (0.25)³
=(15 µW) x (0.015625)
P = 0.234 µW
UNIX is operating system has no graphics user interface
Unix
<u>Explanation:</u>
Mostly nowadays all operating system and software is coming at graphics user interface. End user what all are visual interfaces by using mouse as input tools.
Since computer world is changes technology every day mouse and graphics user interfaces. In old days where operating system are operated in black and white screen period main use of input device are keyboard and those days are no graphic user interface.
In fact nowadays we going back to black and white screen and we name it as dark mode and say to save current and save eyes. But still use mouse as input tools in dark mode also.
Answer:
import random
print("Hello! I have a random number from 1 to 100! It is your job to try and guess it!")
number = random.randint(1,101)
guess = int(input("start to guess: "))
num_guesses = 1
while guess != number:
if guess > number:
print("lower")
guess = int(input("try again: "))
num_guesses +=1
elif guess < number:
print ("higher")
guess = int(input("start to guess: "))
num_guesses +=1
print("congrats it took you", num_guesses, "tries")
Explanation: