The following is not an interconnector :
A wireless keyboard jack
Explanation:
- An interconnector is a structure which enables energy to flow between networks.
- An electrical or optical connection or cable that connects two separate devices.
- Since a wireless device does not have a cable connecting the two, they are not an interconnector.
- The cable that connects your monitor or hard drive to the computer system is called an interconnect.
- Switches can be used to connect together a number of end-user devices such as workstations, or to interconnect multiple network segments.
- A standard computer system will contain multiple interconnects.
Answer:
#include <stdio.h>
void first() {
printf("first\n");
}
void second() {
printf("second\n");
}
void third() {
printf("third\n");
}
int main() {
first();
second();
third();
printf("End of program.\n");
return 0;
}
Answer:
1) Selection, bubble and insertion sort requires no moves in the sorted array because there will be n comparisons in the array and no swapping would take place after each comparison so zero moves.
2) Bubble and insertion sort result in 999 comparisons as we are required to iterate only one time over the array. this can be easily explained from the diagram as in bubble sort all the elements will be in their sorted position so each element will be encountered only once.
3) In selection sort, any element is compared with all the elements and accordingly smaller is paced first so in the reverse sorted array there will be at least n^2 comparisons so n^2 moves.
4) in merge sort an array is always divided into n nos of parts and then sorted so in worst case as well as best case the array will be divided so same numbers of moves.
<span>Yes, it is true that if we exit an office app we prompted by one dialog box that we want to save the changes to the file or not.It is one of the good option in Microsoft office product if we close the file accidentally it will display the dialog box to choose the options.In that dialog box if we click save changes button it will save the changes what we made new into the file.Then if we click don't save changes button it won;t make any new changes into the file.If we click cancel button it will return to the page we are working on it.</span>
Answer:
I would select Straight 2-way Merge sort over Quicksort when:
C. If space were not an issue If I knew the size of the data set was very large.
Explanation:
For large datasets, the Straight 2-way Merge sort has been found to be more efficient than the Quicksort. It also works faster than Quicksort. However, Quicksort has been found to be more efficient, working faster than the Straight 2-way Merge sort with small datasets. The two are algorithms for sorting. While Straight 2-way Merge Sort uses two streams with repetitions, the Quicksort uses just one stream without repetitions and additional storage space.