Upload Button Icon Add office photos
Engaged Employer

i

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

Drivestream Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Drivestream SQL Developer Interview Questions and Answers

Updated 2 Feb 2024

Drivestream SQL Developer Interview Experiences

1 interview found

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

I was interviewed in Aug 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Write a toughest SQL code for you
  • Ans. 

    The toughest SQL code for me is a complex query involving multiple joins and subqueries.

    • Use aliases for table names to improve readability

    • Break down the query into smaller subqueries for better understanding

    • Optimize the query by using appropriate indexes and avoiding unnecessary calculations

  • Answered by AI

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 applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Past experience
  • Q2. How much da u know
Round 2 - Technical 

(2 Questions)

  • Q1. Merge sort in js
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges the sorted halves.

    • Divide the array into two halves recursively

    • Sort each half using merge sort recursively

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Hoising based question

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on dsa, coding question, overall good experience and so on

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search and sorting
  • Q2. Prime number coding question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Basic interview questions only
  • Q2. Basic coding questions only
  • Q3. Besic Oops interview questions
  • Q4. Basic data type questions
  • Q5. Basic string coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics and Try your best
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Good question of frog jump leet code

Round 2 - Coding Test 

Some dp and tree question

Round 3 - HR 

(1 Question)

  • Q1. Where do you see yourself
  • Ans. 

    I see myself continuing to grow and advance in my career as a Backend Developer.

    • Continuing to learn new technologies and stay updated with industry trends

    • Taking on more challenging projects and responsibilities

    • Eventually moving into a leadership or senior role within the company

  • Answered by AI

I applied via Company Website and was interviewed in Jul 2022. There were 3 interview rounds.

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 - Aptitude Test 

Give some 30 question and click on check box only and then submit

Round 3 - Aptitude Test 

You have only 1hrs for attend 30 question

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewers are very professional and if you have any doubt during the time of interview you can directly ask the question and he gives you positive answers.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to front end technologies like HTML, CSS, JS
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions on HTML, CSS, JS Focus on array questions and read methods of array before
Round 3 - Technical 

(1 Question)

  • Q1. Managerial round questions based on scenario to check how you think/react on the particular situation

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

The platform was HackerEarth time duration was 1 hour.
2 Coding questions were asked, 30 minutes for each were allotted.

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. Brute Force

    In the brute force approach, we will use two nested loops. The outer loop is used to select the starting index of the substring and the inner loop is used to fix the ending index of the substring. After selecting the substring, we will use another loop (or a method) to check whether the substring contains all unique characters or not using a HashSet.

    Space Complexity: O(n)Explanation:

    O(L), where L is the len...

  • Answered Anonymously
  • Q2. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 120 Minutes
Round difficulty - Hard

This was a 2 hours round, with the following problem statement. At the end of the allotted time you had give a demo and explain your implementation.

Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Medium

The platform was Zoom, time duration was 45 mins. Started with Tell me something about yourself. I told them, that I like solving algorithms and real life problems.

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interviewer was very friendly. Asked few questions about myself and then asked questions about what I know about the company.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Guru Gobind Singh Indraprastha University. I applied for the job as SDE - Intern in MumbaiEligibility criteriaAbove 7 CGPABrowserStack interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, Trees, NodeJS, OOPS, OS, MySQLTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice questions from leetcode as mostly questions were asked from that only.
Tip 3 : Revise Computer Science subjects like DBMS, OS & OOPS thoroughly, it'll help you ace last round
Tip 4 : Revise everything about your mentioned internship projects and self projects. Projects hold a great weight in selection.

Application resume tips for other job seekers

Tip 1 : Competitive programming profiles is a must. That'll help you get shortlisted.
Tip 2 : Resume should reflect development and experience in DSA.
Tip 3 : Be genuine in your skills and technologies section, question will be asked from them.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Jun 2022. 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 - Coding Test 

Coding test of your skills and how well can you cope up with a problem given.

Round 3 - One-on-one 

(3 Questions)

  • Q1. LAC of 3 nodes
  • Ans. 

    LAC stands for Location Area Code, a unique identifier for a group of cells in a mobile network.

    • LAC helps in identifying the location of a mobile device within a cellular network.

    • It is used for handover procedures when a device moves between different cells.

    • In a network with 3 nodes, each node would have a unique LAC assigned to it.

  • Answered by AI
  • Q2. Reverse of the array
  • Ans. 

    Reverse the order of strings in an array

    • Use the reverse() method to reverse the array

    • Example: ['apple', 'banana', 'cherry'] -> ['cherry', 'banana', 'apple']

  • Answered by AI
  • Q3. Sum or product asked

Interview Preparation Tips

Interview preparation tips for other job seekers - be good at your skills that matters the most

Skills evaluated in this interview

I was interviewed before Jun 2016.

Interview Questionnaire 

5 Questions

  • Q1. Knowledge of Java
  • Q2. Knowledge of Python
  • Q3. Knowledge of PHP
  • Q4. My team working skills
  • Q5. Ability to handle pressure
  • Ans. 

    I have the ability to handle pressure effectively.

    • I remain calm and focused in high-pressure situations.

    • I prioritize tasks and manage my time efficiently.

    • I seek support and guidance from team members when needed.

    • I maintain a positive attitude and adapt to changing circumstances.

    • I have successfully completed projects under tight deadlines.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: The interview was interactive and the interviewers seemed interested for every answer I gave even if it was a wrong one. They corrected me at every step.

Round: Technical + HR Interview
Experience: This was basically for testing my moral towards working and how i cope up with other colleagues.

College Name: Ramaiah Institute Of Technology

Drivestream Interview FAQs

How many rounds are there in Drivestream SQL Developer interview?
Drivestream interview process usually has 1 rounds. The most common rounds in the Drivestream interview process are Technical.

Tell us how to improve this page.

Drivestream SQL Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Consultant
62 salaries
unlock blur

₹3.6 L/yr - ₹15.5 L/yr

Senior Consultant
25 salaries
unlock blur

₹12 L/yr - ₹24 L/yr

Associate Consultant
17 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Junior Consultant
14 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Project Manager
11 salaries
unlock blur

₹15 L/yr - ₹33 L/yr

Explore more salaries
Compare Drivestream with

Wipro

3.7
Compare

Infosys

3.6
Compare

TCS

3.7
Compare

HCLTech

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