Answer:
To capture the contents of the currently active window, press Alt-PrtScrn (or Alt-Print Screen ). To capture the contents of the entire screen, press PrtScrn (or Print Screen ) by itself.
hope it helps you
make me brainliest plz
Answer:
operating system is the very first
after assembling a computer system the very first software to be installed is
Answer:
The summary of the given query would be summarized throughout the below segment. The output of the question is attached below.
Explanation:
Given values are:
here,
inp = input
By utilizing the below formula, we get
⇒ 
Now,
⇒ 
⇒ print("Acceleration of gravity: {:.2f}".format(accel_gravity))
Is this some jiberish or is this a different language because I can’t understand nothing you just typed
Answer:
I am writing Python program.
string = input("Enter a string: ")
print(string.count(' '))
Explanation:
The first statement takes input string from the user.
input() is used to read the input from the user.
The next statement uses count() function to count the number of times the specified object which is space ' ' here occurs in the string.
The print() function is used to return the number of times the space occurs in the string entered by the user.
Output:
Enter a string: How are you doing today?
4
The screenshot of program and its output is attached.