Question
Which special-purpose register in a CPU keeps track of
the address of the next instruction to be executed? ÂSolution
The Program Counter keeps track of the memory address of the next instruction to be executed. Â
Fill in the correct option for 28 blank space.
When comparing two algorithms, Algorithm A has O(N log N) complexity and Algorithm B has O(N² ) complexity. For very large input sizes N:
Which of the following network topologies is most resilient to node failures?Â
A C function print_matrix(int rows, int cols, int matrix[rows][cols]) is designed to print a matrix.
#include
void print_matrix(...
Which of the following protocol is used for discovering link layer address or MAC address, associated with a given internet layer address?
Consider a singly linked list: 1 -> 2 -> 3 -> 4 -> None. If a delete_node(head, 3) function is called (which deletes the node with value 3), what will b...
What is a primary advantage of using virtual machines in a computing environment?Â
You are asked to implement a feature that requires storing unique items and quickly checking for the existence of an item. Which data structure would be...
In a data analysis application, a hash table is used to store key-value pairs for fast lookups. What is the primary goal of a good hash function?