C is likely the best answer here.
A virus or malware appearing/pretending to be a legitimate program is called a Trojan.
Answer:
The answer to this question is given below in the explanation section
Explanation:
This question is about matching the column. So, Gino used the various preinstalled application software and system tools for the following purposes.
Disk cleaner: Gino needs to locate unnecessary files that are taking up a considerable amount of space.
Data recovery: Gino notices many corrupted files and wants to extract good data from them.
Utility diagnostic program: Gino needs to check the operational status of the computer's hardware and software.
Antivirus: Gino's system is acting odd after browsing the internet, and he needs to scan the system.
C Code:
#include <stdio.h> // Enables use of printf
#include <stdlib.h> // Enables use of rand()
#include <time.h> // Enables use of time()
int main(void)
{
srand(time(0));
int random1 = rand()% 50 + 100;
int random2 = rand()% 50 + 100;
printf("%d\n", random1);
printf("%d\n", random2);
return 0;
}
Output:
115
141
Explanation:
Each time program executes, srand() function generates new random numbers.
rand()%50 + 100 makes sure that number is 2 digit and within the range of 100 to 150.
Then we print the two random numbers where %d represents that we want to print an integer and \n represents new line