Upload Button Icon Add office photos

Filter interviews by

GS Lab C Developer Interview Questions and Answers

Updated 31 Mar 2024

GS Lab C Developer Interview Experiences

1 interview found

C Developer Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Inheritance, polymorphism, STL, memory management, containership. Questions on vectors, strings.
Round 2 - Technical 

(1 Question)

  • Q1. Deep dive into your resume, project discussion, current responsibilities, problem solving queries, puzzles.
Round 3 - Behavioral 

(1 Question)

  • Q1. Why GS Lab ? Why you want to switch ? Current Tech Stack ? Their Project Highlights. How you would debug a core file ? Previous role and experience.
Round 4 - HR 

(1 Question)

  • Q1. Introduction Why GS Lab ? Work Culture discussions. Salary Expectation discussion

Interview questions from similar companies

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

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

Round 1 - Hackerank 

(1 Question)

  • Q1. Programming questions
Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts, programming questions.
Round 3 - Technical 

(1 Question)

  • Q1. Topics related to c++ including multi-threading and smart pointers.
Round 4 - HR 

(1 Question)

  • Q1. About you and your previous work.
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Online zoom coding test will be there - 4 questions - 2 about output of code & 2 about technical questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Polymorphism and explain about virtual polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Virtual polymorphism is achieved through virtual functions in C++.

    • Virtual functions allow a function in a base class to be overridden in a derived class.

    • Example: Animal class with virtual function 'makeSound' overridden in Dog a

  • Answered by AI
  • Q2. Write code for virtual polymorphism and explain
  • Ans. 

    Virtual polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Create a base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers or references of the base class to call the overridden functions

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. About yourself should explain
  • Q2. Reason for job change
  • Q3. Salary negotiations and location

Interview Preparation Tips

Interview preparation tips for other job seekers - I have interviewed for c++ developer role in incedo company - please make sure you are completely aware of every functions and keywords relate to c++ concepts.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

QUANT, MATHS, HTML, CSS

Round 2 - Coding Test 

DSA WAS ASKED TOGETHER WITH SOME CORE SUBJECT QUESTIONS.

Round 3 - Coding Test 

DSA WAS ASKED TOGETHER WITH SOME PUZZLES.

Round 4 - HR 

(2 Questions)

  • Q1. BASIC COMMON HR QUES
  • Q2. BASIC COMMON HR QUES

Interview Preparation Tips

Topics to prepare for TO THE NEW Front end Developer interview:
  • HTML
  • SQL
  • React.Js
  • Node.Js
  • CSS
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(6 Questions)

  • Q1. Brief about your project ?
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store.

    • Used Angular framework to create a responsive and user-friendly interface.

    • Implemented features for adding, updating, and deleting products in the inventory.

    • Integrated with backend APIs to fetch real-time sales data and generate reports.

    • Utilized Angular Material for designing consistent UI components.

  • Answered by AI
  • Q2. What is angular? what is SPA?
  • Ans. 

    Angular is a popular front-end framework for building web applications. SPA stands for Single Page Application.

    • Angular is a front-end framework developed by Google for building dynamic web applications.

    • It uses TypeScript for building applications with components, services, and modules.

    • SPA is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA provid...

  • Answered by AI
  • Q3. What is lazy loading?
  • Ans. 

    Lazy loading is a technique in web development where resources are loaded only when needed, improving performance.

    • Lazy loading helps reduce initial load time by loading resources on demand

    • It is commonly used in Angular for loading modules, components, or routes asynchronously

    • Lazy loading can improve user experience by speeding up page load times

  • Answered by AI
  • Q4. What is rxjs? in deep?
  • Ans. 

    RxJS is a library for reactive programming using Observables to handle asynchronous data streams.

    • RxJS stands for Reactive Extensions for JavaScript.

    • It allows you to work with asynchronous data streams and handle events.

    • Operators like map, filter, and mergeMap are used to manipulate and combine streams.

    • Subscriptions are used to listen to and react to changes in the data streams.

    • Example: Using RxJS to make HTTP requests

  • Answered by AI
  • Q5. Angular and javascript basic question?
  • Q6. Difference between ?? and ?:
  • Ans. 

    ?? is the nullish coalescing operator, while ? is the optional chaining operator in Angular.

    • ?? is used to provide a default value when a variable is null or undefined.

    • ? is used to safely access nested properties of an object without causing errors.

    • Example: const name = person?.name; // safe access to 'name' property of 'person' object

  • Answered by AI

Skills evaluated in this interview

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

Hackearth online coding test for 1 hour

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question and output questions
  • Q2. Find k largest element in an array
  • Ans. 

    Use sorting or heap data structure to find k largest elements in an array of strings.

    • Sort the array in descending order and return the first k elements.

    • Use a max heap data structure to efficiently find the k largest elements.

    • Examples: ['apple', 'banana', 'orange', 'kiwi'], k=2 -> ['orange', 'kiwi']

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Remove duplicates from array
  • Ans. 

    Remove duplicates from array of strings

    • Create a Set to store unique strings

    • Iterate through the array and add each string to the Set

    • Convert the Set back to an array to get the unique strings

  • Answered by AI
  • Q2. Output related questions on student class object

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa well

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding round is related to DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Java related questions
  • Q2. Explain about your project
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Why you want to join us?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern
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 Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. It was mainly java, interviewers are very good and supportive to elaborate more about problem.
  • Q2. Scenario based on your earlier work experience
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. What is your approach to building basic logic skills?
  • Ans. 

    My approach to building basic logic skills involves practicing problem-solving exercises, breaking down complex problems into smaller parts, and seeking feedback to improve.

    • Practice problem-solving exercises regularly to strengthen logical thinking abilities.

    • Break down complex problems into smaller, more manageable parts to better understand the problem and find solutions.

    • Seek feedback from peers or mentors to identify...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Some behavioural questions?

GS Lab Interview FAQs

How many rounds are there in GS Lab C Developer interview?
GS Lab interview process usually has 4 rounds. The most common rounds in the GS Lab interview process are Technical, Behavioral and HR.
How to prepare for GS Lab C 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 GS Lab. The most common topics and skills that interviewers at GS Lab expect are Data Structures, Linux, Algorithms, Build and C++.

Tell us how to improve this page.

People are getting interviews through

based on 1 GS Lab interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
Cyient Interview Questions
3.7
 • 279 Interviews
CitiusTech Interview Questions
3.4
 • 264 Interviews
View all

Fast track your campus placements

View all
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