Premium Employer

i

This company page is being actively managed by Clover Infotech Team. If you also belong to the team, you can get access from here

Clover Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clover Infotech Plsql Developer Interview Questions and Answers for Experienced

Updated 9 Jan 2025

Clover Infotech Plsql Developer Interview Experiences for Experienced

1 interview found

Plsql Developer Interview Questions & Answers

user image Nayan Parmar

posted on 7 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. All basics of Oracle SQL, Oracle PLSQL and scenario based questions
Round 2 - Client Interview 

(1 Question)

  • Q1. ICICI bank client - all basics of Oracle SQL and plsql and some scenario based questions like joins based, case statement based, set operator based, aggregate function and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clear concept of basic. If you do not know the practical experience then simply answer the concept and explain it that's it . They want concept clear with confidence.

Plsql Developer Jobs at Clover Infotech

View all

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. How do you optimize Stored procedure
  • Ans. 

    Optimizing stored procedures involves using proper indexing, reducing unnecessary loops, and minimizing database calls.

    • Use proper indexing on columns used in WHERE clauses to improve query performance

    • Avoid using cursors and loops whenever possible, as they can be inefficient

    • Minimize the number of database calls by combining multiple queries into a single query or using temporary tables

    • Consider using bulk processing tec...

  • Answered by AI
  • Q2. How do you optimize SQL query
  • Ans. 

    Optimizing SQL queries involves using indexes, minimizing data retrieval, avoiding unnecessary joins, and optimizing query structure.

    • Use indexes on columns frequently used in WHERE clauses

    • Minimize data retrieval by selecting only necessary columns

    • Avoid unnecessary joins by using EXISTS or IN clauses instead

    • Optimize query structure by using appropriate join types and conditions

  • Answered by AI
  • Q3. What is use of returning clause
  • Ans. 

    Returning clause is used to return a value from a function or procedure in PL/SQL.

    • Used to return a single value from a function or procedure

    • Can be used to return multiple values using OUT parameters

    • Helps in passing values back to the calling program

  • Answered by AI
  • Q4. Disadvantages of triggers
  • Ans. 

    Triggers can lead to performance issues, complexity, and potential for unintended consequences.

    • Triggers can make code harder to debug and maintain

    • They can lead to cascading effects if not carefully implemented

    • Performance can be impacted if triggers are not optimized

    • Triggers can introduce dependencies between different parts of the codebase

  • Answered by AI

Skills evaluated in this interview

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of cursors
  • Ans. 

    Types of cursors include implicit, explicit, and parameterized cursors.

    • Implicit cursors are automatically created by Oracle when a SQL statement is executed.

    • Explicit cursors are defined by the programmer using the DECLARE, OPEN, FETCH, and CLOSE statements.

    • Parameterized cursors allow for dynamic SQL statements to be executed with different parameters.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare plsql topics well.

Skills evaluated in this interview

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
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.

Plsql Developer Interview Questions & Answers

Infosys user image Bvm Bharath Kumar

posted on 14 Oct 2023

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 

(2 Questions)

  • Q1. Dif between SQL n plsql
  • Ans. 

    SQL is a query language used to interact with databases, while PL/SQL is a procedural language extension for SQL.

    • SQL is used for querying and manipulating data in databases.

    • PL/SQL is used for writing procedural code like loops, conditions, and functions.

    • SQL statements are executed one at a time, while PL/SQL blocks can contain multiple statements.

    • PL/SQL can be used to create stored procedures, functions, and triggers i...

  • Answered by AI
  • Q2. Structure query language and extension version of sql
  • Ans. 

    SQL is a structured query language used to communicate with databases. SQL extensions add additional functionality to the language.

    • SQL is a standard language used to interact with databases

    • SQL extensions like PL/SQL add procedural programming capabilities to SQL

    • PL/SQL is an extension of SQL used in Oracle databases

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is a cursor. And its types
  • Ans. 

    A cursor is a database object used to retrieve data from a result set one row at a time.

    • Types of cursors: Implicit, Explicit, Ref, and Dynamic

    • Implicit cursor is used for single row queries

    • Explicit cursor is used for multi-row queries

    • Ref cursor is used to point to a cursor variable

    • Dynamic cursor is used to execute dynamic SQL statements

  • Answered by AI
  • Q2. Functions and procedures
  • Q3. Triggers and its types and syntax
  • Ans. 

    Explanation of triggers and their types in PL/SQL

    • Triggers are database objects that are automatically executed in response to certain events

    • Types of triggers include DML, DDL, and system triggers

    • Syntax for creating a trigger: CREATE [OR REPLACE] TRIGGER trigger_name {BEFORE|AFTER} {INSERT|UPDATE|DELETE} ON table_name [FOR EACH ROW] [WHEN condition] BEGIN ... END;

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What is SQL optimization. Normalization. Pragma usage
  • Ans. 

    SQL optimization, normalization, and pragma usage are important concepts in PL/SQL development.

    • SQL optimization involves improving the performance of SQL queries by analyzing and modifying the query structure, indexes, and data access patterns.

    • Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Pragma is a compiler directive that provides additional information ...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion, asked about having any other offer in hand

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up SQL queries and procedures, function, triggers

Skills evaluated in this interview

Round 1 - Technical 

(3 Questions)

  • Q1. SQL queries, joins, views, functions , advanced functions, exceptions.. Lot of Scenario based question
  • Q2. About resume and past experiences
  • Q3. Interview happened almost 1hr
Round 2 - HR 

(1 Question)

  • Q1. After 30 days.. Do u have any other offer in hand? How much they offered

Interview Preparation Tips

Interview preparation tips for other job seekers - After 30 days after n number of follow up mail
Hr discussion happened. Which was surprising one. The package they offfered is very less for an experienced candidate .. It doesn't even have 20%hike from current salary.

Clover Infotech Interview FAQs

How many rounds are there in Clover Infotech Plsql Developer interview for experienced candidates?
Clover Infotech interview process for experienced candidates usually has 2 rounds. The most common rounds in the Clover Infotech interview process for experienced candidates are Technical and Client Interview.
How to prepare for Clover Infotech Plsql Developer interview for experienced candidates?
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 Clover Infotech. The most common topics and skills that interviewers at Clover Infotech expect are PLSQL, Oracle, SQL, SQL Development and Triggers.
What are the top questions asked in Clover Infotech Plsql Developer interview for experienced candidates?

Some of the top questions asked at the Clover Infotech Plsql Developer interview for experienced candidates -

  1. ICICI bank client - all basics of Oracle SQL and plsql and some scenario based ...read more
  2. All basics of Oracle SQL, Oracle PLSQL and scenario based questi...read more
  3. cursor and Trigger , Mutating er...read more

Tell us how to improve this page.

Clover Infotech Plsql Developer Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more
Join Clover Infotech Digital Solutions for the New-Age Enterprise
Clover Infotech Plsql Developer Salary
based on 105 salaries
₹2.3 L/yr - ₹9 L/yr
26% less than the average Plsql Developer Salary in India
View more details

Clover Infotech Plsql Developer Reviews and Ratings

based on 11 reviews

3.5/5

Rating in categories

3.2

Skill development

2.9

Work-life balance

2.9

Salary

3.2

Job security

3.4

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 11 Reviews and Ratings
PL/SQL Developer

Mumbai

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
839 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Support Engineer
569 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
563 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Oracle Database Administrator
489 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Clover Infotech with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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