Upload Button Icon Add office photos

Cyient

Compare button icon Compare button icon Compare

Filter interviews by

Cyient Junior GIS Engineer Interview Questions and Answers

Updated 2 Nov 2022

Cyient Junior GIS Engineer Interview Experiences

2 interviews found

I applied via Referral and was interviewed before Nov 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 

Basic level of aptitude test and computer knowledge

Round 3 - Technical 

(2 Questions)

  • Q1. About our projects in college or etc
  • Q2. Asked Self introduction and career related

Interview Preparation Tips

Interview preparation tips for other job seekers - Have the experience to learn new things as a fresher and keep going to grow

I applied via Referral and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introduction and working experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Junior GIS Engineer Interview Questions Asked at Other Companies

Q1. What is GIS?, what are the types in GIS?,Do u know AutoCAD?
Q2. AutoCAD experience

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Oct 2021. There were 4 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 

Aptitude test has aptitude, logical and 2 coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Asked about the basics of c, data structures, aptitude questions and questions related to your major
Round 4 - HR 

(1 Question)

  • Q1. General hr discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you keep in resume what you know. Most of the questions will be from your resume

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

Interview Questionnaire 

1 Question

  • Q1. Java basics, College Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. Be confident and answer. If you don't know the answer, tell that without hesitation.

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

It was an Aptitude test and Technical objective test of 60 minutes followed by a Coding test of 90 minutes.There was a 1 hour gap b/w the two tests.

  • Q1. 

    Count Derangements

    Determine the number of derangements possible for a set of 'N' elements. A derangement is a permutation where no element appears in its original position.

    Input:

    An integer 'T' repres...
  • Ans. 

    Count the number of derangements possible for a set of 'N' elements.

    • Derangement is a permutation where no element appears in its original position.

    • Use dynamic programming to calculate derangements efficiently.

    • Apply the formula: D(n) = (n-1) * (D(n-1) + D(n-2)), with base cases D(1) = 0 and D(2) = 1.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q3. 

    Common Elements Problem Statement

    Identify and output the common strings present in both given arrays of lowercase alphabets for each test case.

    Input:

    The first line contains an integer 'T' representin...
  • Ans. 

    The problem requires identifying and outputting common strings present in two arrays of lowercase alphabets for each test case.

    • Iterate through the elements of the second array and check if they are present in the first array.

    • Use a hash set or map to efficiently check for common elements.

    • Return the common strings in the order they appear in the second array.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question from DSA particulary Trees and after that some questions from OOPS were asked.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree.

    • Traverse the binary tree level by level, alternating the direction of traversal.

    • Use a queue to keep track of nodes at each level.

    • Append nodes to the result list based on the traversal direction.

    • Handle null nodes appropriately to maintain the spiral order.

    • Example: Input: 1 2 3 -1 -1 4 5, Output: 1 3 2 4 5

  • Answered by AI
  • Q2. What is the difference between an Abstract Class and an Interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface can only have constants and abstract methods.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to provide a common base for subclasses, while interfaces are used to define a contr...

  • Answered by AI
  • Q3. What is the static keyword in Java?
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an object of the class.

    • Static blocks are used to initialize static variables.

    • Example: public static int count = 0;

  • Answered by AI
  • Q4. What is the difference between a constructor and a method in Object-Oriented Programming?
  • Ans. 

    Constructor is a special method used to initialize objects, while a method is a regular function that performs a specific task.

    • Constructors are called automatically when an object is created, while methods need to be called explicitly.

    • Constructors have the same name as the class, while methods have unique names.

    • Constructors do not have a return type, while methods have a return type.

    • Example: Constructor - public ClassN...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 questions from DSA and after that some basic HR questions were asked.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the input string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. Best sorting although and its working they asked
  • Q2. Write a program to replace the character with another character in java.
  • Ans. 

    A program to replace a character with another character in Java.

    • Create a string variable with the original text

    • Use the replace() method to replace the character with another character

    • Print the new string with the replaced character

  • Answered by AI
  • Q3. SQL queries on order by, group by, and it's difference they asked.
  • Q4. Project management experience they asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on the basis concepts and be perfect on your resume they are not expecting much from you as you are a fresher.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I had applied through linkedin in feb 2021 for Pune, India. whole process from being interviewed to get an offer took 2 weeks approx. There were 2 technical rounds followed by 1 HR round. Each technical ro...

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm and don't bluff for anything. If you don't know any answer simply say I am sorry, I don't know or if you guessing any answer please mention that I am not very sure about this but on the basis of my knowledge I can say "your answer".
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Actually first round was Aptitude + coding . Try to solve questions from various website like India bix , U can also go for RS Agarwa . N for coding solve questions from leetcode.

Round 2 - HR 

(4 Questions)

  • Q1. They will ask only geniune questions like tell me about yourself. From where u belongs ?
  • Q2. Tell me about company !Do u have another offer in hand currently ? Do u have pan card ?
  • Ans. 

    The company is a software engineering firm.

    • The company specializes in developing software solutions.

    • It has a team of skilled software engineers.

    • The company focuses on delivering high-quality products.

    • It has a strong reputation in the industry.

    • The company offers a collaborative and innovative work environment.

  • Answered by AI
  • Q3. Will u work in shift ?
  • Ans. 

    Yes, I am willing to work in shifts.

    • I am flexible and adaptable to different work schedules.

    • I understand the importance of round-the-clock support for software systems.

    • I have previous experience working in shifts.

    • I am comfortable with the potential challenges and adjustments that come with working in shifts.

  • Answered by AI
  • Q4. Areas of strength and weekness .
  • Ans. 

    My areas of strength include problem-solving, teamwork, and adaptability. My weakness is public speaking.

    • Strengths: problem-solving (e.g. developing efficient algorithms), teamwork (e.g. collaborating with colleagues on a project), adaptability (e.g. quickly learning new programming languages)

    • Weakness: public speaking (e.g. presenting technical information to a large audience)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to keep things as simple as possible . Don't feel pressure .

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Basic logical program

Round 2 - HR 

(1 Question)

  • Q1. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledge of programming in c

Interview Questionnaire 

1 Question

  • Q1. Most of the question are from my resume. Next was technical most of they questions are from java much were like facts what is the latest version of Java current in use and etc

Cyient Interview FAQs

How many rounds are there in Cyient Junior GIS Engineer interview?
Cyient interview process usually has 3 rounds. The most common rounds in the Cyient interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Cyient Junior 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 Cyient. The most common topics and skills that interviewers at Cyient expect are Analytical skills, GIS, Aerospace, Arcgis and AutoCAD.

Tell us how to improve this page.

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 798 Interviews
DXC Technology Interview Questions
3.7
 • 796 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
NTT Data Interview Questions
3.8
 • 624 Interviews
Publicis Sapient Interview Questions
3.5
 • 618 Interviews
View all
Cyient Junior GIS Engineer Salary
based on 307 salaries
₹1.2 L/yr - ₹3.6 L/yr
At par with the average Junior GIS Engineer Salary in India
View more details

Cyient Junior GIS Engineer Reviews and Ratings

based on 179 reviews

3.7/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.0

Salary

3.6

Job security

3.7

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 179 Reviews and Ratings
Design Specialist
2.1k salaries
unlock blur

₹1 L/yr - ₹7.2 L/yr

Design Engineer
1.7k salaries
unlock blur

₹2.6 L/yr - ₹11 L/yr

Software Engineer
1.2k salaries
unlock blur

₹3.5 L/yr - ₹14.9 L/yr

GIS Engineer
1.1k salaries
unlock blur

₹1 L/yr - ₹5.3 L/yr

Senior Design Engineer
882 salaries
unlock blur

₹4.3 L/yr - ₹15 L/yr

Explore more salaries
Compare Cyient with

LTIMindtree

3.8
Compare

DXC Technology

3.7
Compare

Mphasis

3.4
Compare

Sutherland Global Services

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