Question
As per the IFSCA Circular on Direct Market Access (DMA)
and Sponsored Access (SA) for Bullion Exchange Participants (July 2024), who is responsible for ensuring that the DMA and SA facilities are properly implemented in the IFSC?Solution
The circular mandates that the Bullion Exchange must amend its bye-laws, rules, and regulations to ensure proper implementation of DMA and SA facilities for Bullion Trading Members and Bullion Clearing Members.
A Decision Support System (DSS) is best described as:
What is the primary purpose of virtual memory in an operating system?Â
What is the final value of x after the following C++ code snippet executes?
  int x = 10;
  for (int i = 0; i < 3; ++i) {
�...
Consider a Shape class with a method draw(), and Circle and Rectangle classes that inherit from Shape and override draw(). If you have a List
con... What is the primary purpose of the fork() system call in Unix-based operating systems?
Which virtualization technique allows the guest OS to run without being modified and has the lowest overhead?
Consider the following Python code:
s = "PythonProgramming"
part1 = s[2:6] # Corrected line
part2 = s[-5:]
print(part1 + par...
Polymorphism, meaning "many forms," allows objects of different classes to be treated as objects of a common superclass. Which of the following best des...
The Boyer-Moore algorithm is known for its efficiency in practice, especially for long patterns and large alphabets. It uses two heuristics: the bad cha...
Consider the in-order traversal of a Binary Search Tree. What characteristic does the sequence of visited nodes possess?