Answer:
This is using c++ syntax, you might need to make slight adjustment for other languages.
First activity:
string firstSnack = "chips";
string secondSnack = "pizza";
string thirdSnack = "apples";
string bestSnack = firstSnack;
bestSnack = secondSnack;
Second activity:
double apple = 0.5;
double banana = 0.75;
double orange = 1.43;
double total = apple + banana + orange;
Explanation:
When first declaring a variable, you want to specify the type (such as int, double, string, bool, etc.) and then the name. You can set the variable value in the declaration, or you can set it to a value later in the program by not having the equals sign and whatever comes next.
Answer:
The “Information poor” are consumers who use traditional mass media information such as television, DVDs, radios and magazines. ... On the opposite “information rich” stands for a new elite within the information society.
You have to draw the extra lines out
Well Formatted Question:
The _______ of the operating system enables users to communicate with the computer system.
a) modem
b) window
c) network adapter card
d) user interface
Answer:
(d) user interface.
Explanation:
A user interface acts as a middleman between the user of a computer and the operating system of that computer. With the user interface, a user can easily communicate with the computer system including the applications running on it.
The user interface can either be text-based or graphics-based.
With text-based user interface, the user enters commands (using keyboards) in form of texts basically on the command line and then the operating system executes these commands.
With the graphical user interface, users interact with the computer using graphics-like control items such as buttons and menus to give instructions to the computer.