Answer:
laser
Explanation:
These are well known printer types now. Let's review how they work to determine in which does heat plays a role.
inkjet: inkjet printers are printer throwing ink at the paper in the form of little drops. No heat involved here.
impact: That's the oldest technology, where a printing head is moving left and right to punch a printing ribbon and transfer ink onto the paper. No heat involved.
3D: 3D printers don't usually use paper... as they use other materials to create a 3D representation of a model. Heat is involved in the melting of the material before it's placed on the building model. But no paper involved here.
laser: laser printers are working very much like a photocopier machine... memorizing the pattern to be printed, then transferring it onto paper... using heat.
Answer:
ur answer good sir will be : financial analyst
and a brainliest will be good to thnx
- Sandbox. ...
- Real-time strategy (RTS) ...
- Shooter (FPS and TPS) ...
- Multiplayer online battle arena (MOBA) ...
- Role-playing games (RPG, ARPG, and more) ...
- Simulation and sports.
<em>-</em><em> </em><em>BRAINLIEST</em><em> answerer</em>
Answer:
userInput = input("Please enter a string of words ")
userInput.split ()
for item in userInput.split ():
if item =="darn":
print("Censored")
break
else:
print(userInput)
Explanation:
Using Python programming language, the input function is used to receive the users input and save in a variable userInput
Then the .split method is used to convert the words into a list of words.
Using a for loop, the code checks for the word darn and prints censored if it exists else it prints the userInput