Answer:
The answer is "option a".
Explanation:
To resolve the automatic reboot problem we must change the CPU cooling fan because if we don't change a computer fan so, it will be heated and damage other components. This cooling fan used inside the CPU. It expels warm air from inside and moves air across the particular component. and other options are not correct that can be described as:
- In option b, power supply is used to turn on the computer. It is not used to solve the reboot problem.
- In option c, Motherboard is to serve as the base upon which a computer's components are built.
- In option d, It is primarily used to store the data.
Answer: Media access control layer (MAC layer)
Explanation:
The media access control layer is also known as MAC layer. The main function of the media access control layer is that it is used in the transmission of the data into the frame and perform the error detection and the address recognition which basically govern the accessing to the local area network (LAN) transmission medium.
The media access control layer is basically responsible for transmission of the data packets from NIC (Network interface card) to the another channel.
Answer:
A sympton of a failing power supply is The computer sometimes does not turn on.
Explanation:
All right, the power supply is the terminal that receives electric current to process it and distribute it to the different parts of the hardware that compose the computer. When it fails, the current is not distributed and doesn't reach the different pieces of hardware. Therefore, option D) is the correct one. Another error that could be related is the malfunction of fans but it could be related to wires more than the power itself.
Answer:
A. Xcode libraries
Explanation:
We have to find a requirement for developing game applications on devices running Apple’s iOS operating system. For that, I will evaluate each answer.
A. Xcode libraries
Xcode can be generally defined as a development kit or integrated development environment to facilitate the Apple software development. Apple use iOS operating system for its devices. To develop anything compatible with iOS, you generally have to code it using Xcode. Obviously, each development kit includes libraries for project to be built. Therefore, this option is correct.
B. Android Development Kit
Just like Xcode, Android Development Kit is used to build the software for android. It is pretty much comprehensible from its name. So, this option is false.
C. ARM technology and D. advanced microprocessors
These both options are related to hardware and available on both the devices. It is used for overall processing but these options are not that relevant to iOS operating system. Therefore, these options are false too.
So, Correct option is Xcode libraries.
Answer:
see explaination
Explanation:
The following code is in python 3.5 and above:
# Create a main method
def main():
# Accept name from the user
name = input("Enter your name: ")
# Accept describe yourself from the user.
describe = input("Describe yourself: ")
# Create a file object
f = open('person.html','w')
# Creat a string to store the html script.
message = """<html>
<head>
</head>
<body>
<center>
<h1>"""+name+"""</h1>
</center>
<hr/>"""+describe+"""<hr/>
</body>
</html>"""
f.write(message)
f.close()
main()