Upload Button Icon Add office photos

Gilbarco Veeder Root

Compare button icon Compare button icon Compare

Filter interviews by

Gilbarco Veeder Root Principal Software Engineer Interview Questions and Answers

Updated 14 Apr 2024

Gilbarco Veeder Root Principal Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical System Architecture Design questions
  • Q2. Asked to Draw design diagrams with solution
Round 2 - One-on-one 

(1 Question)

  • Q1. Management questions

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed before Apr 2022. 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 - Coding Test 

C, DS understanding and

Round 3 - Coding Test 

C and C++ and domain knowledge

Round 4 - Aptitude Test 

General aptitude test

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

I applied via Campus Placement and was interviewed in Oct 2022. There were 4 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 - Coding Test 

Online coding test and aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Dsa and memory management basics
Round 4 - Technical 

(1 Question)

  • Q1. Puzzles and Dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Dsa , OOPS AND sql
Interview experience
4
Good
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 

General Aptitude - Time Series, Probability & statistics

Round 3 - Technical 

(1 Question)

  • Q1. General Interview questions on Operator Overriding , Method Overloading

Interview Preparation Tips

Interview preparation tips for other job seekers - Perform well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical reasoning and technical aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Design a tic tac toe game
  • Ans. 

    A simple tic tac toe game design with a 3x3 grid and two players taking turns to place their marks.

    • Create a 3x3 grid to represent the game board

    • Allow two players to take turns placing their marks (X or O) on the grid

    • Check for a win condition after each move to determine the winner

    • Handle tie game if all spaces on the grid are filled without a winner

  • Answered by AI
  • Q2. Questions based on resume
Round 3 - Technical 

(2 Questions)

  • Q1. Oops concept based questions
  • Q2. Designing a login page
  • Ans. 

    Designing a login page for a software application

    • Include fields for username and password

    • Implement password strength validation

    • Provide option for password reset

    • Incorporate CAPTCHA for security

    • Utilize HTTPS for secure communication

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. About yourself description
  • Q2. Interests and hobbies

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

60 questions to be done in 60 mins

Round 2 - Technical 

(2 Questions)

  • Q1. String DSA questions
  • Q2. Applications of Data Structures
  • Ans. 

    Data structures are used to store and organize data efficiently in computer programs.

    • Data structures help in efficient searching, sorting, and manipulation of data.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Applications include database management systems, file systems, and network protocols.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
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 - Technical 

(2 Questions)

  • Q1. About basic oops concepts and SQL concepts
  • Q2. How resize win form according to screen size
  • Ans. 

    To resize a win form according to screen size, use the Anchor property and the SizeChanged event.

    • Set the Anchor property of the form and its controls to adjust their position and size relative to the form's edges.

    • Handle the SizeChanged event of the form to update the size and position of the controls based on the new form size.

    • Use the Screen class to get the size of the screen and adjust the form size accordingly.

    • Consi...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Managerial round about project details

Interview Preparation Tips

Interview preparation tips for other job seekers - Good exposure had a great interview. One more client round will be there.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Feb 2023. 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 

It was basically mcq on dsa and os

Round 3 - Technical 

(1 Question)

  • Q1. Sort 0s 1s and 2s,linked list based questions,basic oops consepts and puzzle
Round 4 - Technical 

(1 Question)

  • Q1. Qusestions were mostly on my projects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding related to Arrays and String

Round 2 - Technical 

(1 Question)

  • Q1. Explain your project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm, answer confidently
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response
Round 1 - Coding Test 

30 question of c code snippet 5 question of aptitude and 2 coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Storage class in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are 4 storage classes in C: auto, register, static, and extern.

    • Auto variables are stored in memory and have local scope.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed by other files.

  • Answered by AI
  • Q2. Mutex and semaphore

Interview Preparation Tips

Interview preparation tips for other job seekers - not selected

Skills evaluated in this interview

Gilbarco Veeder Root Interview FAQs

How many rounds are there in Gilbarco Veeder Root Principal Software Engineer interview?
Gilbarco Veeder Root interview process usually has 2 rounds. The most common rounds in the Gilbarco Veeder Root interview process are One-on-one Round.
What are the top questions asked in Gilbarco Veeder Root Principal Software Engineer interview?

Some of the top questions asked at the Gilbarco Veeder Root Principal Software Engineer interview -

  1. Asked to Draw design diagrams with solut...read more
  2. Technical System Architecture Design questi...read more
  3. Management questi...read more

Tell us how to improve this page.

Gilbarco Veeder Root Principal Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Dover India Interview Questions
4.0
 • 27 Interviews
Toshiba Interview Questions
4.0
 • 27 Interviews
Sulzer Interview Questions
3.9
 • 27 Interviews
Buhler Interview Questions
3.9
 • 25 Interviews
Kennametal Interview Questions
3.6
 • 24 Interviews
Konecranes Interview Questions
4.0
 • 21 Interviews
Trelleborg Interview Questions
4.0
 • 18 Interviews
View all
Service Engineer
114 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Service Manager
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Field Service Engineer
48 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Gilbarco Veeder Root with

Dover India

4.0
Compare

OPW India

4.9
Compare

Takata Corporation

4.9
Compare

Ge India Industrial

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