<u>The possible consequences of intentional virus setting:</u>
Virus is nothing but desktop or laptop or tablet OS has to do certain process as on its own which diverse other to different process such us stealing the data from desktop or laptop or tablet and making slow the performance of desktop and laptop and tablet.
To avoid or protect the computer there are two type of antivirus.
- On desktop or tablet or laptop. (It is called resident firewall).
- Internet gateway. (It is called firewall)
So company create virus and to rectify they make money of that process.
To protect our desktop or laptop or tablet from virus we are protected with law. In case due to virus attacked our laptop or desktop or tablet Is effected we can fine the or sent to jail by law.
Answer:
- def getLargest(number_list):
- new_list = []
-
- for x in number_list:
- if(isinstance(x, int)):
- new_list.append(x)
-
- largest = max(new_list)
-
- return largest
Explanation:
Firstly, create a function <em>getLargest()</em> that take one input parameter, <em>number_list</em>.
The function will filter out the float type number from the list by using <em>isinstance() </em>method (Line 5). This method will check if a current x value is an integer. If so, the x value will be added to <em>new_list</em>.
Next, use Python built-in <em>max</em> function to get the largest integer from the <em>new_list </em>and return it as output.
Answer:
The correct options are;
-Position the keyboard directly in front and close to you so you don't have an excessive reach
-Keep your shoulders, arms, hands and fingers relaxed
-Position your wrists straight or in neutral position while typing
-Adjust your chair height and position so your feet rest flat on the floor, or add a footrest to compensate for a higher chair
-Adjust the keyboard height so that your shoulders can relax and your arms are straight in front of you
Explanation:
1) It is important to keep the fingers in a relaxed position when typing
2) Ensure to type in a tapping fashion when typing rather than pressing on the keys of the keyboard
3) The fingernails should be kept short when frequent typing is done
4) The wrist is better kept above the keyboard than resting on it
5) Ensure that the mouse is easily reached.
The read-write type of memory helps in reading as well as writing data. This computer memory is used by users to continually update the data (to access (read from) or alter (write to) ) that is held on hardware storage devices. Internal or external hard disk drives, rewritable CDs or small flash drives can be all physical setups of read-write memory.
Answer:
Thks is true the int function changes a float value to an integer and will round up or down by default.