Answers:
1- cell address ( i think)
Answer:
C++.
Explanation:
void printStrings(char strings[NUM_STRINGS][STRING_LENGTH]) {
// Multi dimension array can be traversed through multi-level loops
for (int i = 0; i < NUM_STRINGS; i++) {
for (int j = 0; j < STRING_LENGTH; j++) {
cout<<"<<strings[i][j]<<";
}
cout<<endl;
}
}
Output would be like this, depending on the size of NUM_STRINGS;
"One"
"Two"
"Three"
....
Answer:
The configuration of the R1 is as follows
Explanation:
Router>enable
Router#show running-config
Router#show startup-config
Router#configure terminal
Router(config)#hostname R1
R1(config)#line console 0
R1(config-line)#password letmein
R1(config-line)#login
R1(config-line)#exit
R1(config)#enable password cisco
R1(config)#enable secret itsasecret
R1(config)#service password-encryption
R1(config)#banner motd #Unauthorized access is strictly prohibited#
R1(config)#end
R1#exit
R1>enable
R1#copy running-config startup-config
R1#show flash
R1#copy startup-config flash
Answer:
In a STAR TOPOLOGY network, each device on the network is attached to a central router. If the router fails, then the other devices will be unable to communicate, but if only one connected device fails, then all other devices will still be able to communicate.
Explanation:
In this type of topology all the computers are connected to a single router through a cable. This router is the central node and all others nodes are connected to the central node.