Answer:
he played 13,500 games and has 37 percent win rate
A presentation program<span> is a </span>software<span> package used to display information in the form of a </span>slide show. It has three major functions: an editor that allows text to be inserted and formatted, a method for inserting and manipulating graphic images, and a slide-show system to display the
<h2>Hey there!</h2>
<h3>Printer is an output device. </h3>
<h2>Explanation:</h2>
<h3>CD - We insert CD,so it is an input device.</h3>
<h3>Hard Drive - It is responsible for the memory of the computer, so it also an input device. </h3>
<h3>Joystick - It is used to play games on a computer, it inputs instructions through which a game/games can be played. So,it an input device.</h3>
<h3>Printer - It is used to print out the hard copies from a computer,like pages etc..</h3>
<h2>Hence, the correct option will be </h2>
<h3>D. printer </h3>
<h2>Hope it helps </h2>
Answer:
The best answer is A) A secure baseline was not established early in the process.
Explanation:
If the organization is deploying to the production environment and the security analyst discovers this risk at this point, then a secure baseline was not established, because it is impossible to successfully pass the coding and peer review instances by programmers and testing instances by the QA team without any warning to correct this problem.
Answer:
value=int(input("Enter the value from where the user wants to starts: "))#Take the value from the user.
i=1#intialize the value of a variable by 1.
while(value<1000) and (i<9):#while loop which prints the value.
print(value,end=" ")# print the value.
value=value*2#calculate the value to print.
i=i+1#calculate the value for the count.
Output:
If the user enter 5, then the output is : "5 10 20 40 80 160 320 640".
If the user enter 5, then the output is : "3 6 12 24 48 96 192 384".
Explanation:
- The above code is in python language, in which the first line of the program is used to render a message to the user, take the input from the user and store it into value variable after converting it into an integer.
- Then the loop will calculate the double value and then it prints the value with the help of print function.
- The end function puts the spaces between numbers.