The correct answer for this question is this one: "numerical and financial data." <span>The types of data that you might insert into an Excel workbook to be used in an annual financial statement includes numerical data and financial data."</span>
Hope this helps answer your question and have a nice day ahead.
Answer:
Jack should send an e-mail out to all of their clients and BCC them on it (so that they don't have each others information) and distribute the information quickly. E-mail is one fastest ways to get information sent to a large amount of people at one time
Dvd is mainly for vidoes while cd is for music
Option D is correct. The loop should look like this:
for (int i = 0; i < 10; i += 2)
{
System.out.print(i + " ");
}
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;
}