Upload Button Icon Add office photos
Engaged Employer

i

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

Jio Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 22.1k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Jio Plsql Developer Interview Questions and Answers

Updated 9 Dec 2022

Jio Plsql Developer Interview Experiences

1 interview found

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 

(9 Questions)

  • Q1. Procedures, functions, cursors, triggers
  • Q2. Tables, views, synonyms, sequences, constraints
  • Q3. Packages, having clause, group by clause
  • Q4. Rowid, rownumber, bulk bind, bulk exception, bulk collect, parameters
  • Q5. Predefined exception , nonpredefined exception, raise, raise application error
  • Q6. Truncate, delete, case, decode
  • Q7. Order by clause, advantages of views
  • Ans. 

    Order by clause is used to sort the result set. Views provide security, abstraction and simplify complex queries.

    • Order by clause sorts the result set based on specified column(s)

    • Views provide a layer of abstraction and simplify complex queries

    • Views can be used to provide security by limiting access to certain columns or rows

    • Views can improve performance by precomputing complex queries

    • Example: SELECT * FROM employees_vi...

  • Answered by AI
  • Q8. Max, greatest, on delete cascade
  • Q9. On delete set null, unique constraints
  • Ans. 

    On delete set null is used to set foreign key values to null when referenced rows are deleted. Unique constraints ensure uniqueness of values.

    • On delete set null is a referential action that can be specified when creating a foreign key constraint.

    • When a referenced row is deleted, the foreign key value in the referencing table is set to null.

    • Unique constraints ensure that no two rows have the same value in the specified ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good learning,self motivated, flexible,listening music

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Nov 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Types of partition in sql
  • Q2. Can we edit data in complex views, will the underlying table be effected?
  • Q3. How do you do performance tuning?
  • Q4. Tell about regex
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is groupby
  • Ans. 

    The GROUP BY clause in SQL is used to group rows that have the same values into summary rows.

    • It is used with aggregate functions like COUNT, SUM, AVG, etc.

    • It is used to group rows based on one or more columns in a table.

    • It is often used in conjunction with the SELECT statement.

  • Answered by AI
  • Q2. What is having

Skills evaluated in this interview

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
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

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

Round 1 - Technical 

(6 Questions)

  • Q1. What is view? Can we update in view?
  • Ans. 

    A view is a virtual table created by a query. It does not store data itself but displays data from one or more tables. Views can be used for querying data as if it were a table.

    • Views are created using a SELECT statement with optional joins, WHERE clauses, etc.

    • Views can simplify complex queries by pre-defining joins and filters.

    • Views do not store data themselves, they display data from underlying tables.

    • Views can be upd...

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

    A synonym is an alternative name for a table, view, sequence, or other database object.

    • Synonyms can be used to provide a different name for an object, making it easier to reference.

    • They can be created to reference objects in other schemas or databases.

    • Synonyms can be public (accessible to all users) or private (accessible only to the creator).

  • Answered by AI
  • Q3. What is sequence
  • Ans. 

    A sequence is a database object in Oracle that generates unique numbers in a specified order.

    • Used to generate unique numbers for primary key columns

    • Can be used in INSERT statements to automatically generate values

    • Can be defined to increment by a specific value and start at a specific number

  • Answered by AI
  • Q4. What is procedures?
  • Ans. 

    Procedures are named PL/SQL blocks that perform a specific task. They can accept parameters and return values.

    • Procedures are stored in the database and can be called by other PL/SQL blocks or applications.

    • They can accept input parameters to perform operations and can also return output values.

    • Procedures help in modularizing code and promoting reusability.

    • Example: CREATE PROCEDURE calculate_salary (emp_id IN NUMBER) IS

  • Answered by AI
  • Q5. What is difference between procedure and functions
  • Ans. 

    Procedures do not return any value while functions return a value.

    • Procedures are used to perform an action, while functions are used to calculate and return a value.

    • Procedures do not have a return statement, while functions must have a return statement.

    • Functions can be called from SQL queries, while procedures cannot be called directly in SQL queries.

  • Answered by AI
  • Q6. What is partitions?
  • Ans. 

    Partitions in PL/SQL are used to divide a table into smaller, more manageable pieces.

    • Partitions help improve query performance by allowing data to be stored in separate segments based on a specified criteria.

    • Common partitioning methods include range, hash, list, and composite partitioning.

    • Example: Partitioning a sales table by month can improve query performance when searching for sales data within a specific time fram

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. PLSQL basic to advanced.
  • Q2. Explain collections in details?
  • Ans. 

    Collections in PL/SQL are data structures used to store multiple elements of the same data type.

    • Collections can be nested tables, varrays, or associative arrays.

    • Nested tables are like one-dimensional arrays with no upper bounds.

    • Varrays are like arrays with a maximum size that is specified at declaration.

    • Associative arrays are like lookup tables where each element is accessed using a unique key.

    • Collections can be used t...

  • Answered by AI
  • Q3. Bulk collect concept
  • Ans. 

    Bulk collect is a feature in PL/SQL that allows for fetching multiple rows of data at once.

    • Improves performance by reducing context switches between the PL/SQL engine and SQL engine

    • Reduces network traffic by fetching multiple rows in a single round trip

    • Can be used with SELECT INTO or FETCH INTO statements

  • Answered by AI
  • Q4. Decode and case
  • Q5. Tuning of sql and some sql code
Round 2 - Group Discussion 

Bank product related questions and carrer expericnce .

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

(1 Question)

  • Q1. 1.How to search a text in all database objects- search in all_source table 2.difference between procedure & function 3.difference between case & decode 4.write a query to delete duplicates from table 5.whi...
Round 3 - One-on-one 

(1 Question)

  • Q1. Waiting for round 1 results
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SQL based questions
  • Q2. PLSQL based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is little bit easy

Round 2 - Coding Test 

2 coding question in python

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2023. There were 3 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. Window Functions in SQL
  • Ans. 

    Window functions in SQL are used to perform calculations across a set of table rows related to the current row.

    • Window functions are used to calculate values based on a set of rows related to the current row.

    • They allow you to perform calculations without grouping the rows into a single output row.

    • Examples of window functions include ROW_NUMBER(), RANK(), and LAG().

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Uses of Packages in PL/SQL
  • Ans. 

    Packages in PL/SQL are used to group related procedures, functions, variables, and other PL/SQL constructs together for better organization and security.

    • Packages help in modularizing code for easier maintenance and debugging

    • They provide encapsulation and hide implementation details

    • Packages can contain multiple procedures, functions, variables, cursors, and exceptions

    • They improve performance by reducing network traffic

    • E...

  • Answered by AI

Skills evaluated in this interview

Jio Interview FAQs

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

Some of the top questions asked at the Jio Plsql Developer interview -

  1. On delete set null, unique constrai...read more
  2. Order by clause, advantages of vi...read more
  3. Rowid, rownumber, bulk bind, bulk exception, bulk collect, paramet...read more

Tell us how to improve this page.

Jio Plsql Developer Salary
based on 4 salaries
₹2 L/yr - ₹5.5 L/yr
42% less than the average Plsql Developer Salary in India
View more details

Jio Plsql Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

5.0

Job security

3.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
5.4k salaries
unlock blur

₹1 L/yr - ₹10.4 L/yr

Deputy Manager
3.5k salaries
unlock blur

₹4.2 L/yr - ₹13.6 L/yr

Manager
1.8k salaries
unlock blur

₹6 L/yr - ₹22.5 L/yr

Senior Executive
1.5k salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Senior Manager
1.4k salaries
unlock blur

₹10.4 L/yr - ₹32.4 L/yr

Explore more salaries
Compare Jio with

Jio Platforms

3.5
Compare

Bharti Airtel

4.0
Compare

Vodafone Idea

4.1
Compare

Bharat Sanchar Nigam

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