when an external device becomes ready to be serviced by the processor the device sends a(n) interrupt signal to the processor
A theme is a set of colors, fonts, effects, and more that can be applied to your entire presentation to give it a consistent, professional look.
External hard drives typically connect to a computer via an external port (such as a USB or <u>thunderbolt</u> port) or a wireless connection.
<h3>What is a hard drive?</h3>
A hard drive can be defined as an electro-mechanical, non-volatile data storage device that is made up of magnetic disks (platters) that rotates at high speed.
In Computer technology, all hard drives are commonly installed on computers and other digital service for the storage of digital files and to enable the booting of a computer through its operating system (OS).
<h3>What is a memory?</h3>
A memory can be defined as a terminology that is used to describe the available space on an electronic device that is typically used for the storage of data or any computer related information such as:
In conclusion, all external hard drives typically connect to a computer through an external port such as a USB, <u>thunderbolt</u> port, or a wireless connection.
Read more on hard drive here: brainly.com/question/26382243
#SPJ1
Answer: 2) To provide instruction for how the structure should look
4) To provide instruction for how the content should look
Explanation:
HTML 5 is a hypertext markup language revision which basically provide the structure and content to the page. It is a standard programming which basically describe the content of the web page. It reduce the overall development time and it is faster.
In the remaining option, It does not provide any meaning as we cannot add structure directly we should use the CSS styling for the particular document.
Therefore, (2) and (4) option are correct.
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: