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

Clear (1)

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 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)

 Performance Test Engineer

 (1)

 Automation Test 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 Resume 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

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

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

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Genpact

No Interviews

INTERVIEWS

Novopay Solutions

No Interviews

SALARIES

Bridgei2i Analytics Solutions

INTERVIEWS

Larsen & Toubro Limited

No Interviews

INTERVIEWS

Larsen & Toubro Limited

No Interviews

LIST OF COMPANIES

Bridgei2i Analytics Solutions

Overview

INTERVIEWS

Genpact

No Interviews

INTERVIEWS

Samsung

No Interviews

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 - ₹9.9 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.1/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
608 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
284 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
283 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
229 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
212 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent