Upload Button Icon Add office photos

Azentio

Compare button icon Compare button icon Compare

Filter interviews by

Azentio Senior Plsql Developer Interview Questions and Answers

Updated 14 Nov 2024

Azentio Senior Plsql Developer Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

Four questions and bout 2 hrs and topics covered are exceptions,database.

Round 2 - Technical 

(2 Questions)

  • Q1. What is index ? and types?
  • Ans. 

    An index is a database object that improves the speed of data retrieval operations on a table.

    • Indexes are used to quickly locate data without having to search every row in a table.

    • Types of indexes include B-tree indexes, bitmap indexes, and function-based indexes.

    • Examples of indexes are primary keys, unique constraints, and indexes created explicitly on columns.

  • Answered by AI
  • Q2. What is trigger?
  • Ans. 

    A trigger is a PL/SQL block that is automatically executed in response to certain events on a particular table or view.

    • Triggers can be used to enforce business rules, audit changes, or replicate data.

    • They can be classified as row-level triggers (executed for each row affected) or statement-level triggers (executed once for the entire statement).

    • Examples of trigger events include INSERT, UPDATE, DELETE operations on a t...

  • Answered by AI
Round 3 - level 2 

(2 Questions)

  • Q1. What is materialized view?
  • Ans. 

    A materialized view is a database object that contains the results of a query and is stored on disk for faster access.

    • Materialized views store the results of a query like a table, allowing for faster access to data.

    • They are updated periodically to reflect changes in the underlying data.

    • Materialized views are commonly used in data warehousing and reporting applications.

    • Example: CREATE MATERIALIZED VIEW mv_sales AS SELEC...

  • Answered by AI
  • Q2. Difference between union and union all?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Azentio?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Collections,SQL

Senior Plsql Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Did you ever work on query tuning and optimization? What do you s ... read more
asked in LTIMindtree
Q2. How can I write an anonymous block to add a column to a table tha ... read more
Q3. How do you write a package? What is the syntax for creating a pac ... read more
Q4. Difference between PK & UK. How many Nulls are allowed for UK
asked in Deloitte
Q5. How do you debug a procedure that has a nested procedure in it?

Interview Questionnaire 

1 Question

  • Q1. Case Studies

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience.

Interview Questionnaire 

6 Questions

  • Q1. Strings
  • Q2. Java 8 features like lamba expressions stream API
  • Q3. Collections
  • Q4. Autoboxing and Unboxing
  • Q5. Generics
  • Q6. String manipulation problems
  • Ans. 

    String manipulation problems involve modifying or analyzing strings of characters.

    • Use built-in string methods like substring, replace, and split.

    • Regular expressions can be powerful tools for pattern matching and manipulation.

    • Be mindful of edge cases like empty strings and null values.

    • Consider the time and space complexity of your solution.

    • Practice with coding challenges on websites like LeetCode and HackerRank.

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. One Program with c#
  • Ans. 

    A C# program to demonstrate basic concepts like variables, loops, and conditionals.

    • Use 'int' for integers: int number = 5;

    • Implement loops: for (int i = 0; i < 5; i++) { Console.WriteLine(i); }

    • Use conditionals: if (number > 0) { Console.WriteLine('Positive'); }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasting of time i feel when I joined interview with him. One Program he asked when i answered it properly/not he said done his interview

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Understanding of US Healthcare.
  • Q2. Why should we hire you?
  • Q3. Case study to check your problem solving skills
  • Ans. 

    Analyzing a business problem to identify solutions and improve processes effectively.

    • Define the problem clearly: Understand the core issue, e.g., declining sales.

    • Gather data: Use surveys or sales reports to identify trends.

    • Analyze root causes: Apply techniques like the 5 Whys to dig deeper.

    • Develop solutions: Brainstorm potential strategies, e.g., new marketing campaigns.

    • Evaluate options: Assess feasibility and impact o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are very polite and they make you feel comfortable. The questions are more around your personality and problem solving skills.

I appeared for an interview before Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DBMS.

  • Q1. What is data integrity?
  • Ans. 

    Data integrity refers to the accuracy, consistency, and reliability of data throughout its lifecycle.

    • Data integrity ensures that data is accurate and consistent in storage and transmission.

    • It involves maintaining the quality and reliability of data over time.

    • Methods for ensuring data integrity include checksums, encryption, and error detection codes.

    • Examples of data integrity violations include data corruption, unautho...

  • Answered by AI
  • Q2. What is a trigger in the context of a database management system?
  • Ans. 

    A trigger is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers are used to enforce business rules, maintain data integrity, and automate repetitive tasks.

    • They can be triggered by INSERT, UPDATE, or DELETE operations on a table.

    • Examples of triggers include auditing changes to a table, updating related tables when a record is modified, or enforcing referential...

  • Answered by AI
  • Q3. What is the difference between clustered and non-clustered indexes in a database management system?
  • Ans. 

    Clustered indexes physically order the data in the table, while non-clustered indexes do not.

    • Clustered indexes determine the physical order of data in the table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are faster for retrieval of data, especially range queries, compared to non-clustered indexes.

    • Non-clustered indexes are stored se...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DBMS.

  • Q1. What is the difference between UNION and UNION ALL in SQL?
  • Ans. 

    UNION combines and removes duplicates, UNION ALL combines without removing duplicates.

    • UNION merges the result sets of two or more SELECT statements and removes duplicates.

    • UNION ALL merges the result sets of two or more SELECT statements without removing duplicates.

    • UNION is slower than UNION ALL as it involves removing duplicates.

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column...

  • Answered by AI
  • Q2. What are the functions of a cursor in PL/SQL?
  • Ans. 

    A cursor in PL/SQL is used to retrieve and process multiple rows of data one at a time.

    • Allows iteration over a result set

    • Retrieves data row by row

    • Can be used to update or delete rows in a table

    • Must be declared, opened, fetched, and closed

  • Answered by AI
  • Q3. Write a SQL query to fetch the nth highest salary from a table.
  • Ans. 

    SQL query to fetch the nth highest salary from a table

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

    • Use the LIMIT clause to fetch the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a managerial round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - SQL, Database Management Systems, OOPS, DSA, System DesignTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.
Tip 2 : Must do Previously asked Interview as well as Online Test Questions.
Tip 3 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Company Website and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Scrum
  • Q2. Agile

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself

Software Engineer Interview Questions & Answers

Chetu user image Nirban Chatterjee

posted on 11 Oct 2020

I applied via Naukri.com and was interviewed before Oct 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Normal php questions like overriding,overloading,traits,interface,abstarct class nothing else.. It was online but in 2016.
  • Q2. Go though those topic as they are very important and asked in most companies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Read those topics and try to understand with example and doing on your own.Before entering Chetu prepare yourself that you may get fire anytime.Because hiring and firing is lot in Chetu but in terms of salary it is good.

Interview Questionnaire 

3 Questions

  • Q1. Tell us about yourself
  • Ans. 

    I am a business analyst with experience in data analysis and project management.

    • I have a degree in business administration

    • I have worked with various industries including healthcare and finance

    • I am skilled in data visualization and reporting

    • I have experience in leading cross-functional teams

    • I am proficient in SQL and Excel

  • Answered by AI
  • Q2. What is your area of interest?
  • Ans. 

    My area of interest is data analysis and visualization.

    • I enjoy working with large datasets and finding insights through data analysis.

    • I have experience using tools such as Excel, Tableau, and Python for data analysis and visualization.

    • I am interested in exploring new data sources and learning new techniques for data analysis.

    • For example, I recently worked on a project analyzing customer behavior data for a retail compa...

  • Answered by AI
  • Q3. What are the other companies you have applied to and how many rounds of the selection process have you cleared there?

Interview Preparation Tips

Round: Resume Shortlist
Experience: The selection process was open for students from all branches. Around 70 students were shortlisted based on their resume. Shortlisting was mainly on CGPA basis and on an average 5 top students were shortlisted from each branch.

Round: Test
Experience: There was a written test conducted for shortlisted candidates. The test was primarily based on the CAT pattern where questions were asked from verbal reasoning, logical reasoning and quantitative aptitude. The test comprised of 2 sections. First section comprised of 3 HR questions:
Why do you want to join this company?
Tell us about yourself.
Describe a situation where you displayed leadership skills.
These 3 questions were to be typed out in 150–200 words each in a total of 20 minutes. Second section started immediately after this. 25 minutes were given to answer 35 multiple choice questions from various sections including 10 coding based questions. The difficulty level was medium.
Duration: 45 minutes
Total Questions: 38

Round: HR Interview
Experience: They asked me to tell them about myself and also some puzzles and core field related questions. Interview was conducted using Skype. It started with basic HR question and then the interviewer asked me about my area of interest. He asked two questions from that field and then asked me to solve one guesstimate case. There was another question on the definition of data analysis.
My area of interest was Operations Research. First he asked me to explain transportation problem and second question was about solving a transshipment problem using Excel solver software. Other candidates were also asked some puzzles and several other HR questions.

College Name: IIT ROORKEE

Azentio Interview FAQs

How many rounds are there in Azentio Senior Plsql Developer interview?
Azentio interview process usually has 3 rounds. The most common rounds in the Azentio interview process are Coding Test and Technical.
How to prepare for Azentio Senior 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 Azentio. The most common topics and skills that interviewers at Azentio expect are PLSQL, D2k Forms, D2k Reports, Jasper Reports and MySQL.
What are the top questions asked in Azentio Senior Plsql Developer interview?

Some of the top questions asked at the Azentio Senior Plsql Developer interview -

  1. What is index ? and typ...read more
  2. difference between union and union a...read more
  3. What is materialized vi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

HighRadius Interview Questions
2.8
 • 197 Interviews
Chetu Interview Questions
3.3
 • 197 Interviews
AVASOFT Interview Questions
2.9
 • 174 Interviews
Freshworks Interview Questions
3.5
 • 171 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Brane Enterprises Interview Questions
2.0
 • 138 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
View all
Azentio Senior Plsql Developer Salary
based on 4 salaries
₹6.2 L/yr - ₹8.1 L/yr
39% less than the average Senior Plsql Developer Salary in India
View more details
Software Engineer
452 salaries
unlock blur

₹3.7 L/yr - ₹8.2 L/yr

Senior Software Engineer
215 salaries
unlock blur

₹5.1 L/yr - ₹19.5 L/yr

Software Developer
154 salaries
unlock blur

₹2.7 L/yr - ₹10 L/yr

Business Analyst
138 salaries
unlock blur

₹3.7 L/yr - ₹13.3 L/yr

Plsql Developer
108 salaries
unlock blur

₹3 L/yr - ₹10.7 L/yr

Explore more salaries
Compare Azentio with

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare
write
Share an Interview