Answer:
For listening sake
To listen to information from the computer
They receive audio input from the computer's sound card and produce audio output in the form of sound waves.
Answer:
to vein info ffom all search engines
Answer:
The program is written in c++ , go to the explanation part for it, the output can be found in the attached files.
Explanation:
C++ Code:
#include <iostream>
using namespace std;
int main() {
int x;
cout<<"Enter a number: ";
cin>>x;
int largest = x;
int position = 1, count = 0;
while(x != 1)
{
count++;
cout<<x<<" ";
if(x > largest)
{
largest = x;
position = count;
}
if(x%2 == 0)
x = x/2;
else
x = 3*x + 1;
}
cout<<x<<endl;
cout<<"The largest number of the sequence is "<<largest<<endl;
cout<<"The position of the largest number is "<<position<<endl;
return 0;
}
Answer:
Malware infection
Explanation:
Infecting computers with malware through the internet has become the most commonly seen attack according to 2010/2011 Computer Crime and Security Survey.