Answer: Crossover
Explanation:
Based on the information given in the question, the type of cable that should be used is the crossover cable.
Crossover cable is used for a direct connection of computing devices. A crossover cable is typically used for the connection of computing devices that are of identical types.
Since the LAN port on a router is to be connected to the uplink port on a switch and the switch does not support auto-MDI, the crossover cable can be used.
Enroll a student identified by her snum into the class named 'Introduction to Database Systems' is the following transactions, state the SQL isolation level you would use.
1. Enroll a student identified by her snum into the class named 'Introduction to Database Systems'.
<u>Explanation:</u>
Since enroll is unique in the university enrollment database schema and field name is SNUM and it is data type is an integer. To identify student class name and department name and name of student SNUM field is used for searching in university enrollment database schema. Enrollment changing is not possible of the student’s not possible or not good practices in university enrollment database schema.
If a query had been made class wise or department wise enrollment is played an important role.
For assign, a faculty is made on the class id or department id.
Answer:
1. The home tab
2. Font group
3. The small arrow at the bottom right of the font command group.
4. On "Font" heading (then "All text" subheading)
Explanation:
The following explanation will help Su in accomplishing her task.
1. Go to the home tab;
2. From the home tab, Su will have access to various command groups but in her case, she needs the Font command group.
3. There's a small arrow located at the bottom left of the font command group section; clicking on this arrow will open the font dialogue.
4. On the font dialogue, there are two headings. The "font" heading and the "character spacing" heading.
In her case, she needs the "Font" heading. The font heading also has various subheadings. To access the underline colour option, she needs the "All text" subheading.
See attachment for picture guide.
Answer:
All of the above but I'm not 100% sure.
Answer:
Program source code found in explaination
Explanation:
Recursive int function of the asked question.;
int productOfOdds(int array[],int length) {
int product=1;
if(length==0)
return -1;
else if(length==1) {
if(array[length-1]%2!=0)
return array[length-1];
else
return 1;
}
else {
product=productOfOdds(array,--length);
if(array[length]%2!=0) {
product=product*array[length];
}
}
return product;
}