π Prepare smart, not hardβjoin the intro classes.
RBI Assistant 2026 Register for free workshop and Get ready with our experts https://www.ixambee.com/form/K7VkTre1pW7xRgba
RBI Assistant 2026 Study Plan - https://www.ixambee.com/live-class-session-pdfs/rbi-assistant-2026-study-plan
RBI Assistant 2026 Register for free workshop and Get ready with our experts https://www.ixambee.com/form/K7VkTre1pW7xRgba
RBI Assistant 2026 Study Plan - https://www.ixambee.com/live-class-session-pdfs/rbi-assistant-2026-study-plan
β€1
Get interview-ready with ex-RBI, NABARD & domain specialists. Your IFSC Grade A success starts here.
Book your Slot: https://www.ixambee.com/form/Ltq7mB1qDR8041PD
IFSCA interview course - https://www.ixambee.com/online-course/ifsca-grade-a-interview
Book your Slot: https://www.ixambee.com/form/Ltq7mB1qDR8041PD
IFSCA interview course - https://www.ixambee.com/online-course/ifsca-grade-a-interview
β€2
β
SEBI IT β MEMORY BASED QUESTIONS (1β50) β
π’ 1. Which of the following is violated when unauthorized modifications happen?
β Answer: Integrity
π’ 2. Which algorithm is used for finding the shortest path in a graph that may have negative edge weights?
β Answer: JohnsonβFord Algorithm
π’ 3. How to access a global variable when its name conflicts with a local variable (C++)?
β Answer: Using scope resolution operator (::)
π’ 4. What will be the output of the following C program?
int arr[] = {10, 20, 30, 40};
printf("%d", *(arr + 2));
β Answer: 30
π’ 5. What does the NOT NULL constraint ensure in SQL?
β Answer: A column cannot store NULL values
π’ 6. Which aggregate function in SQL is used to count non-NULL records?
β Answer: COUNT(column_name)
π’ 7. Which block executes code whether an exception occurs or not?
β Answer: finally block
π’ 8. Which device forwards data packets based on IP address?
β Answer: Router
π’ 9. What are packet header sizes used for in networking?
β Answer: To store control info like source, destination, protocol, length
π’ 10. SQL condition to select names starting with A or B?
β Answer: WHERE name LIKE 'A%' OR name LIKE 'B%'
π’ 11. How do you count records where department is NOT NULL?
β Answer: SELECT COUNT(dept) FROM table_name;
π’ 12. What is multilevel inheritance?
β Answer: A class derived from another derived class (A β B β C)
π’ 13. Which of the following is an Application Layer protocol?
β Answer: DNS
π’ 14. Attack where server resources exhaust due to half-open TCP connections?
β Answer: SYN Flood Attack
π’ 15. What does INNER JOIN return in SQL?
β Answer: Only matching rows from both tables
π’ 16. Which property of Structure is true?
β Answer: Separate memory is allocated for each member
π’ 17. Compile-time polymorphism is achieved using?
β Answer: Function / Method Overloading
π’ 18. Output of the code:
int x = 10, y = 20;
if (x > y) print A
else if (x == y) print B
else print C
β Answer: C
π’ 19. Which algorithm uses Divide and Conquer technique?
β Answer: Quick Sort
π’ 20. Which sorting algorithm is comparison-based and uses heap data structure?
β Answer: Heap Sort
π’ 21. C pointer example output:
int a = 5;
int *p = &a;
int **q = &p;
printf("%d", **q);
β Answer: 5
π’ 22. Can any class access public data members of another class in C++?
β Answer: Yes
π’ 23. Johnsonβs Algorithm is used to:
β Answer: Find shortest paths between all pairs of vertices (no negative cycles)
π’ 24. What does ROLLBACK do in SQL?
β Answer: Reverts all changes in current transaction
π’ 25. Which firewall tracks connection states?
β Answer: Stateful Firewall
π’ 26. Destructor properties:
β Answer: Automatically called, used for cleanup
π’ 27. Can a destructor throw an exception?
β Answer: Yes, but not a good practice
π’ 28. Which is NOT a data pre-processing step?
β Answer: Model Deployment
π’ 29. Properties of Structure (struct) β which is correct?
β Answer: Members may have different data types & each member has separate memory
π’ 30. Lazy loading is based on:
β Answer: Timestamp / Demand-based loading
π’ 31. Which UNIX command is used to find differences between two files?
β Answer: diff
π’ 32. A switch uses which protocol to prevent loops?
β Answer: STP (Spanning Tree Protocol)
π’ 33. Shell condition:
if [ -f file ] && [ -s file ]
When is "ok" printed?
β Answer: Only when file exists AND is non-empty
π’ 34. Function to find number of rows and columns in R?
β Answer: dim()
π’ 35. Does a spanning tree work on a disconnected graph?
β Answer: No, only on connected graphs
π’ 36. Minimum Ethernet frame size (header + trailer)?
β Answer: 64 bytes
π’ 37. Which is NOT a function of Python re module?
β Answer: suball()
π’ 38. Python list β output?
val = [1,2,3]
val.append([4,5])
print(len(val))
β Answer: 4
π’ 39. malloc() is used for dynamic memory allocation but:
β Answer: Does NOT initialize memory (garbage value stored)
π’ 40.
π’ 1. Which of the following is violated when unauthorized modifications happen?
β Answer: Integrity
π’ 2. Which algorithm is used for finding the shortest path in a graph that may have negative edge weights?
β Answer: JohnsonβFord Algorithm
π’ 3. How to access a global variable when its name conflicts with a local variable (C++)?
β Answer: Using scope resolution operator (::)
π’ 4. What will be the output of the following C program?
int arr[] = {10, 20, 30, 40};
printf("%d", *(arr + 2));
β Answer: 30
π’ 5. What does the NOT NULL constraint ensure in SQL?
β Answer: A column cannot store NULL values
π’ 6. Which aggregate function in SQL is used to count non-NULL records?
β Answer: COUNT(column_name)
π’ 7. Which block executes code whether an exception occurs or not?
β Answer: finally block
π’ 8. Which device forwards data packets based on IP address?
β Answer: Router
π’ 9. What are packet header sizes used for in networking?
β Answer: To store control info like source, destination, protocol, length
π’ 10. SQL condition to select names starting with A or B?
β Answer: WHERE name LIKE 'A%' OR name LIKE 'B%'
π’ 11. How do you count records where department is NOT NULL?
β Answer: SELECT COUNT(dept) FROM table_name;
π’ 12. What is multilevel inheritance?
β Answer: A class derived from another derived class (A β B β C)
π’ 13. Which of the following is an Application Layer protocol?
β Answer: DNS
π’ 14. Attack where server resources exhaust due to half-open TCP connections?
β Answer: SYN Flood Attack
π’ 15. What does INNER JOIN return in SQL?
β Answer: Only matching rows from both tables
π’ 16. Which property of Structure is true?
β Answer: Separate memory is allocated for each member
π’ 17. Compile-time polymorphism is achieved using?
β Answer: Function / Method Overloading
π’ 18. Output of the code:
int x = 10, y = 20;
if (x > y) print A
else if (x == y) print B
else print C
β Answer: C
π’ 19. Which algorithm uses Divide and Conquer technique?
β Answer: Quick Sort
π’ 20. Which sorting algorithm is comparison-based and uses heap data structure?
β Answer: Heap Sort
π’ 21. C pointer example output:
int a = 5;
int *p = &a;
int **q = &p;
printf("%d", **q);
β Answer: 5
π’ 22. Can any class access public data members of another class in C++?
β Answer: Yes
π’ 23. Johnsonβs Algorithm is used to:
β Answer: Find shortest paths between all pairs of vertices (no negative cycles)
π’ 24. What does ROLLBACK do in SQL?
β Answer: Reverts all changes in current transaction
π’ 25. Which firewall tracks connection states?
β Answer: Stateful Firewall
π’ 26. Destructor properties:
β Answer: Automatically called, used for cleanup
π’ 27. Can a destructor throw an exception?
β Answer: Yes, but not a good practice
π’ 28. Which is NOT a data pre-processing step?
β Answer: Model Deployment
π’ 29. Properties of Structure (struct) β which is correct?
β Answer: Members may have different data types & each member has separate memory
π’ 30. Lazy loading is based on:
β Answer: Timestamp / Demand-based loading
π’ 31. Which UNIX command is used to find differences between two files?
β Answer: diff
π’ 32. A switch uses which protocol to prevent loops?
β Answer: STP (Spanning Tree Protocol)
π’ 33. Shell condition:
if [ -f file ] && [ -s file ]
When is "ok" printed?
β Answer: Only when file exists AND is non-empty
π’ 34. Function to find number of rows and columns in R?
β Answer: dim()
π’ 35. Does a spanning tree work on a disconnected graph?
β Answer: No, only on connected graphs
π’ 36. Minimum Ethernet frame size (header + trailer)?
β Answer: 64 bytes
π’ 37. Which is NOT a function of Python re module?
β Answer: suball()
π’ 38. Python list β output?
val = [1,2,3]
val.append([4,5])
print(len(val))
β Answer: 4
π’ 39. malloc() is used for dynamic memory allocation but:
β Answer: Does NOT initialize memory (garbage value stored)
π’ 40.
β€9
Infinite looping in networking is controlled by:
β Answer: TTL (Time To Live)
π’ 41. Command to clear terminal screen in shell:
β Answer: clear
π’ 42. Which statements are TRUE for Second Normal Form (2NF)?
1οΈβ£ Must be in 1NF
2οΈβ£ No partial dependency
3οΈβ£ Must be in BCNF
β Answer: 1 and 2 only
π’ 43. SQL query to find 2nd highest salary from emp table:
SELECT MAX(salary) FROM emp WHERE salary < (SELECT MAX(salary) FROM emp);
π’ 44. Python list shows mutability because:
[1,2,3].append([4,5])
β Answer: List is mutable (length becomes 4)
π’ 45. In Python slicing list[start:end:step], which parameter is optional?
β Answer: step
π’ 46. C pointer double dereference example:
int a = 5; int *p = &a; int q = &p; printf("%d", q);
β Answer: 5
π’ 47. Infinite looping ko control kaun karta hai?
β Answer: TTL (Time To Live)
π’ 48. Python list mutability check:
[1,2,3].append([4,5])
β Answer: List is mutable (length becomes 4)
π’ 49. In a B-Tree of order m, what is the minimum number of keys in a non-root (internal) node?
β Answer: βm / 2β β 1 keys
π’ 50. What is stored in the leaf nodes of a B+ Tree?
β Answer: Actual data records or data pointers
β Answer: TTL (Time To Live)
π’ 41. Command to clear terminal screen in shell:
β Answer: clear
π’ 42. Which statements are TRUE for Second Normal Form (2NF)?
1οΈβ£ Must be in 1NF
2οΈβ£ No partial dependency
3οΈβ£ Must be in BCNF
β Answer: 1 and 2 only
π’ 43. SQL query to find 2nd highest salary from emp table:
SELECT MAX(salary) FROM emp WHERE salary < (SELECT MAX(salary) FROM emp);
π’ 44. Python list shows mutability because:
[1,2,3].append([4,5])
β Answer: List is mutable (length becomes 4)
π’ 45. In Python slicing list[start:end:step], which parameter is optional?
β Answer: step
π’ 46. C pointer double dereference example:
int a = 5; int *p = &a; int q = &p; printf("%d", q);
β Answer: 5
π’ 47. Infinite looping ko control kaun karta hai?
β Answer: TTL (Time To Live)
π’ 48. Python list mutability check:
[1,2,3].append([4,5])
β Answer: List is mutable (length becomes 4)
π’ 49. In a B-Tree of order m, what is the minimum number of keys in a non-root (internal) node?
β Answer: βm / 2β β 1 keys
π’ 50. What is stored in the leaf nodes of a B+ Tree?
β Answer: Actual data records or data pointers
Hi there, You are invited to a Zoom meeting. When: Jan 13, 2026 07:00 PM India Register in advance for this meeting: https://zoom.us/meeting/register/c-JkaYASR9mbDi8jSaN5MQ After registering, you will receive a confirmation email containing information about joining the meeting. Meeting Registration - Zoom Welcome! You are invited to join a meeting: Interview Guidance Session. After registering, you will receive a confirmation email about joining the meeting.
β€5
SEBI Grade A (General) Phase 2 made simple! π
Download the complete study plan PDF and prepare with clarity, confidence & strategy.
Download Now: https://www.ixambee.com/live-class-session-pdfs/sebi-gr-a-2025-general-phase-2--new-batch-12-jan
Download the complete study plan PDF and prepare with clarity, confidence & strategy.
Download Now: https://www.ixambee.com/live-class-session-pdfs/sebi-gr-a-2025-general-phase-2--new-batch-12-jan
β€1
Target RBI Grade B 2025 pinned Β«https://youtu.be/jXQe7-8JAyY?si=9vHlpQZGZdpSDYBnΒ»
January 14th unites India through diverse harvest festivals. Whether Makar Sankranti, Pongal, or Lohri, different names celebrate one emotion: gratitude to nature, farmers, and the soil. One Sun, Same India.
#MakarSankranti2026 #Pongal #Lohri #Uttarayan #MaghBihu #UnityInDiversity #HarvestFestival #IndianCulture #IncredibleIndia
#MakarSankranti2026 #Pongal #Lohri #Uttarayan #MaghBihu #UnityInDiversity #HarvestFestival #IndianCulture #IncredibleIndia
β€20
Target RBI Grade B 2025 pinned Β«https://www.linkedin.com/posts/susheelragade_uco-ucobank-ca-activity-7417076053996765185-ypWz?utm_source=share&utm_medium=member_desktop&rcm=ACoAAA0cRGcBgyZo4eq7qKcj086dJfeVWnKfAcUΒ»
Because interviews are won with strategy, clarity, and expert guidance. IFSC Grade A Interview Programme β Enroll Today!
Book your Slot: https://www.ixambee.com/form/Ltq7mB1qDR8041PD
IFSCA interview course - https://www.ixambee.com/online-course/ifsca-grade-a-interview
Book your Slot: https://www.ixambee.com/form/Ltq7mB1qDR8041PD
IFSCA interview course - https://www.ixambee.com/online-course/ifsca-grade-a-interview
Check Your RBI Course Now -
Comprehensive -https://www.ixambee.com/online-course/rbi-grade-b
Exclusive -https://www.ixambee.com/online-course/rbi-grade-b-exclusive
Comprehensive -https://www.ixambee.com/online-course/rbi-grade-b
Exclusive -https://www.ixambee.com/online-course/rbi-grade-b-exclusive