Upload Button Icon Add office photos

Genpact

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Genpact Oracle Database Administrator Interview Questions and Answers

Updated 12 Jan 2022

Genpact Oracle Database Administrator Interview Experiences

2 interviews found

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is ckpt
  • Ans. 

    CKPT stands for Checkpoint. It is a background process in Oracle database that ensures data integrity and recovery.

    • CKPT is responsible for writing dirty buffers from the database buffer cache to the data files

    • It updates the control file and data file headers to record the most recent checkpoint

    • CKPT is triggered by various events like log switch, manual checkpoint, or when the dirty buffers reach a certain threshold

    • It h...

  • Answered by AI
  • Q2. What is redolog
  • Ans. 

    Redo log is a set of files that records all changes made to a database and is used for recovery and replication.

    • Redo log is a crucial component of Oracle database architecture.

    • It consists of two or more pre-allocated files that store all changes made to the database.

    • Redo log files are used for recovery in case of a system failure or crash.

    • They are also used for replication to maintain consistency across multiple databa...

  • Answered by AI
  • Q3. Dataguard DR

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well it's easy to clear

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Oct 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. It was very interesting round. They tested my technical knowledge in SQL. And they got convinced with my answers and got promoted for hr round.
  • Q2. How to select a particular row from a table.
  • Ans. 

    To select a particular row from a table, use the SELECT statement with a WHERE clause specifying the desired criteria.

    • Use the SELECT statement to query the table

    • Add a WHERE clause to specify the criteria for selecting the row

    • The WHERE clause can include conditions based on column values

    • Example: SELECT * FROM table_name WHERE column_name = 'desired_value'

  • Answered by AI
  • Q3. This round was very easy for me and spoke very comfortably with the interviewer. He got pleased with my answers.
  • Q4. Why did your father retire voluntarily?
  • Ans. 

    My father retired voluntarily to spend more time with his family and pursue his hobbies.

    • He wanted to focus on spending quality time with his family after years of working

    • He had interests and hobbies he wanted to pursue in his retirement

    • He felt it was the right time in his life to step back from work and enjoy his free time

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Sorry I don't remember. Might be aptitude

General Tips: It was a pleasant and memorable experience for me with Genpact. They were very cool. If the interviewer talks cool, we can also be comfortable with them and answer the questions in a better way.
Skills: Communication
Duration: 1-4 weeks

Skills evaluated in this interview

Oracle Database Administrator Interview Questions Asked at Other Companies

asked in Wistron
Q1. How can you recover deleted datafiles if backups are not availabl ... read more
asked in Wipro
Q2. 19c upgradation steps Challanges faced during upgradation. Datagu ... read more
asked in Accenture
Q3. How would you monitor database performance with OEM AWR reports?
Q4. How oracle architecture is work. How to check if user password ex ... read more
asked in Genpact
Q5. How do you select a particular row from a table?

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. In 5 programs without effecting one by one how can you debug a particular program and how can you know tha program is calling in debug
  • Ans. 

    To debug a particular program without affecting others, use breakpoints and step through the code.

    • Set a breakpoint in the program you want to debug

    • Step through the code using a debugger to identify the issue

    • Use logging statements to track the flow of the program

    • Check the call stack to see which functions are being called

    • Use conditional breakpoints to stop the program at specific points

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What are the differences between C and C++?
  • Q2. Explain the scenarios where If and Switch Case statements are used.
  • Ans. 

    If and Switch Case statements are used for conditional branching in programming.

    • If statements are used for simple conditional branching.

    • Switch Case statements are used for multiple conditional branching.

    • If statements are more flexible than Switch Case statements.

    • Switch Case statements are more efficient than If statements for large number of conditions.

    • If statements can be nested, but Switch Case statements cannot.

    • Exam...

  • Answered by AI
  • Q3. Do you think algorithms and pseudocodes still play a role in the world of IT Services?
  • Ans. 

    Yes, algorithms and pseudocodes are still important in IT Services.

    • Algorithms are used in various fields of IT such as machine learning, data analysis, and cryptography.

    • Pseudocodes are used to plan and design algorithms before coding them.

    • Understanding algorithms and pseudocodes is essential for software engineers to write efficient and optimized code.

    • Examples of algorithms include sorting algorithms, search algorithms...

  • Answered by AI
  • Q4. Are you comfortable using Command Line Interfaces (CLIs) or Integrated Development Environments (IDEs) as part of your daily tasks?
  • Ans. 

    Yes, I am comfortable using both CLIs and IDEs for my daily tasks.

    • I have experience using various CLIs such as Git Bash, Windows Command Prompt, and Terminal on macOS.

    • I am proficient in using IDEs such as Visual Studio Code, Eclipse, and IntelliJ IDEA.

    • I understand the benefits and drawbacks of both CLIs and IDEs and can choose the appropriate tool for the task at hand.

  • Answered by AI
  • Q5. Are you okay to learn front end and back end technologies to ensure you are a complete developer in the longer run? Would you be able to learn the concepts if a timeline is given?? If yes, explain your lea...

Interview Preparation Tips

Interview preparation tips for other job seekers - The hiring team expects a structured response in your answers. Be it a fresher or an experienced professional, the answers must be represented with examples to ensure you display your expertise with an application in your mind.

Skills evaluated in this interview

What people are saying about Genpact

View All
a digital marketer
21m
Do you think they're gonna work on employees' work-life balance, OR for just publicity?
Infosys, Infosys, TCS, Genpact Revise Workplace Policies Infosys is sending a warning mail, if an employee overshoots the daily limit while working remotely, the system triggers a notification Genpact introduced a new policy to log in before 11 am But will these companies really change, or is it just a show to mask their issues?
FeedCard Image
Got a question about Genpact?
Ask anonymously on communities.

I applied via Campus Placement and was interviewed in Nov 2020. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are oops concept
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions that manipulate the data

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details and showing only functionality

  • Answered by AI
  • Q2. What is storage classes in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables have a lifetime throughout the program and are initialized only once.

    • Extern variables are declared outside any function and can be a...

  • Answered by AI
  • Q3. Describe about your final year project and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence,and positive and answer your question confidently.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Explain the data structures like linked list, dfs and bfs.
  • Ans. 

    Linked list is a linear data structure. DFS and BFS are graph traversal algorithms.

    • Linked list is a collection of nodes where each node points to the next node.

    • DFS (Depth First Search) is a traversal algorithm that explores as far as possible along each branch before backtracking.

    • BFS (Breadth First Search) is a traversal algorithm that explores all the vertices of a graph in breadth-first order.

    • Example of linked list: ...

  • Answered by AI
  • Q2. Optimize the given program from O(n2) to O(log n)
  • Ans. 

    Optimize O(n2) program to O(log n)

    • Use binary search instead of linear search

    • Divide and conquer approach can be used

    • Implement efficient data structures like heap, AVL tree, etc.

    • Reduce unnecessary iterations and comparisons

    • Use memoization to avoid redundant calculations

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data srructures

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident revise data structures ,
Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. Related to technology. There are two rounds
  • Q2. Logical analysis of the problem

I applied via Recruitment Consultant and was interviewed in May 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Asked about current projects and concepts on oops, dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. Mostly they check the candidates approach towards problem solving in different scenarios.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on programing language

Genpact Interview FAQs

How to prepare for Genpact Oracle Database Administrator interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Genpact. The most common topics and skills that interviewers at Genpact expect are Oracle DBA, Oracle RAC, Patching, RAC and RMAN.
What are the top questions asked in Genpact Oracle Database Administrator interview?

Some of the top questions asked at the Genpact Oracle Database Administrator interview -

  1. How to select a particular row from a tab...read more
  2. What is c...read more
  3. What is redo...read more

Tell us how to improve this page.

Genpact Oracle Database Administrator Salary
based on 90 salaries
₹3.3 L/yr - ₹14 L/yr
At par with the average Oracle Database Administrator Salary in India
View more details

Genpact Oracle Database Administrator Reviews and Ratings

based on 7 reviews

4.8/5

Rating in categories

4.7

Skill development

4.5

Work-life balance

4.2

Salary

4.7

Job security

4.5

Company culture

4.2

Promotions

4.5

Work satisfaction

Explore 7 Reviews and Ratings
Process Developer
38k salaries
unlock blur

₹2.4 L/yr - ₹7.2 L/yr

Process Associate
28.9k salaries
unlock blur

₹1.8 L/yr - ₹4.8 L/yr

Management Trainee
22.2k salaries
unlock blur

₹4.2 L/yr - ₹8.6 L/yr

Assistant Manager
21.6k salaries
unlock blur

₹6 L/yr - ₹13.4 L/yr

Manager
8.5k salaries
unlock blur

₹11 L/yr - ₹19.1 L/yr

Explore more salaries
Compare Genpact with

Accenture

3.7
Compare

Capgemini

3.7
Compare

TCS

3.6
Compare

Cognizant

3.7
Compare
write
Share an Interview