Answer:
Spyware
Explanation:
Spyware is a type of program that is installed with or without your permission on your personal computers to collect information about users, their computer or browsing habits tracks each and everything that you do without your knowledge and send it to remote user.
Answer:
Augmented Reality
Explanation:
Augmented reality is a camera to overlay images on real-world scenery. Basically what the Pokemon GO app does.
<span />
You
can move the file one of two ways. Your first option is to click and
drag the file to another folder in the Folders pane on the left side of
the window. Your second option is to right-click the file and choose
Send To. Then choose from the options shown in the submenu that appears.
Answer:
public class num7 {
public static void main(String[] args) {
int n =1;
while(n<200){
if(n%5==0 && n%7==0){
System.out.print(n);
System.out.print(",");
}
n++;
}
}
}
Explanation:
- In Java programming Language
- Create and initialize an int variable (n=1)
- Create a while loop with the condition while (n<200)
- Within the while loop use the modulo operator % to check for divisibility by 5 and 7
- Print the numbers divisible by 5 and 7
Answer:
Answer is A. SRAM
Explanation:
Memory cache is called static RAM.