Answer:
(d) all of the above
Explanation:
This is because, not only is digital video a core technology for digital television, it also happens to be a core technology for video conferencing and video messaging. This could be seen in its application in messaging apps for private discussion of for holding official meetings between employees in virtual conference.
They may not have enough money for the bill at the time, and its easier to pay for insurance for unseen medical procedures.
Answer:
D) Business intelligence systems analyze an organization's past performance to make predictions is the correct answer.
Explanation:
- Business intelligence systems represent systems that help the business in the decision making and strategic making method.
- BI provides is applications that help in the analysis, collection, and integration of business information.
- Business intelligence systems help the organization to analyze the business trends and to find the problems that occur in the business that is required to be examined.
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
int main()
{
double h, w;
int s, a, b;
cout<<"height in feet: ";
cin>>h;
cout<<"width in feet: " ;
cin>>w;
cout<<"tile size in inches:";
cin>>s;
int height = h*12;
if(height%s==0)
a = height/s;
else
a = height/s + 1;
int width = w*12;
if(width%s==0)
b = width/s;
else
b = width/s + 1;
cout<<"Number of tiles: "<<a*b;
}