Target RBI Grade B 2025
41.6K subscribers
16K photos
161 videos
977 files
6.51K links
Updates about RBI Grade B, RBI Assistant and SEBI Grade A, NABARD Grade A, Grade B and Development Assistant Exams and latest news regarding important Economy, Banking and Finance developments.
Managed by Ex.Manager, Reserve Bank of India.
Download Telegram
πŸ™23πŸ‘5❀2
🌟 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
❀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
❀2
Target RBI Grade B 2025 pinned Β«https://youtu.be/jXQe7-8JAyYΒ»
βœ… 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.
❀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
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
❀1
πŸ‘5
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
❀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Β»
πŸ™9πŸ’―2
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