IFSC provides an opportunity to global businesses to set up wide variety of business verticals in Banking, Insurance, Fund/Asset management, Capital Markets and Trading, IT services and ITeS/BPO services. Gujarat International Finance Tec-City (GIFT City) is the first IFSC that was set up in Gujarat in 2015. Earlier the different business segments in IFSC were governed by different regulators namely Reserve Bank of India (RBI) for banking and capital market undertakings, Securities and Exchange Board of India (Sebi) for fund management and capital markets and Insurance and Regulatory Development Authority of India (IRDAI) for Insurance. Recognizing the need for co-ordination amongst all the regulators to ensure smooth business operations in IFSC, GoI established a unified regulator i.e., International Financial Service Centers Authority (IFSCA) under the IFSC Act to govern activities of all units established in IFSC . IFSCA was established in April 2020 and its current Chairman is Mr. Injeti Srinivas.
In Huffman coding, data in a tree always occur?
In terms of processor performance, which factor has the greatest impact on reducing instruction execution time for computationally heavy applications? ...
What will be the output of the following code when the pop method is executed?
class Stack:
def __init__(self):
s...
What is the primary advantage of using Normalization in a database design?
In the context of Cross-Site Scripting (XSS), what is the primary reason why stored XSS is considered more dangerous than reflected XSS?
Which of the following operations is most efficient in a singly linked list compared to an array?
Which of the following scenarios violates the Isolation property in the ACID properties of a transaction?
What will be the output of the following code snippet implementing the Least Recently Used (LRU) page replacement algorithm?
def lru(pages, capac...
Which of the following design patterns violates the Open/Closed Principle of SOLID principles in object-oriented design?
Predict the program output
void main ()
{
int x = 128;
printf ("n%d", 1 + x++);
}