Premium Employer

i

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

GAVS Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

GAVS Technologies Software Engineer Interview Questions and Answers

Updated 29 Aug 2024

GAVS Technologies Software Engineer Interview Experiences

5 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions from general topics

Round 2 - Group Discussion 

Will ask to speak about General Topics

Round 3 - Technical 

(2 Questions)

  • Q1. Questions from resume
  • Q2. Questions from Oops
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Mathematical Apptitude questions

Round 2 - Group Discussion 

Common topic to discuss in group

Round 3 - Technical 

(1 Question)

  • Q1. OOPS concepts with example program
  • Ans. 

    OOPS concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables in a class.

    • Polymorphism: Ability to present the same interface for different data types. Example: method overloa...

  • Answered by AI

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Anna University and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions, easy level.

Round 2 - Coding Test 

Easy level coding, face to face interview

Round 3 - Group Discussion 

Discussion over common topics

Round 4 - HR 

(2 Questions)

  • Q1. What is something unique and different from others?
  • Q2. How long will you be willing to work in this sector?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Very basic questions

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts basics
  • Q2. MVC pattern in spring boot
  • Ans. 

    MVC pattern in Spring Boot is a design pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for rendering the user interface

    • Controller handles user input and updates the model accordingly

    • Spring Boot provides support for implementing MVC pattern through annotations like @Controller, @RequestMapping

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Self introduction to check communication skills

Interview Preparation Tips

Topics to prepare for GAVS Technologies Software Engineer interview:
  • Basic programming skills
  • Good communication skill
Interview preparation tips for other job seekers - As a fresher, the questions will be asked from the provided resume.

Skills evaluated in this interview

GAVS Technologies interview questions for designations

 Senior Software Engineer

 (6)

 Software Developer

 (2)

 Junior Software Developer

 (1)

 Senior Software Developer

 (1)

 Lead Engineer

 (2)

 QA Engineer

 (1)

 Automation Test Engineer

 (1)

 IT Operations Engineer

 (1)

I applied via Company Website and was interviewed before Jan 2021. 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 

Some basic aptitude questions and, also 1-2 basic coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Programming questions only

Interview Preparation Tips

Interview preparation tips for other job seekers - I joined GAVS Tech as a fresher so the rounds were aptitude test + coding questions and, after that if you qualify for the next round, that will be a technical round, that's all. Overall, it was a nice experience.

Interview questions from similar companies

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

I applied via Nextwave and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

I got the opportunity through Nextwave. In the coding test I’m supposed to solve few aptitude questions and around 5-6 coding questions. Out of them 2 are of easy level ,2 are medium and 2 are of hard level.
I solved 2 easy, 1 medium and 1 hard problem.

Round 2 - Technical 

(2 Questions)

  • Q1. Self Introduction , Resume based questions related to project and strengths
  • Q2. Programming questions like pattern printing, palindrome without using reverse method, GCD
Round 3 - Technical 

(2 Questions)

  • Q1. Started with reasoning and aptitude questions based on pattern analysis, number system, profit and loss.
  • Q2. Programming questions from leetcode 1.Spiral matrix 2.Pascal’s triangle 3.subsequences 4.problem based on DFS

Interview Preparation Tips

Topics to prepare for ThoughtWorks Software Engineer interview:
  • Data Structures
  • Problem Solving
  • Any programming language
  • SQL
Interview preparation tips for other job seekers - Need to have a strong problem solving skills and continuous practising of the programs in leet code of easy and medium level increase the chances for cracking the interview.
Make sure that your project code is available with you at the time of interview and everything you place in the resume must have the supported information with you.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic java and spring boot questions with some deeper knowledge.
Round 2 - Technical 

(1 Question)

  • Q1. Manger round to know about product and system
Round 3 - HR 

(1 Question)

  • Q1. Some behavioural and questions releated to why want to change and expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up yours basics and check multithreading and microservices questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Bigquery Architecture
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Hirist and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Javascript basics
  • Q2. Angular basics and advanced
  • Q3. .net basics and senerio
Round 2 - Coding Test 

Todo list in angular

Round 3 - One-on-one 

(1 Question)

  • Q1. Standard questions like yourself and experience

Interview Preparation Tips

Topics to prepare for GEP Worldwide Software Engineer interview:
  • Javascript
  • .net
  • Sql
  • Angular
Interview preparation tips for other job seekers - Get your basics prepared well

GAVS Technologies Interview FAQs

How many rounds are there in GAVS Technologies Software Engineer interview?
GAVS Technologies interview process usually has 3-4 rounds. The most common rounds in the GAVS Technologies interview process are Aptitude Test, Technical and Group Discussion.
What are the top questions asked in GAVS Technologies Software Engineer interview?

Some of the top questions asked at the GAVS Technologies Software Engineer interview -

  1. MVC pattern in spring b...read more
  2. OOPS concepts with example prog...read more
  3. How long will you be willing to work in this sect...read more

Tell us how to improve this page.

GAVS Technologies Software Engineer Interview Process

based on 6 interviews

2 Interview rounds

  • Aptitude Test Round
  • Technical Round
View more
Join GAVS Technologies AI-led digital transformation

Fast track your campus placements

View all
GAVS Technologies Software Engineer Salary
based on 212 salaries
₹2.4 L/yr - ₹10.2 L/yr
28% less than the average Software Engineer Salary in India
View more details

GAVS Technologies Software Engineer Reviews and Ratings

based on 26 reviews

4.0/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.6

Salary

3.6

Job security

4.0

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 26 Reviews and Ratings
Senior Engineer
607 salaries
unlock blur

₹6.7 L/yr - ₹23.5 L/yr

Engineer
284 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Lead Engineer
269 salaries
unlock blur

₹9 L/yr - ₹33 L/yr

Senior Software Engineer
226 salaries
unlock blur

₹6.1 L/yr - ₹25 L/yr

Software Engineer
211 salaries
unlock blur

₹2.4 L/yr - ₹10.4 L/yr

Explore more salaries
Compare GAVS Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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