Answer:
Not sure what language, but in python a super basic version would be:
val1 = 98
val2 = 87
val3 = 84
val4 = 100
val5 = 94
sum = val1 + val2 + val3 + val4 + val5
avg = sum / 5
print(avg)
Explanation:
Answer:
Is there a picture to go with this question?
Explanation:
Is there a picture to go with this question?
In spoken and audio texts the tone and accompanying sounds convey a point of view. Point of view therefore constructs an attitude towards the subject matter in a text which the reader, listener or viewer is invited to adopt.
Please have a wonderful day <3
Answer:
1. Capacitor.
2. Inductor.
3. Resistor.
4. Battery.
5. Transistor.
Explanation:
1. <u>Capacitor</u>: this component stores a temporary charge.
2. <u>Inductor</u>: this component stores electric energy in the form of a magnetic field.
3. <u>Resistor</u>: this component prevents components from overheating.
4. <u>Battery</u>: this component produces electricity by converting chemical energy into electric energy.
5. <u>Transistor</u>: the voltage applied to the base can control the current that flows across the emitter and collector.
Answer:
A.)
arr[0] = 10;
arr[1] = 10;
Explanation:
Given the array:
arr = {1,2,3,4,5}
To set the first two elements of array arr to 10.
Kindly note that ; index numbering if array elements starts from 0
First element of the array has an index of 0
2nd element of the array has an index of 1 and so on.
Array elements can be called one at a time using the array name followed by the index number of the array enclosed in square brackets.
arr[0] = 10 (this assigns a value of 10 to the index value, which replace 1
arr[1] = 10 (assigns a value of 10 to the 2nd value in arr, which replaces 2