Upload Button Icon Add office photos

Filter interviews by

Expleo Group Plsql Developer Interview Questions and Answers

Updated 25 Apr 2023

Expleo Group Plsql Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Difference between sql and plsql
  • Ans. 

    SQL is used to manage relational databases while PL/SQL is used to create procedures, functions, and triggers.

    • SQL is used to retrieve and manipulate data in a database.

    • PL/SQL is used to create stored procedures, functions, and triggers.

    • SQL is a declarative language while PL/SQL is a procedural language.

    • SQL is used to query data while PL/SQL is used to write code that can be executed.

    • SQL is used to create and modify tab...

  • Answered by AI
  • Q2. Difference between drop and truncate
  • Ans. 

    Drop deletes the table and its structure while truncate deletes all the data in the table.

    • Drop is a DDL command while truncate is a DML command.

    • Drop cannot be rolled back while truncate can be rolled back using the undo tablespace.

    • Drop is slower than truncate as it deletes the table structure while truncate only deletes the data.

    • Drop can be used to delete views, sequences, and other database objects while truncate can ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ntg

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. They have only one phone interview
  • Q2. They asking about full sql and plsql

Interview Preparation Tips

Round: Resume Shortlist
Experience: Detailed description of explaination full topics

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. CREATE A FUNCTION BASED ONLOGIC SHARED
  • Ans. 

    Create a function based on shared logic

    • Identify common logic that can be reused in multiple functions

    • Create a separate function to encapsulate the shared logic

    • Call the shared function from other functions where the logic is needed

  • Answered by AI
  • Q2. FOR AN ENTITY GIVE DTAILS OF PREVOUS AND NEXT DATE FOR PARTICULAR DEPATMENT

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Procedure, function, bulk collect,

Interview Preparation Tips

Interview preparation tips for other job seekers - We have to be confidence while answering.they are checking ur ability
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Plsql and Oracle SQL
Round 3 - HR 

(1 Question)

  • Q1. Discussion for salary
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Factorial of a number
  • Ans. 

    Factorial of a number is the product of all positive integers up to that number.

    • To calculate factorial of a number, multiply all positive integers up to that number.

    • Factorial of 0 is 1.

    • Example: Factorial of 5 is 5*4*3*2*1 = 120.

  • Answered by AI
  • Q2. Sql queries including 2nd highest salary and table joins
Round 2 - Technical 

(2 Questions)

  • Q1. Sql question and table joins
  • Q2. Modelling of schema
  • Ans. 

    Modelling of schema involves designing the structure of a database to organize and represent data.

    • Identify entities and their relationships

    • Define attributes for each entity

    • Establish primary and foreign keys

    • Normalize the schema to reduce redundancy

    • Consider performance and scalability

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Some sql queries
1 DSA prime no

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Sql loader questions - Give command
  • Q2. Difference in procedure and function
  • Ans. 

    Procedure is used to perform an action, while function returns a value.

    • Procedure does not return a value, while function does

    • Functions can be used in SQL queries, procedures cannot

    • Functions can be called from SQL statements, procedures cannot

  • Answered by AI
  • Q3. What is init in performance tuning?
  • Ans. 

    In performance tuning, init refers to the initialization parameter file used by Oracle Database to configure various settings.

    • init is a text-based configuration file that contains parameters to optimize the performance of Oracle Database.

    • It is used to set parameters such as memory allocation, parallel processing, and resource utilization.

    • By tuning the init file, developers can improve the overall performance of the dat...

  • Answered by AI
  • Q4. Exception handling - Named and unnamed. Give exceptions names.
  • Ans. 

    Named and unnamed exceptions in PL/SQL with examples

    • Named exceptions are user-defined exceptions with specific names like 'custom_exception'

    • Unnamed exceptions are predefined exceptions like 'NO_DATA_FOUND' or 'TOO_MANY_ROWS'

    • Named exceptions can be raised using RAISE statement with the exception name

    • Unnamed exceptions are raised automatically by the system in case of errors

    • Example of named exception: DECLARE custom_exce...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just know the basics. But Infosys keeps people waiting in queue for months before giving out the results.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Question based on PLSQL
  • Q2. What is Execution Plan, Query Optimization
  • Ans. 

    Execution plan is a roadmap created by the database optimizer to determine the most efficient way to execute a query.

    • Execution plan shows the steps the database will take to execute a query.

    • Query optimization involves finding the most efficient way to execute a query.

    • Optimization techniques include index usage, join methods, and access paths.

    • Understanding execution plans helps in tuning queries for better performance.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What was temp variable
  • Ans. 

    A temporary variable used to store data during program execution.

    • Temp variables are used to hold data temporarily during program execution.

    • They are typically used in loops or conditional statements.

    • Once the program execution is complete, the temp variable is no longer needed.

    • Example: int temp = 0; for(int i=0; i<10; i++) { temp += i; }

    • In this example, the temp variable is used to store the sum of the numbers 0-9.

  • Answered by AI
  • Q2. Breif about previous company
Round 3 - HR 

(1 Question)

  • Q1. Document verification and onboarding

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql and pl sql , learn all sql concepts, pl sql , rdms software
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Oct 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical question related about based on project and domain knowledge
Round 3 - HR 

(1 Question)

  • Q1. Asked about flexibility and discussion with salary

Interview Preparation Tips

Interview preparation tips for other job seekers - I had selected still I didn’t receive the offer letter

Expleo Group Interview FAQs

How many rounds are there in Expleo Group Plsql Developer interview?
Expleo Group interview process usually has 2 rounds. The most common rounds in the Expleo Group interview process are Resume Shortlist and Technical.
How to prepare for Expleo Group Plsql Developer 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 Expleo Group. The most common topics and skills that interviewers at Expleo Group expect are Application Support, DNS, Firewall, JBoss and Middleware.
What are the top questions asked in Expleo Group Plsql Developer interview?

Some of the top questions asked at the Expleo Group Plsql Developer interview -

  1. Difference between sql and pl...read more
  2. Difference between drop and trunc...read more

Tell us how to improve this page.

Expleo Group Plsql Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Software Engineer
636 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
426 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
268 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
172 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Associate
138 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Expleo Group with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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