Answer:
C. 4
Explanation:
typedef enum{
red,orange,yellow,green,blue
}
color_t;
defines an enumeration type color_t with the values red,orange,yellow,green,blue.
If we print out the values of these individual elements they will be as follows:
red : 0
orange : 1
yellow: 2
green: 3
blue: 4
Note that the integer values are dependent on the position in the definition.
Answer:
minimal is the correct answer
Explanation:
In one condition, participants are required simultaneously to monitor the screen for the appearance of a particular digit. Whether participants must watch for a digit is a minimal variable in this experiment.
Answer:
To avoid fatal errors, it is advised to apply the <u>"use strict"</u> statement locally only to functions that are created rather than globally as the first line of the script file.
<h3>Answer : C.Control Unit</h3>
<h3>Reason</h3>
In CPU there are two components name ALU and CU(Control unit) which ALU's function is to solve mathematic sequence and CU fuction is to vetch data to memory and manage commands and input & output.
#See pic for how the data proceed
This is for Python
def biggestNum():
array = []
for i in range(8):
number = int(input('Enter number: '))
array.append(number)
return max(array)
print(biggestNum())