Answer:
#include <iostream>
using namespace std;
int main ()
{
float number = 0.0;
float check = 45.6;
cout << "Enter Numeber";
cin >> number;
if (number > check)
{
cout << " Greater than 45.6" << endl;
}
else
{
cout << " Lesser than 45.6" << endl;
}
return 0;
}
Explanation:
declare and initialize float type variable number. Float is used to cater for decimal but not using to much space which is used by double data type. Check value is stored in other variable called check.
Take input from user in number and write an if statement to check whether entered number is less than 45.6 or greater.If number is lesser than check display message "Greater than 45.6" other wise display message "Lesser than 45.6"
When you collaborate or meet with a person or group online, it is called
cloud computing
social networking
text messaging
web conferencing
Answer:
Cloud computing
Explanation:
Cloud computing is simply defined as the usage of computer resources or networks to communicate with a person or persons over the internet.
This has to do with the exchange of ideas or information between two or more parties over the internet and this can be achieved by using a service such as an email to collaborate, meet or discuss with a person or group online.
Answer:
Data is a piece of an Information or a raw form of information while an Information is a processed Data.
Explanation:
An example of Data would be Alphabets of someone's name while the name would be an example of an Information.
On it's own, data makes no sense and needs to be processed to become Information which makes sense.