Answer:
A variable is a name associated with a data value; we say that the variable "stores" or "contains" the value. Variables allow us to store and manipulate data in our programs.
Answer:
Choose what you think based on this.
Explanation:
with a for loop:
>>> students = 3
>>> for student in range(students):
>>> print(student)
would output
>>> 0
>>> 1
>>> 2
with a while loop now:
>>> students = 3
>>> student = 0
>>> while student < students:
>>> student = student + 1
>>> print(student)
the for loop is more compact than the while loop. But there may be some times when a you cant do a for loop. The first question is more than likely definite but I don't know the second answer.
The equipment that move the fabric forward are called "Hem guides"
Answer:
d. RAID 6
Explanation:
Given: Your supervisor has asked you to configure a server with a RAID utilizing disk striping with two sets of parity bits for additional fault tolerance, so that up to two hard disk failures can occur without data loss.
The requirement can be accomplished using RAID 6 configuration which stands for Redundant Array of Independent Disks - Level 6.It makes use of 2 parity disks to handle two potential failures.