Upload Button Icon Add office photos

Filter interviews by

National Institute for Smart Government Database Developer Interview Questions and Answers

Updated 13 Nov 2024

National Institute for Smart Government Database Developer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview in Nov 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Technical written test on Database, java core

Round 3 - Technical 

(1 Question)

  • Q1. Basic of SQL, sharding, partition, execution order,Ddl,dml and few questions on resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test includes math and programming MCQ questions.

Round 2 - Technical 

(2 Questions)

  • Q1. About the academic project that I did
  • Q2. About the basic programming questions

Database Developer Interview Questions Asked at Other Companies

asked in NextG Apex
Q1. - Waterfall model - What is cursor in SQL - Normalization and den ... read more
asked in Indegene
Q2. 1.HOW TO DELETE DUPLICATE RECORDS FROM A TABLE?
asked in cloudEQ
Q3. How do you optimize your select statements in SQL?
Q4. What are indexes and how indexing is useful?
asked in cloudEQ
Q5. What is indexing? Different types of indexes?

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Simple question related to Joins, Subquery, Procedures, Indexes.

Round 2 - Coding Test 

Advanced questions on optimization

Round 3 - HR 

(1 Question)

  • Q1. Salary related discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Joins and Indexes
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Behavioral 

(1 Question)

  • Q1. What are fear that you overcome
Round 2 - Coding Test 

Python coding test that was baasic included panadas framework

Round 3 - HR 

(1 Question)

  • Q1. Behavioural round

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

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous means happening at the same time, while asynchronous means not happening at the same time.

    • Synchronous operations occur in real-time, while asynchronous operations can be delayed or queued.

    • Synchronous operations block the program until they are completed, while asynchronous operations allow the program to continue running.

    • Examples of synchronous operations include function calls and loops, while examples of ...

  • Answered by AI
  • Q2. When to use CTE and temp table.
  • Ans. 

    CTE and temp table usage in SQL

    • Use CTE for recursive queries and complex subqueries

    • Use temp tables for large data sets and complex queries

    • CTE is more efficient for small data sets

    • Temp tables can be indexed for faster performance

    • Consider the scope and lifespan of the data when choosing between CTE and temp table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.

Interview Questionnaire 

1 Question

  • Q1. Java basics

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do you handle downtime
  • Ans. 

    I prioritize identifying the root cause and finding a solution while keeping stakeholders informed.

    • Identify the root cause of the downtime

    • Communicate with stakeholders about the issue and expected resolution time

    • Work on finding a solution as quickly as possible

    • Implement preventative measures to avoid future downtime

    • Document the incident and steps taken for future reference

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Because confident and prepare well for versant test

Interview Questionnaire 

1 Question

  • Q1. Reverse a LL, Git use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself

I applied via Campus Placement and was interviewed before Sep 2021. There were 5 interview rounds.

Round 1 - Coding Test 

1. One question was given to be solved in 1 hour. Question was medium level based on strings.

Round 2 - One-on-one 

(1 Question)

  • Q1. 1. 1:1 interview, mostly discussion around OOPS concepts and some basic dynamic programming questions.
Round 3 - Case Study 

1. 3 questions were given out of which any 2 needed to be solved. 1 question related to Database design and query, 2 questions related to DSA, both DSA questions were medium-hard type based on Dynamic programming and graph.
I solved one Dynamic programming question and Database question.

Round 4 - One-on-one 

(1 Question)

  • Q1. 1. This round was the follow up of last case study round. Interviewer gave various use cases to test on the algorithms that I had written. Some discussion related to OOPS concepts and Database design quest...
Round 5 - HR 

(1 Question)

  • Q1. It was final discussion, mostly around cultural fit and classic HR questions. It was easy one, I'd say.

Interview Preparation Tips

Topics to prepare for ZS Software Engineer interview:
  • Data Structures
  • Algorithms
  • OOPS
  • Database management system
Interview preparation tips for other job seekers - Prepare DSA, Database basic questions, OOPS concepts and be confident! Implementation is more important than theory, Hence practice these things.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This test consists of two coding questions and some MCQ regarding computer fundamentals.

  • Q1. 

    Kevin and His Cards Problem Statement

    Kevin has two packs of cards. The first pack contains N cards, and the second contains M cards. Each card has an integer written on it. Determine two results: the tot...

  • Ans. 

    Find total distinct card types and common card types between two packs of cards.

    • Create a set to store distinct card types when combining both packs.

    • Iterate through each pack and add card types to the set.

    • Find the intersection of card types between the two packs to get common card types.

  • Answered by AI
  • Q2. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through all possible allocations of books to students.

    • Calculate the maximum number of pages assigned to a student for each allocation.

    • Return the minimum of these maximums as the result.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

It was a technical round that is based on DSA and computer fundamentals.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria10- above 60% 12- ABove 60 percentZS Associates interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, DBMS, OOPS, Operating System , System DesignTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : If you are not able to complete something in-depth, clearly mention that to the interviewer.
Tip 2 : Practice DSA well.
Tip 3 : Try to think analytically and more logically,Your thinking skills matters a lot.

Application resume tips for other job seekers

Tip 1 : Try to mention max no of projects
Tip 2 : DO not fake in your resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

National Institute for Smart Government Interview FAQs

How many rounds are there in National Institute for Smart Government Database Developer interview?
National Institute for Smart Government interview process usually has 2-3 rounds. The most common rounds in the National Institute for Smart Government interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for National Institute for Smart Government Database 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 National Institute for Smart Government. The most common topics and skills that interviewers at National Institute for Smart Government expect are Analytical, Communication Skills, Postgresql, Business Intelligence and DBMS.
What are the top questions asked in National Institute for Smart Government Database Developer interview?

Some of the top questions asked at the National Institute for Smart Government Database Developer interview -

  1. Basic of SQL, sharding, partition, execution order,Ddl,dml and few questions on...read more
  2. About the basic programming questi...read more

Tell us how to improve this page.

National Institute for Smart Government Database Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.9k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
KPMG India Interview Questions
3.5
 • 805 Interviews
ZS Interview Questions
3.3
 • 456 Interviews
BCG Interview Questions
3.7
 • 198 Interviews
Citco Interview Questions
3.1
 • 142 Interviews
Bain & Company Interview Questions
3.8
 • 107 Interviews
WSP Interview Questions
4.2
 • 97 Interviews
View all

Fast track your campus placements

View all
44% more than the average Database Developer Salary in India
View more details
Assistant Manager
128 salaries
unlock blur

₹3.4 L/yr - ₹11.1 L/yr

Consultant
53 salaries
unlock blur

₹6.1 L/yr - ₹19 L/yr

Project Manager
40 salaries
unlock blur

₹7 L/yr - ₹21 L/yr

Manager
27 salaries
unlock blur

₹9 L/yr - ₹25 L/yr

Senior Manager
26 salaries
unlock blur

₹12 L/yr - ₹28 L/yr

Explore more salaries
Compare National Institute for Smart Government with

Ernst & Young

3.4
Compare

PwC

3.4
Compare

KPMG India

3.5
Compare

RSM US in India

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