Upload Button Icon Add office photos
Engaged Employer

i

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

ITC Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ITC Infotech Plsql Developer Interview Questions, Process, and Tips

Updated 3 Oct 2024

ITC Infotech Plsql Developer Interview Experiences

1 interview found

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 questions from similar companies

Interview experience
5
Excellent
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 - Case Study 

JOINS DIFFERENCE BETWEEEN (LEFT,RIGHT,INNER,FULL)

Round 3 - Coding Test 

CREATE OR REPLACE PROCEDURE PP(A NUMBER) IS
BEGIN
DBMS_OUTPUT.PUT_LINE(A);
END;
/

I applied via Approached by Company and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1. Basic questions of PLSQL. 2. When to rebuild indexes and how to build them. 3. Performance tuning.

Interview Preparation Tips

Interview preparation tips for other job seekers - PLSQL interview is easy for some client. However make sure your preparation is up to the mark with respect to performance tuning. Atleast should know where to start.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. Latest project explanation with application architecture, tech stack used. Business logic implemented
  • Ans. 

    Developed a web application for online shopping with microservices architecture using Node.js, Express, MongoDB, and React.

    • Implemented microservices architecture to improve scalability and maintainability

    • Used Node.js and Express for backend development

    • Utilized MongoDB for database management

    • Implemented React for frontend development

    • Implemented business logic for user authentication, product management, and order proces

  • Answered by AI
  • Q2. Create an api based on your latest project with coding standards, SOLID principles (need to code in the laptop provided) interviewer assess the code.
  • Q3. What are the design patterns you have used and explain them within your project context
  • Ans. 

    I have used the Singleton, Factory, and Observer design patterns in my projects.

    • Singleton pattern: Used to ensure a class has only one instance and provides a global point of access to it. For example, I implemented a Logger class as a Singleton to manage logging throughout the application.

    • Factory pattern: Used to create objects without specifying the exact class of object that will be created. For instance, I used a F...

  • Answered by AI
  • Q4. Write linq queries to get order id and list of products (based on latest project)
  • Ans. 

    Use LINQ queries to retrieve order id and list of products based on latest project.

    • Use OrderByDescending to get the latest project first

    • Join Order and Product tables on OrderId

    • Select OrderId and list of Products

  • Answered by AI
  • Q5. Write sql query to get 2 nd largest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to get 2nd largest salary.

    • Use SELECT statement to retrieve salary column

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 1,1 to get the second row

  • Answered by AI
  • Q6. Web apps/ api security, performance, unit testing, code review and authentication/authorization related discussions
  • Q7. Generic class, generic methods related questions and write code in the board
Round 2 - HR 

(2 Questions)

  • Q1. Experience, relevant experience, current company related details
  • Q2. Salary discussions/negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared extensively what you have mentioned in your CV

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write MySQL query to find employee with 2nd Highest salary
  • Ans. 

    Use MySQL query with ORDER BY and LIMIT to find employee with 2nd highest salary.

    • Use ORDER BY salary DESC to sort salaries in descending order

    • Use LIMIT 1,1 to skip the highest salary and get the second highest salary

  • Answered by AI
  • Q2. What is branch in git
  • Ans. 

    A branch in git is a separate line of development that allows you to work on features or fixes without affecting the main codebase.

    • Branches allow for parallel development

    • They can be created, switched between, merged, and deleted

    • Common branches include master, develop, feature branches, and release branches

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write the code in eggplant
  • Ans. 

    Writing code in eggplant for Senior Developer interview

    • Use 'click' to simulate a mouse click on an element

    • Use 'typeText' to enter text into a field

    • Use 'verify' to check if an element is present on the screen

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. CSS Box-model definition
  • Ans. 

    CSS Box-model defines how elements are rendered in a webpage, including padding, border, and margin.

    • Box-model consists of content, padding, border, and margin

    • Content area is where text or images are displayed

    • Padding is the space between content and border

    • Border is the line around the content and padding

    • Margin is the space outside the border

  • Answered by AI
  • Q2. Difference b/n flexbox and grid
  • Ans. 

    Flexbox is for one-dimensional layouts, grid is for two-dimensional layouts.

    • Flexbox is best for arranging items in a single row or column.

    • Grid is best for creating complex layouts with rows and columns.

    • Flexbox is more suitable for smaller scale layouts, while grid is better for larger scale layouts.

    • Flexbox is more flexible in terms of item order and sizing, while grid provides more control over the overall layout.

    • Both

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Based on Angular
  • Q2. Based on Html, CSS, Javascript
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Simple question from your resume
Round 2 - Coding Test 

Coding related questions

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your strength and weakness
  • Q3. Why are you want to join this question and what is your salary expectation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

All the basic topics

Round 2 - Coding Test 

Normal JS, And CSS and HTML

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare basic concept of JS

ITC Infotech Interview FAQs

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

Some of the top questions asked at the ITC Infotech Plsql Developer interview -

  1. What is use of returning cla...read more
  2. How do you optimize Stored proced...read more
  3. How do you optimize SQL qu...read more

Tell us how to improve this page.

ITC Infotech Plsql Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
ITC Infotech Plsql Developer Salary
based on 35 salaries
₹3 L/yr - ₹10.5 L/yr
9% less than the average Plsql Developer Salary in India
View more details

ITC Infotech Plsql Developer Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.9

Salary

4.5

Job security

4.4

Company culture

3.9

Promotions

3.9

Work satisfaction

Explore 3 Reviews and Ratings
Associate Information Technology Consultant
5.2k salaries
unlock blur

₹4.1 L/yr - ₹15 L/yr

Lead Consultant
4.5k salaries
unlock blur

₹9 L/yr - ₹35 L/yr

Associate Consultant
827 salaries
unlock blur

₹2.5 L/yr - ₹16.5 L/yr

Software Engineer
503 salaries
unlock blur

₹4 L/yr - ₹14.1 L/yr

Senior Software Engineer
377 salaries
unlock blur

₹6.6 L/yr - ₹25 L/yr

Explore more salaries
Compare ITC Infotech with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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