Upload Button Icon Add office photos

Filter interviews by

Tripura Gramin Bank Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

QA Functional Interview Questions & Answers

Sberbank Branch in India user image Anonymous

posted on 3 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The coding test comprised 10 multiple-choice questions covering topics such as Testing Techniques including Equivalence Partitioning, Boundary Value Analysis, Decision Tables, State Transition, and SQL.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Given two tables, subscribers and subscriptions, how can one find the users who have active subscriptions between a specified start date and end date?
  • Q2. What are at least five bugs that you can identify on a sample test application's login page?
Round 3 - Technical 

(4 Questions)

  • Q1. What process improvements did you implement as a Senior Software QA Engineer in your previous two organizations?
  • Q2. There are 10 bugs but not enough time to fix all of them before release. How would you help the developer choose what to fix.
  • Q3. How would you approach a situation where a developer rejects a bug report, categorizing it as an enhancement?
  • Q4. How would you handle a situation where you do not have sufficient time to address all the test scenarios?

Banking Officer CASA Interview Questions & Answers

AU Small Finance Bank user image Anonymous

posted on 10 Feb 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(5 Questions)

  • Q1. In This bank are no lead available branch manager are the fool are allowes tlacking about business
  • Q2. Claster is mad don’t join this company
  • Q3. Bad tipe of question how many girl friends
  • Q4. How many female friends I have
  • Q5. How much time I break up
Round 2 - Group Discussion 

Bad atmosphere and the bad behaviour of the person of the bank

Interview Preparation Tips

Interview preparation tips for other job seekers - Branch manager very Bad Behaviour don’t enroll the AU Small financial Bank
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Hr giving training then ur work easily that all
Round 2 - One-on-one 

(1 Question)

  • Q1. This not play ground this is only business
Round 3 - One-on-one 

(1 Question)

  • Q1. Nothing only training then ur talent for field explain the product for customer

Interview Preparation Tips

Interview preparation tips for other job seekers - This bank good training and good hr management any time response. ..
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 coding que easy,med and hard

Round 2 - Technical 

(2 Questions)

  • Q1. Os related que What is kernel , OS types ,what happens after booting computr ,etc
  • Q2. Creat a array and print all elements , which database used for pdf storing sql or nosql
Round 3 - Technical 

(2 Questions)

  • Q1. OOps related que abstraction , inheritance , code it
  • Q2. Middel element of linked list
Round 4 - HR 

(2 Questions)

  • Q1. What challenges u faced in engineering?
  • Q2. Situational based questions
Round 5 - HR 

(2 Questions)

  • Q1. Why u choose to work deustch bank ?
  • Q2. Project related quw

Chapter lead - React Interview Questions & Answers

Standard Chartered user image Anonymous

posted on 2 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 6 interview rounds.

Round 1 - VBA 

(1 Question)

  • Q1. Behavioral assessment
Round 2 - Coding Test 

Logical, react, SQL related questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Interviewed by Business Head. Mostly behavioral questions and some past experience related
Round 4 - One-on-one 

(1 Question)

  • Q1. Interview by VP. Frontend general technical questions
Round 5 - One-on-one 

(1 Question)

  • Q1. Interviewed by Director. Competency based Leadership interview
Round 6 - HR 

(2 Questions)

  • Q1. Yet to recieve the final status whether selected or rejected. HR asked payslip and other docs and shared the same.
  • Q2. HRs are very friendly and quickly respond to your queries.

Interview Preparation Tips

Topics to prepare for Standard Chartered Chapter lead - React interview:
  • Cultural
  • Conflict Management
  • Technical Skills
  • Leadership Skills
  • Capacity Building
Interview preparation tips for other job seekers - For chapter lead, they mainly focused on Leadership and cultural fit.
Be bold and share your response based on your previous experiences. The final competency based leadership round will be tough even if you have the right skills and experiences. Keep on practicing all leadership related questions like conflict management, capacity management, decision making etc.

I liked the interview process and the way it was organized. Had a wonderful experience.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Discussed about my personal discussion and my overall experience
  • Q2. Disussion about product knowledge
  • Q3. Discussed about why didn't have team handling Experience?
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is current CTC?
  • Q2. What is the Expectation CTC?

Interview Preparation Tips

Interview preparation tips for other job seekers - Reference by My friend......
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via campus placement at K J Somaiya College of Engineering, Mumbai and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

They had given 10 MCQs questions based on OOPs(Java), 2 MCQs on SQL, 1 SQL Query to run and 1 DSA question to code based on Strings, so overall 14 question. Difficulty level was easy to Medium.

Round 2 - One-on-one 

(7 Questions)

  • Q1. Explain the time complexity of different sorting algorithms.
  • Ans. 

    Sorting algorithms have different time complexities based on their implementation and efficiency.

    • Bubble Sort: O(n^2) - compares adjacent elements and swaps them if they are in the wrong order.

    • Merge Sort: O(n log n) - divides the array into two halves, sorts them, and then merges them.

    • Quick Sort: O(n log n) - picks a pivot element and partitions the array around the pivot.

    • Heap Sort: O(n log n) - builds a max heap and re...

  • Answered by AI
  • Q2. Usage of Hashmaps and Dictionaries
  • Ans. 

    Hashmaps and dictionaries are data structures used to store key-value pairs for efficient retrieval and storage.

    • Hashmaps and dictionaries are commonly used in programming to store and retrieve data based on a unique key.

    • They offer fast lookup times, typically O(1) on average, making them ideal for scenarios where quick access to data is required.

    • Examples of using hashmaps include storing user information with a unique ...

  • Answered by AI
  • Q3. Explain 4 pillars of OOPs (Abstraction, Encapsulation, Inheritance and polymorphism)
  • Ans. 

    OOPs pillars are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hides complex implementation details and only shows necessary features. Example: Car dashboard displaying speed without showing internal engine details.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class in Java encapsulates data members and member functions.

    • Inheritance: Allows a new ...

  • Answered by AI
  • Q4. Explain JOINS(Inner join, LEFT Join etc)
  • Ans. 

    JOINS are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • LEFT Join: Returns all rows from the left table, and the matched rows from the right table.

    • RIGHT Join: Returns all rows from the right table, and the matched rows from the left table.

    • FULL Join: Returns rows when there is a match in one of the table

  • Answered by AI
  • Q5. Why Barclays? What do you think we do?
  • Ans. 

    Barclays is a global financial services company with a focus on innovation and technology.

    • Barclays is a leading global bank with a strong presence in the financial services industry.

    • Barclays is known for its commitment to innovation and technology in the financial sector.

    • Barclays offers a wide range of services including banking, investment management, and wealth management.

    • Barclays has a strong reputation for providin...

  • Answered by AI
  • Q6. How do you manage stress and prepare yourself to work under tight deadlines? Can you describe a situation from the past where you faced a similar challenge and how you handled it?
  • Ans. 

    I manage stress by prioritizing tasks, breaking them down into smaller steps, and seeking help when needed.

    • Prioritize tasks based on deadlines and importance

    • Break down tasks into smaller, manageable steps

    • Seek help from team members or mentors when feeling overwhelmed

    • Practice time management and set realistic goals

  • Answered by AI
  • Q7. Asked a few questions on the projects I mentioned in my resume.

Interview Preparation Tips

Topics to prepare for Barclays Software Engineer Intern interview:
  • OOPS
  • Java
  • SQL
  • Database Management
  • DSA
  • Arrays
  • Strings
  • Stacks
  • Sorting algorithms

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Trapping rain water and median of two sorted array

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and dbms questions?
  • Q2. Code question in Array and string?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is a telnet?
  • Ans. 

    Telnet is a network protocol used to access and manage devices remotely over a network.

    • Telnet allows users to connect to a remote device or server using a command-line interface.

    • It is commonly used for troubleshooting network issues, configuring devices, and accessing remote servers.

    • Telnet operates on port 23 and transmits data in plain text, making it less secure compared to SSH.

    • Example: telnet 192.168.1.1

  • Answered by AI
  • Q2. What is a SFTP port number?
  • Ans. 

    SFTP port number is used for secure file transfer over SSH protocol.

    • SFTP port number is typically 22.

    • It is used for secure file transfer over SSH protocol.

    • SFTP stands for Secure File Transfer Protocol.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good opportunity & career growth.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Usual aptitude test you would expect from a bank

Round 2 - Video Call 

(2 Questions)

  • Q1. Why mizho and why the department specifically
  • Q2. Talk about a market news
  • Ans. 

    The recent surge in Tesla's stock price due to strong quarterly earnings report

    • Tesla's stock price increased by 10% after reporting better-than-expected earnings

    • Investors were impressed by Tesla's profitability and strong delivery numbers

    • Analysts raised their price targets for Tesla following the earnings report

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up on market news as they look for people with market sense

Tell us how to improve this page.

Interview Questions from Similar Companies

Deutsche Bank Interview Questions
3.9
 • 366 Interviews
Barclays Interview Questions
3.8
 • 276 Interviews
Bank of America Interview Questions
4.3
 • 235 Interviews
NatWest Group Interview Questions
4.0
 • 200 Interviews
View all

Tripura Gramin Bank Reviews and Ratings

based on 12 reviews

3.9/5

Rating in categories

2.0

Skill development

3.7

Work-life balance

3.1

Salary

3.6

Job security

3.3

Company culture

2.5

Promotions

2.6

Work satisfaction

Explore 12 Reviews and Ratings
Assistant Manager
9 salaries
unlock blur

₹8 L/yr - ₹13.8 L/yr

Senior Manager
7 salaries
unlock blur

₹13 L/yr - ₹20 L/yr

Manager
4 salaries
unlock blur

₹8.1 L/yr - ₹12 L/yr

Office Assistant
4 salaries
unlock blur

₹5.5 L/yr - ₹8.5 L/yr

Senior Branch Manager
3 salaries
unlock blur

₹14 L/yr - ₹16 L/yr

Explore more salaries
Compare Tripura Gramin Bank with

Uttar Bihar Gramin Bank

3.5
Compare

Purvanchal Bank

1.7
Compare

Madhya Bihar Gramin Bank

4.9
Compare

Baroda Gujarat Gramin Bank

2.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview