Upload Button Icon Add office photos

Filter interviews by

AABSyS IT GIS Engineer Interview Questions and Answers

Updated 14 Sep 2024

AABSyS IT GIS Engineer Interview Experiences

2 interviews found

GIS Engineer Interview Questions & Answers

user image Anonymous

posted on 23 May 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Cad basic questions
  • Q2. Experience or course

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company , salary very low

GIS Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Aug 2022

I applied via Walk-in and was interviewed before Aug 2021. There were 2 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 - One-on-one 

(1 Question)

  • Q1. AutoCAD command And some technical word of Telecom

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidently say all questions answered

GIS Engineer Interview Questions Asked at Other Companies

asked in RMSI
Q1. What would you know about the mapping
asked in Garmin
Q2. Can you identify these objects (from a raster chart)
Q3. What is mean by kml kmz
Q4. What is HLD design? How to receive input from client
Q5. Do you have any technical certifications?How many programming lan ... read more

Interview questions from similar companies

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

(1 Question)

  • Q1. What is server and abap server
  • Ans. 

    A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.

    • A server is a computer or software that provides services or resources to other computers or programs.

    • ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.

    • ABAP server handles requests from clients and executes A...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy and good English passage reading

Round 2 - Technical 

(1 Question)

  • Q1. Projects coding dbms queries basic coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview learn about project and basic coding

I applied via LinkedIn and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. C,C++,JAVA,PHYTON ,PROJECT
  • Q2. ALL THING ANSWER GIVEN BY ME

Interview Preparation Tips

Interview preparation tips for other job seekers - GOOD COMUNICATION SKILL,GOOD KNOWLEEDGE
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Tudip is one of the company whose selection process is very easy only its PI may be quite hard

Interview Preparation Tips

Topics to prepare for Tudip Technologies Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Learn basics of aptitude and coding and prectice basic questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

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

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
3
Average
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 

Not so much difficult. english comprehension matters for this test.

Round 3 - Technical 

(2 Questions)

  • Q1. Departmental question asked.
  • Q2. What is C++ and what are the basics
  • Ans. 

    C++ is a high-level programming language used for developing system software, application software, and video games.

    • C++ is an extension of the C programming language

    • It supports object-oriented programming concepts like classes, inheritance, polymorphism, etc.

    • It is a compiled language and provides low-level memory manipulation features

    • C++ is widely used in developing operating systems, device drivers, game engines, and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up your IT knowledge. also, increase your confidence.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude test was easy level and moderate level.

Round 2 - Coding Test 

Coding test was held in the google form which was very easy.

Round 3 - Technical 

(3 Questions)

  • Q1. What is volatile keyword?
  • Ans. 

    The volatile keyword in software engineering is used to indicate that a variable's value can be modified by multiple threads.

    • Volatile keyword ensures that the variable's value is always read from and written to the main memory, rather than cached in a thread's local cache.

    • It is used to prevent unexpected behavior in multi-threaded environments where multiple threads may access and modify the same variable simultaneousl...

  • Answered by AI
  • Q2. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have abstract methods that must be implemented by its subclasses.

    • An abstract class can also have non-abstract methods that can be inherited by its subclasses.

    • An abstract class provides a common interface for its subclasses.

    • An abstract class can have instance variables and constructors.

    • An abstract class cannot be...

  • Answered by AI
  • Q3. Where do you use abstract class
  • Ans. 

    Abstract classes are used to provide a common interface and partial implementation for related classes.

    • Abstract classes are used when you want to create a base class that cannot be instantiated on its own but can be inherited by other classes.

    • They are useful when you want to define common methods and properties that multiple related classes should have.

    • Abstract classes can have both abstract and non-abstract methods.

    • Ab...

  • Answered by AI

Skills evaluated in this interview

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

A question regarding patterns that involves dynamic pattern problems.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do with java and study php

AABSyS IT Interview FAQs

How many rounds are there in AABSyS IT GIS Engineer interview?
AABSyS IT interview process usually has 1-2 rounds. The most common rounds in the AABSyS IT interview process are Resume Shortlist, One-on-one Round and HR.
How to prepare for AABSyS IT GIS Engineer 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 AABSyS IT. The most common topics and skills that interviewers at AABSyS IT expect are GIS and Telecom.
What are the top questions asked in AABSyS IT GIS Engineer interview?

Some of the top questions asked at the AABSyS IT GIS Engineer interview -

  1. AutoCAD command And some technical word of Tele...read more
  2. Cad basic questi...read more

Tell us how to improve this page.

AABSyS IT GIS Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 797 Interviews
Coforge Interview Questions
3.3
 • 520 Interviews
Cyient Interview Questions
3.7
 • 288 Interviews
View all
AABSyS IT GIS Engineer Salary
based on 139 salaries
₹1 L/yr - ₹3.6 L/yr
33% less than the average GIS Engineer Salary in India
View more details

AABSyS IT GIS Engineer Reviews and Ratings

based on 34 reviews

3.4/5

Rating in categories

3.4

Skill development

3.2

Work-life balance

2.1

Salary

3.7

Job security

4.0

Company culture

2.1

Promotions

3.1

Work satisfaction

Explore 34 Reviews and Ratings
GIS Engineer
139 salaries
unlock blur

₹1 L/yr - ₹3.6 L/yr

Telecom Engineer
76 salaries
unlock blur

₹1.4 L/yr - ₹4.5 L/yr

CAD and GIS Engineer
72 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

CAD Engg
55 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

QC Lead
28 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Explore more salaries
Compare AABSyS IT with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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