Upload Button Icon Add office photos

Filter interviews by

Agile Softech Plsql Developer Interview Questions, Process, and Tips

Updated 11 May 2018

Agile Softech Plsql Developer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Apr 2018. There were 5 interview rounds.

Interview Questionnaire 

15 Questions

  • Q1. 1.What is Trigger,procedure,cursor differentiate with example
  • Ans. 

    A trigger is a PL/SQL block that is automatically executed in response to a specific event. A procedure is a named PL/SQL block that performs a specific task. A cursor is a database object used to retrieve data from a result set.

    • A trigger is used to automatically execute a set of SQL statements when a specific event occurs, such as inserting, updating, or deleting data from a table.

    • A procedure is a reusable block of co...

  • Answered by AI
  • Q2. 2.how to recover the data(Tables) in oracle or how to export the tables in file
  • Ans. 

    To recover data in Oracle, you can use the flashback feature or export tables using the Data Pump utility.

    • To recover data using flashback, you can use the FLASHBACK TABLE statement to restore a table to a previous state.

    • To export tables, you can use the Data Pump utility with the EXPDP command to export tables to a file.

    • You can also use the SQL Developer tool to export tables as SQL insert statements or CSV files.

  • Answered by AI
  • Q3. 3.what is joins and its types what is the use and what is natural join with example
  • Ans. 

    Joins are used to combine rows from two or more tables based on related columns. There are different types of joins.

    • Types of joins: inner join, left join, right join, full outer join, cross join

    • Joins are used to retrieve data from multiple tables based on a related column

    • Natural join is a type of join that automatically matches columns with the same name in both tables

    • Example: SELECT * FROM employees NATURAL JOIN depar

  • Answered by AI
  • Q4. 4.Differentiate Foreign key,primary key and unique key
  • Ans. 

    Foreign key, primary key, and unique key are all constraints used in database tables to enforce data integrity.

    • Primary key is a column or a set of columns that uniquely identifies each row in a table.

    • Foreign key is a column or a set of columns in one table that refers to the primary key in another table.

    • Unique key ensures that the values in a column or a set of columns are unique across all the rows in a table.

  • Answered by AI
  • Q5. 5.6.Difference between delete,drop and truncate
  • Ans. 

    Delete, drop, and truncate are SQL commands used to remove data from a table, but they differ in their functionality.

    • DELETE is used to remove specific rows from a table based on a condition.

    • DROP is used to remove an entire table from the database.

    • TRUNCATE is used to remove all rows from a table, but keeps the structure intact.

    • DELETE and TRUNCATE can be rolled back, but DROP cannot.

    • DELETE triggers the delete trigger, wh

  • Answered by AI
  • Q6. 6.Display the 5th Highest Salary in Employee Table
  • Q7. 7.Display Top 5 salary
  • Ans. 

    The query to display the top 5 salaries in PL/SQL.

    • Use the SELECT statement to retrieve the salaries from the table.

    • Order the salaries in descending order using the ORDER BY clause.

    • Limit the result to the top 5 rows using the FETCH FIRST clause.

  • Answered by AI
  • Q8.  8.Write a command of copy the structure only not data of the table
  • Ans. 

    To copy the structure of a table without copying the data, you can use the CREATE TABLE AS SELECT statement.

    • Use the CREATE TABLE AS SELECT statement to create a new table with the same structure as the original table.

    • Specify the columns and their data types in the SELECT statement, but exclude the actual data from the original table.

    • Example: CREATE TABLE new_table AS SELECT * FROM original_table WHERE 1=0;

  • Answered by AI
  • Q9. 9.What is view and its type what is complex view with example
  • Ans. 

    A view is a virtual table created from one or more tables. It can be used to simplify complex queries and provide a customized view of data.

    • A view is a stored query that can be treated as a table

    • Types of views include simple views, complex views, and materialized views

    • A complex view is a view that involves multiple tables or subqueries

    • Complex views can be used to combine data from different tables or apply complex calc...

  • Answered by AI
  • Q10. 10.What is indexing what is the role of indexing in database
  • Ans. 

    Indexing is a technique used in databases to improve the performance of queries by creating a data structure that allows for faster data retrieval.

    • Indexing creates a separate data structure that contains a subset of the data in the database, organized in a way that allows for efficient searching and retrieval.

    • Indexes are created on one or more columns of a table and can be used to quickly locate data based on the value...

  • Answered by AI
  • Q11. 11.Difference between Procedure and Function
  • Ans. 

    Procedures and functions are both PL/SQL program units, but they have some differences.

    • Procedures do not return a value, while functions do.

    • Procedures can have OUT parameters to pass values back to the caller, while functions cannot.

    • Functions can be used in SQL queries, while procedures cannot.

    • Functions must return a value, while procedures do not have to.

    • Functions can be called directly in PL/SQL code, while procedure

  • Answered by AI
  • Q12. 12.Write a query to display employee records having same salary
  • Ans. 

    The query displays employee records with the same salary.

    • Use the GROUP BY clause to group the records by salary.

    • Use the HAVING clause to filter the groups with more than one employee.

    • Select the necessary columns to display the employee records.

  • Answered by AI
  • Q13. 13.How we can eliminate duplicates without using distinct command
  • Ans. 

    To eliminate duplicates without using the distinct command in PL/SQL, we can use the GROUP BY clause.

    • Use the GROUP BY clause to group the data by the columns that you want to eliminate duplicates from.

    • Select the columns you want to display in the result set.

    • Aggregate functions like COUNT, SUM, AVG, etc. can be used to perform calculations on the grouped data.

    • The GROUP BY clause ensures that only unique combinations of

  • Answered by AI
  • Q14. 14.Replace Only Third Character with *
  • Ans. 

    The PLSQL code snippet to replace only the third character with * in a given string.

    • Use the SUBSTR function to extract the first two characters of the string.

    • Concatenate the extracted characters with '*' and the remaining characters starting from the fourth position using the SUBSTR function.

    • Assign the modified string back to the original variable.

  • Answered by AI
  • Q15. Introduction Objective of Your Life Strength Weakness About Salary(Discuss About Your Expected Salary)

Interview Preparation Tips

Round: Test
Experience: Part 1-
Aptitude ,Reasoning & English Test
(Aptitude Question-15,Reasoning-15,English-10 )
Part 2-
Technical Questions(30)
Technology:C,C++,Data Structure,Database,Python,Java,Software Engineering
No Negative Marks
90 Mins For 60 Question (1 Marks For Each Question)

General Tips: Be Prepare For Interview and Don't Panic at that time.Give your answer clear and related to that question.
Skills: Communication, Body Language, Problem Solving, Leadership, Presentation Skills
Duration: <1 week
College Name: TEERTHANKER MAHAVEEER UNIVERSITY

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. RANK, WITH CLAUSE, PARTITION, DISTINCT, REF CURSOR
  • Q2. Procedure with Ref cursor AVG, EXISTS, write a block to find factorial
  • Ans. 

    Using PL/SQL to create a procedure with a ref cursor to find the average and factorial of a given number.

    • Create a procedure that takes in a number as input and returns the average of that number using a ref cursor.

    • Use the EXISTS function to check if a factorial exists for a given number.

    • Write a block of code to calculate the factorial of a number using a loop.

  • Answered by AI
  • Q3. Handle duplicate records with case statement
  • Ans. 

    Use a case statement to handle duplicate records in PL/SQL.

    • Use a case statement to check for duplicate records based on specific criteria.

    • Implement logic within the case statement to handle the duplicates appropriately.

    • Consider using a unique identifier or combination of columns to identify duplicates.

  • Answered by AI
  • Q4. Joins, DBMS_PROFILER

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Was asked to create a UI component keeping in mind scalability and reuseability.

Round 2 - Coding Test 

General discussion about resume and projects, and then some basic JS coding questions like implement throttling and memoization.

Round 3 - Behavioral 

(3 Questions)

  • Q1. Discussion about past experiences and projects
  • Q2. Why you want to leave current job.
  • Q3. Expectations from the role and company

Interview Preparation Tips

Topics to prepare for Razorpay Front end Developer interview:
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - Feedback from HR was very quick, all rounds were scheduled in quick succession. Although one point, HR did not confirm availability before scheduling the interviews. Also didn't get any feedback after getting rejected.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Opps concept in php
  • Ans. 

    OOPs concept in PHP refers to Object-Oriented Programming principles such as encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class)

    • Inheritance: Allows a class to inherit properties and methods from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the implementation

  • Answered by AI
  • Q2. Orm in laravel and explain
  • Ans. 

    ORM in Laravel is Eloquent, a powerful and expressive ORM that allows you to interact with your database using PHP syntax.

    • Eloquent is the ORM used in Laravel to interact with the database

    • It allows you to define relationships between database tables using Eloquent models

    • Eloquent provides methods for querying, inserting, updating, and deleting records in the database

    • Example: defining a User model in Laravel and using it

  • Answered by AI
  • Q3. Write SQL query for thirst highest salary from employees table
  • Ans. 

    SQL query to find the third highest salary from employees table.

    • Use the ORDER BY clause to sort salaries in descending order.

    • Use the LIMIT clause to retrieve the third highest salary.

    • Consider handling cases where there may be ties for the third highest salary.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare basic concepts very well

Skills evaluated in this interview

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

I applied via campus placement at Kalinga Institute of Industrial Technology, Khurda and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding round was there. Two coding questions were asked to solve in 1 hour. The difficulty was easy to medium.Leetcode questions of arrays and strings.

Round 2 - Technical 

(2 Questions)

  • Q1. It was an online tech interview. There were two panelists. One asked me about my projects and gave me one coding question to solve which was based on matrices. And i was supposed to explain the approach an...
  • Q2. After solving the question. In the same interview zoom meet HR asked me something about me and my family and thats it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do coding regularly
Be confident
Communicate well
And just relax before 2 hours of the interview....You are going to do awesome...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Technical MCQ questions on core computer science subjects were asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to find whether the given linked list has loop in it?
  • Q2. Explain osi model with example of browser.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. They have asked Backed related question for a ui role.
  • Q2. Mostly project related question
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Javascript object manipulation based coding question
  • Q2. React based verbal questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to medium questions

Round 2 - Hackathon 

(1 Question)

  • Q1. Create a software
  • Ans. 

    A software for managing inventory in a retail store

    • Create a user-friendly interface for adding, updating, and deleting products

    • Include features for tracking sales, restocking inventory, and generating reports

    • Implement barcode scanning functionality for quick product lookup

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Just stick to the basics

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Flatten and remove duplicates from an array
  • Ans. 

    Flatten and remove duplicates from an array of strings

    • Use the flat() method to flatten the array

    • Use the Set object to remove duplicates

    • Convert the Set back to an array using the spread operator

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ValueLabs Backend Developer interview:
  • Javascript
  • AWS
  • Node.Js

Skills evaluated in this interview

Agile Softech Interview FAQs

What are the top questions asked in Agile Softech Plsql Developer interview?

Some of the top questions asked at the Agile Softech Plsql Developer interview -

  1. 13.How we can eliminate duplicates without using distinct comm...read more
  2. 3.what is joins and its types what is the use and what is natural join with ex...read more
  3. 2.how to recover the data(Tables) in oracle or how to export the tables in f...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Agile Softech interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Nagarro Interview Questions
4.0
 • 753 Interviews
FIS Interview Questions
3.9
 • 464 Interviews
Optum Interview Questions
4.0
 • 405 Interviews
Dell Interview Questions
4.1
 • 384 Interviews
Quest Global Interview Questions
3.6
 • 285 Interviews
Qualcomm Interview Questions
3.8
 • 267 Interviews
NeoSOFT Interview Questions
4.0
 • 249 Interviews
Episource Interview Questions
3.8
 • 220 Interviews
FactSet Interview Questions
4.0
 • 201 Interviews
View all
Softwaretest Engineer
7 salaries
unlock blur

₹2.4 L/yr - ₹3 L/yr

Software Developer
6 salaries
unlock blur

₹0.9 L/yr - ₹4 L/yr

Software Engineer
4 salaries
unlock blur

₹1.2 L/yr - ₹20 L/yr

Java Developer
4 salaries
unlock blur

₹1.1 L/yr - ₹4 L/yr

Software Engineer Trainee
4 salaries
unlock blur

₹0.9 L/yr - ₹8.7 L/yr

Explore more salaries
Compare Agile Softech with

Teleperformance

3.9
Compare

FIS

3.9
Compare

Nagarro

4.0
Compare

Optum

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview