Answer:
- #include <iostream>
- using namespace std;
- int main()
- {
- int highest = 0;
- int score;
- do{
- cout<<"Input a score: ";
- cin>>score;
-
- if(score > highest){
- highest = score;
- }
- }while(score >= 0);
-
- cout<<highest;
- return 0;
- }
Explanation:
Firstly, create a variable highest and initialize it with zero (Line 5). Next, create a do while loop (Line 7 - 14). Within the loop prompt user to input a score (Line 8-9) and if the current score is higher than the highest variable, assign the score to highest variable (Line 11 - 13).
After finishing the loop when user put in any negative value, the program shall be able to print out the highest input score (Line 16).
Answer:
To have all your ideas in one place
To conceptualize design ideas
To present ideas to a client
Explanation:
A storyboard refera to a graphic organizer which consists of images which are displayed in sequence in order to pre-visualise an animation, motion picture, etc.
It is important as it conveys how a story will flow, and also help in conceptualizing design ideas. Based on the options given, the correct options are:
• To have all your ideas in one place
• To conceptualize design ideas
• To present ideas to a client
1 see what you can do and go from their
Answer: databases
Explanation:
The options include:
A. networking
B. databases
C. hardware
D. software
The aspect of the Information Technology cluster that he would most likely be trained in is the databases.
Database simply refers to a structured set of data which is being held in a computer. It helps in the storage of organized information.
Since some of his daily tasks include tracking shipments and entering orders, he'll be trained in database.
Answer:
A data plane is used in a network, it is also known as forwarding plane. The main responsibility of a data plane is to carry forward the packets or data between different clients of the network. • A control plane used in the network is responsible for establishing connection information. That is a control plane connects different clients by exchanging their routing and forwarding information.
Comment
• A control plane makes decisions about how a packet can be carry forwarded in the network. It uses different protocols and makes the routers and switches to exchange their routing information with the next router or switch. This information could be the routing tables containing which is the shortest path to reach the next router. • The control plane also configures and manages the network components. • The data plane uses the instructions and commands passed by the control plane to forward the data packets. Data plane uses the forwarding table of control plane and transfers data from one client to another client.
• Thus decisions made by control plane are used by data plane to manage the network traffic and to transfer the data.
Explanation: