Answer: Plastic, metal, rubber, wiring, electricity, technology, wifi,
Explanation: You need PLASTIC to make a frame for the computer. METAL
to make an exoskeleton under the plastic frame. RUBBER to hold those loose wires and to make sure the electricity doesn't escape and shock you. ELECTRICITY to charge and make the computer runs. Technology is used for you to log in and out of your computer and WIFI to make sure it doesn't lag.
Explanation:
The first 3 lines of code tell the user to input a 5 digit number (ex. 72,910) or a 1 digit number (ex. 3). The next 5 lines of code determine if it is a 5/1 digit number or not. If it is, it prints "Success!". The rest of the code just tells that if it's not a 5/1 digit number, and if it's not, it gives errors and tells the user to try again.
Hope this helps!
The architectural difference between the two is that DRAM uses transistors and capacitors in an array of repeating circuits (where each circuit is one bit), whereas SRAM uses several transistors in a circuit to form one bit.
False, The provided pseudocode will not make the turtle draw a rectangle in Python.
<h3>What is turtle in python?</h3>
Turtle in python is a convenient way of demonstrating and explaining programming to kids.
From the given pseudocode:
- The turtle is supposed to continue to turn to the right position by 90 degrees.
Now, the correct code that will draw the rectangle in Python is:
from turtle import*
move turtle forward 50 px
turn turtle right 90 degrees
move turtle forward 25 px
turn turtle right 90 degrees
Learn more about turtle in python here:
brainly.com/question/16397886