Upload Button Icon Add office photos

Filter interviews by

GS Lab Intern Interview Questions, Process, and Tips

Updated 15 Oct 2023

Top GS Lab Intern Interview Questions and Answers

  • Q1. write a program to find loop in linked list and find the strating node of linked list where loop is strating
  • Q2. write a sql query to give a list in decending order according to country name and ascending order according to date
  • Q3. what is your favourite OOPS concept. explain it in detail
View all 9 questions

GS Lab Intern Interview Experiences

4 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2023

Interview experience
4
Good
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 - Aptitude Test 

Logical and Python coding

Round 3 - Group Discussion 

Educations in engineering collages

Round 4 - One-on-one 

(1 Question)

  • Q1. Behavioral, and few basic python

Interview Preparation Tips

Interview preparation tips for other job seekers - Education in Engineering colleges

Intern Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2021

I was interviewed in Mar 2021.

Interview Questionnaire 

9 Questions

  • Q1. 1)what is software reengineering
  • Ans. 

    Software reengineering is the process of modifying and improving existing software systems.

    • It involves analyzing the existing software system and identifying areas for improvement.

    • The goal is to enhance the system's functionality, performance, and maintainability.

    • Reengineering can involve reverse engineering, restructuring, and forward engineering.

    • Examples include updating legacy systems, migrating to new platforms, an

  • Answered by AI
  • Q2. 2) which is the best software model. explain it.
  • Ans. 

    Agile is the best software model due to its flexibility and adaptability.

    • Agile allows for continuous feedback and improvement

    • It prioritizes customer satisfaction and collaboration

    • It is adaptable to changing requirements and needs

    • Examples include Scrum, Kanban, and Extreme Programming

  • Answered by AI
  • Q3. 3) Explain TCP/IP model
  • Ans. 

    TCP/IP model is a networking protocol used for communication between devices on the internet.

    • TCP/IP model stands for Transmission Control Protocol/Internet Protocol model.

    • It consists of four layers: Application, Transport, Internet, and Network Access.

    • Each layer has its own set of protocols and functions.

    • The Application layer deals with user interfaces and data exchange.

    • The Transport layer ensures reliable data transfe...

  • Answered by AI
  • Q4. What is your favourite OOPS concept. explain it in detail
  • Ans. 

    My favorite OOPS concept is inheritance.

    • Inheritance allows a class to inherit properties and methods from another class.

    • It promotes code reusability and saves time and effort in coding.

    • There are different types of inheritance such as single, multiple, multilevel, and hierarchical.

    • For example, a class 'Car' can inherit properties and methods from a class 'Vehicle'.

  • Answered by AI
  • Q5. Write a program to find loop in linked list and find the strating node of linked list where loop is strating
  • Ans. 

    Program to find loop in linked list and starting node of the loop

    • Use Floyd's cycle detection algorithm to find the loop

    • Once loop is detected, use two pointers to find the starting node of the loop

    • One pointer starts from the head and the other starts from the meeting point of the two pointers in the loop

    • Move both pointers one node at a time until they meet again, which is the starting node of the loop

  • Answered by AI
  • Q6. Write a program to convert lowercase into upercase and vice versa and swap digits in a string
  • Ans. 

    Program to convert case and swap digits in a string

    • Use a loop to iterate through each character in the string

    • Check if the character is a letter or a digit

    • If it's a letter, use the built-in functions to convert case

    • If it's a digit, swap it with the adjacent digit using a temporary variable

  • Answered by AI
  • Q7. Write a sql query to give a list in decending order according to country name and ascending order according to date
  • Ans. 

    SQL query to list in descending order by country name and ascending order by date.

    • Use ORDER BY clause with two columns, one in descending order and the other in ascending order

    • Syntax: SELECT column1, column2 FROM table_name ORDER BY column1 DESC, column2 ASC

    • Example: SELECT name, date FROM table_name ORDER BY name DESC, date ASC

  • Answered by AI
  • Q8. Write a program to convert binary into decimal values
  • Ans. 

    Program to convert binary to decimal values

    • Take input as binary string

    • Iterate over each digit and multiply with 2 raised to power of position

    • Add all the values obtained in previous step to get decimal value

  • Answered by AI
  • Q9. Write a program to find non common characters in teo string
  • Ans. 

    Program to find non common characters in two strings

    • Iterate through each character in both strings

    • Compare each character and add non-common characters to a new string

    • Return the new string with non-common characters

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - there were three interview one technical, next technical + HR and then HR

Skills evaluated in this interview

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman CodingYou are given an array 'ARR' of Integers having 'N' ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 5 Jul 2022

I was interviewed before Jul 2021.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding Test BST and DFS algorithms
  • Q2. Followed by panel interviews

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, practice Hackerrank and codility questions

Intern Interview Questions & Answers

user image Anonymous

posted on 5 Jul 2022

I was interviewed before Jul 2021.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding Test BST and DFS algorithms
  • Q2. Followed by panel interviews

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, practice Hackerrank and codility questions

GS Lab interview questions for designations

 Software Engineer Intern

 (2)

 Software Developer Intern

 (1)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Paper pen coding test

Round 2 - Technical 

(4 Questions)

  • Q1. Easy-medium level sliding window problem
  • Ans. 

    Find the maximum sum of a subarray of size k in an array of integers.

    • Use a sliding window approach to keep track of the sum of the current subarray.

    • Slide the window by adding the next element and subtracting the previous element.

    • Keep track of the maximum sum encountered so far.

    • Return the maximum sum found.

  • Answered by AI
  • Q2. Easy-medium level array problem
  • Ans. 

    Find the longest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with other strings.

    • Stop when a character doesn't match or reach the end of any string.

    • Return the prefix found so far.

  • Answered by AI
  • Q3. Gave me a condition and asked what data structure i would use. Problem was related to data retrieval so we would use hashmaps.
  • Q4. They also asked sql queires and dbms related concepts (ACID, etc)

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrrank and for 1 hour 3 LC medium

Round 2 - Technical 

(2 Questions)

  • Q1. Aggresive cow medium dsa q
  • Q2. Binary search on ans type
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Maths, English, and logic

Round 2 - Case Study 

Number of street lights in a state

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Two case study questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Networking core java , oops . data interpretation , data analysis , English and basic Maths question

Round 2 - Coding Test 

Java questions , Dsa questions . timing was approx 2 hours

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Intern interview:
  • dsa,
  • OOPS
  • Machine Learning
  • Networking
Interview preparation tips for other job seekers - everything is good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and data structures
  • Q2. Dbms questions where based on normalization
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Two questions were asked and answered both

Round 2 - Coding Test 

Two programs on Java was asked on loops and collections

GS Lab Interview FAQs

How many rounds are there in GS Lab Intern interview?
GS Lab interview process usually has 2 rounds. The most common rounds in the GS Lab interview process are One-on-one Round, Resume Shortlist and Aptitude Test.
What are the top questions asked in GS Lab Intern interview?

Some of the top questions asked at the GS Lab Intern interview -

  1. write a program to find loop in linked list and find the strating node of linke...read more
  2. write a sql query to give a list in decending order according to country name ...read more
  3. what is your favourite OOPS concept. explain it in det...read more

Tell us how to improve this page.

Fast track your campus placements

View all
GS Lab Intern Salary
based on 6 salaries
₹1.8 L/yr - ₹5 L/yr
10% more than the average Intern Salary in India
View more details

GS Lab Intern Reviews and Ratings

based on 6 reviews

3.5/5

Rating in categories

3.7

Skill development

3.5

Work-Life balance

3.4

Salary & Benefits

4.0

Job Security

3.7

Company culture

3.4

Promotions/Appraisal

3.7

Work Satisfaction

Explore 6 Reviews and Ratings
Senior Software Engineer
769 salaries
unlock blur

₹9 L/yr - ₹31.5 L/yr

Software Engineer
761 salaries
unlock blur

₹4 L/yr - ₹16.1 L/yr

Lead Software Engineer
254 salaries
unlock blur

₹13.1 L/yr - ₹36 L/yr

Softwaretest Engineer
115 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Software Developer
96 salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Explore more salaries
Compare GS Lab with

One Network Enterprises

4.0
Compare

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview