Question
Determine how many composite
numbers exist between 61 and 99?Solution
ATQ, Total numbers between 61 to 99 = (99 - 61 + 1) = 39 Prime numbers between 61 to 99 = 61, 67, 71, 73, 79, 83, 89, 97 = 8 numbers So, required count of composite numbers = (39 - 8) = 31
Which collision resolution technique involves storing colliding elements in a linked list at the hash table index?
Encapsulation is often described as a "protective barrier" that prevents the data from being accessed by the code outside the class. This statement is:
What is the main purpose of disk scheduling in an operating system?
Consider the following Python code:
list_a = [1, 2, 3]
tuple_b = (4, 5)
string_c = "hello"
dict_d = {"key1": 1, "key2": 2}
Which of the following describes a major benefit of Continuous Integration (CI) in the software development lifecycle?Â
Which logic is used to handle uncertain or imprecise knowledge?
Consider a Java method printList(Node head) for a singly linked list.
class Node {
  int data;
  Node next;
  No...
Which type of fragmentation is primarily addressed by paging, and which type does paging typically introduce?
In a multi-homed network, BGP route flapping causes external instability. Which mechanism MOST effectively prevents repeated advertisement of unstable r...
Which web application vulnerability is most commonly exploited through code injection, allowing attackers to manipulate database queries?Â