Performance monitor tool can you use to display hardware utilization statistics.
<h3>what is a performance Monitor?</h3>
- Performance Monitor is a system monitoring program introduced in Windows NT 3.1. It monitors various activities on a computer such as CPU or memory usage.
To learn more about performance monitoring, refer
to brainly.com/question/12960090
#SPJ4
Answer:
False
Explanation:
JavaScript is language used along with html documents.
Java is a full-fledged programming language that handles applications.
Answer:
1. 45
2. 9
3. 11
4. 17
Explanation:
Given the following:
28 checked H
26 checked C
14 checked D
8 checked H and C
4 checked H and D
3 checked C and D
2 checked all.
Hence N(H) = 28
N(C) = 26
N(D) = 14
N(H U C) = 8
N(H U D) = 4
N(C U D) = 3
N(H U C U D) = 2
We also know that
Total = N(H) + N(C) + N(D) - N(H U C) - N(H U D) - N(C U D) + N(H U C U D)
Substituting the given values, we obtain
Total = 55
1. Students that didn't check any box = 100 - 55 = 45 students
2. Students who checked exactly two box
= N(H U C) + N(H U D) + N(C U D) - 3N(H U C U D) (from probability theorem)
Substituting the values, we have 8 + 4 + 3 - 6 = 9 students
3. Students who checked atleast two box =
The people who have checked all three are needed to be calculated once. Earlier, we subtracted them thrice so we add one time
N(H U C) + N(H U D) + N(C U D) - 2N(H U C U D) = 8 + 4 + 3 - 4 = 11 students
4. Given N(C) = 26
We subtract N(CUD) and N(HUC) as they have checked another apart from club.
26 -8 - 3 = 15
Now we could notice we have subtracted N(HUCUD) twice in both categories, so we add one time to neutralise
15 + 2 = 17
Hence N(only C) = 17 students.
Using the knowledge of pseudocodes it will be possible to write a code that calculates the amount of hours worked and giving warnings about it.
<h3>Writing a pseudocode we have that:</h3>
<em>while </em>
<em>if number == 0</em>
<em>break</em>
<em>hours =0 </em>
<em>for i =1 to 5 </em>
<em>hours = hours + time_out[ i ] - time_in[ i ]</em>
<em> If hours >36 : </em>
<em>print ( "Name is " ,name)</em>
<em>print( "No of hours are ",hours)</em>
<em>print("Congratulaion! Your working hours are more than 36")</em>
<em>If hours <30 : #</em>
<em>print ( "Name is " ,name)</em>
<em>print( "No of hours are ",hours)</em>
<em>print("Warning !!!")</em>
<em>End loop</em>
See more about pseudocode at brainly.com/question/13208346
#SPJ1
Using the knowledge of computational language in python it is possible to write a code that tries to organize the names in an assorted way and any name can be included.
<h3>Writing code in python:</h3>
<em>names_list = []</em>
<em>for i in range(0, 5):</em>
<em> names_list.append(input("Name: "))</em>
<em>sorted_last_names = sorted([name.split()[-1] for name in names_list])</em>
<em>print(sorted_last_names)</em>
See moer about python at brainly.com/question/18502436
#SPJ1