Some programs that we have used that have condition-controlled loops and count-controlled loops due to the following reasons.
Explanation:
Condition-controlled loops
A program could be made more intelligent by programming it to avoid hazards. For example, if the robot vehicle is 3 cm from the edge of the table and you tell it to move forwards 5 cm, it will drive off the edge of the table. To stop this from happening, you might write a condition-controlled loop like this:
move forward
repeat until (touching table edge)
Condition-controlled loops can be used to add a high degree of intelligence to a computer system.
Count Controlled Loops
A count controlled loop is a repetition structure that iterates a specific number of times
You can write a count controlled loop using a
while() loop.
For example:
counter = 0
while counter < 5:
print (“This will print 5
times”)
counter += 1
Answer:
0
Explanation:
The statement, print(8 % 4) will produce the output 0 ;
The print statement is an inbuilt function which is used to output a typed string or display result of a Mathematical calculation and so on.
The expression in the print statement gives 0;
8%4 means, the remainder when 8!is divided by 4 ; 8 /4 gives 2 without a remainder. Meaning that :
8%4 = 0
Hence, print(8 % 4) = 0
AMD makes CPUs, GPUs, Motherboards, Graphics Cards and other computer hardware
The answer is d hope this helps lol