<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:
Un sistema operativo es el software más importante de tu computador, ya que se encarga de gestionar el hardware, el acceso a la memoria, acceso a la CPU y controlar gran parte de las tareas que lleva a cabo tu computador.
 
        
             
        
        
        
No what’s your problem on edge
        
             
        
        
        
Answer:
- var today = new Date();
- var dateComp = [];
- dateComp[0] = today.getDate();
- dateComp[1] = today.getMonth();
- dateComp[2] = today.getFullYear();
- 
- switch(dateComp[1]){
-     case 0:
-         console.log("Jan " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 1:
-         console.log("Feb " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 2:
-         console.log("Mar " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 3:
-         console.log("Apr " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 4:
-         console.log("May " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 5:
-         console.log("Jun " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 6:
-         console.log("Jul " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 7:
-         console.log("Aug " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 8:
-         console.log("Sept " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 9:
-         console.log("Oct " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 10:
-         console.log("Nov " + dateComp[0] + "," + dateComp[2])
-         break;
-     case 11:
-         console.log("Dec " + dateComp[0] + "," + dateComp[2])
-         break;
- }
Explanation:
The solution code is written in JavaScript.
Firstly, create a Date object (Line 1). The date object will automatically capture the current date and time. 
Next create an array dateComp to hold the day, month and year (Line 3 -5). We use the getDate method to get current day, getMonth method for current month and getFullYear method for current year.
This is important to note that the getMonth method will return the value range from 0 - 11 with the Jan is represented as 0, Feb is 1 and so forth. Presume we intend to display the date using the format "month day, year", we can create a switch structure to check the month value which is range from 0 to 11. If month value is 0, generate string Jan + current day + "," + current year. We generate the date string based on different switch cases (7 - 44). We shall see the output similar to the date string as shown below:
 Apr 12,2020