Answer: Zombies
Explanation: Zombie is a computer device that is responsible for the compromising the system and making it prone to several destruction such as the Trojan horse virus,hackers and other viruses as well. Zombie makes the computer system to get malfunctioned easily ,that is without much security and various malicious functions can be performed.They basically act as the infected computer .
Answer: <u>Computer hardware is any physical device used in or with your machine, like for example, a mouse, or a keyboard.</u> Computer software is a collection of programming code installed on your computer's hard drive it can process billions of data and inputs through this.
Hope this helps!
Answer:
1. Both Steve Jobs and Steve Wozniak raised $1000 by selling personal items, so that they could start Apple.
2. Steve Wozniak worked for Hewlett Packard designing calculators before starting Apple.
4. Steve Jobs never learned to code and primarily focused on design.
Explanation:
I just took the test.
D: Stratus. Stratus clouds<span> </span>form<span> when a layer of air is cooled from below to its dewpoint temperature and water vapor condenses into liquid droplets.</span>
Answer:
Here it is
Explanation:
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
int nr_digits1 = 0, nr_digits2 = 0;
int sum1 = 0, sum2 = 0;
int max_digit1 = 0, max_digit2 = 0;
while (a > 1)
{
int digit = a % 10;
nr_digits1 += 1;
sum1 += digit;
if (digit > max_digit1)
{
max_digit1 = digit;
}
a /= 10;
}
while (b > 1)
{
int digit = b % 10;
nr_digits2 += 1;
sum2 += digit;
if (digit > max_digit2)
{
max_digit2 = digit;
}
b /= 10;
}
cout << "For a: \n" << " No. of digits: " << nr_digits1 << "\n";
cout << " Sum of digits: " << sum1 << "\n";
cout << " Max digit: " << max_digit1 << "\n";
cout << "\n";
cout << "For b: \n" << " No. of digits: " << nr_digits2 << "\n";
cout << " Sum of digits: " << sum2 << "\n";
cout << " Max digit: " << max_digit2 << "\n";
return 0;
}