Technical skills is when you are advanced or know lots in Electronics. You are able to diagnose problems and fix them. They help in the computer field so much because they help fix everything if no one had these skills we wouldn’t be able to even use brainly
They are in charge of keeping records, documenting information of ownership and processing requests.
Answer:
- with(open("numbers.txt")) as file:
- data = file.readlines()
- runsum = 0
- largest = 0
-
- for x in data:
- if(int(x) > largest):
- largest = int(x)
- runsum += largest
-
- print(runsum)
Explanation:
The solution code is written in Python 3.
Firstly, open a filestream for numbers.txt (Line 1) and then use readlines method to get every row of data from the text files (Line 2).
Create a variable runsum to hold the running sum of number bigger than the maximum value read up to that iteration in a for loop (Line 3).
Use a for loop to traverse through the read data and then check if the current row of integer is bigger than the maximum value up to that point, set the current integer to largest variable and then add the largest to runsum (Line 6 - 9).
At last display the runsum to console terminal (Line 11).
Answer:
85%
Explanation:
8:00 a.m - 1:00 pm = 5 hours
Sunday - Wednesday = 4 days
Total scheduled hours = 5 * 4 = 20 hours
Hours in adherence :
Sunday to Tuesday (3 * 5 hours) = 15 hours
Wednesday : (11:00 a.m - 1:00 a.m) = 2 hours
Total hours adhered = (15 + 2) = 17 hours
Commitment adherence percentage :
(Total hours adhered / total scheduled hours) * 100%
(17 / 20) * 100%
0.85 * 100
= 85%