Upload Button Icon Add office photos

Filter interviews by

Vegazva Engineering Checker Interview Questions and Answers

Updated 18 Aug 2024

Vegazva Engineering Checker Interview Experiences

1 interview found

Checker Interview Questions & Answers

user image Anonymous

posted on 18 Aug 2024

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

(2 Questions)

  • Q1. Personal info about yourself
  • Q2. Past working profession and culture and the job requirement standards

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good experience...

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Where do you stay?
  • Q2. In office time, I stay at office, At holiday and off office time, I usually stay at my home. Some time I also stay in shopping malls.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jun 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 - Technical 

(1 Question)

  • Q1. Most of questions related project base and Apache Hadoop, Spark fundamental and also indept question in above areas
Round 3 - Group Discussion 

Spark and Hadoop architecture, Linux command , python , pyspark question

Round 4 - HR 

(1 Question)

  • Q1. They were asking related CTC, location etc.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Programming mandatory (c cpp java ...)

Round 3 - Technical 

(1 Question)

  • Q1. You should be technically sound as per mentioned in cv.
Round 4 - HR 

(1 Question)

  • Q1. Just a salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Before go for interview, you should be prepared as per mention in resume.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Question on C
  • Q2. Linux basics, and domain specific
Round 2 - One-on-one 

(2 Questions)

  • Q1. Linux Internals
  • Q2. Threads and processes
Round 3 - HR 

(1 Question)

  • Q1. Basic details, offer

Interview Preparation Tips

Topics to prepare for Amantya Technologies Technical Lead interview:
  • DSA
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Introduction about your self
  • Ans. 

    Experienced project engineer with a background in civil engineering and a proven track record of successfully managing large-scale construction projects.

    • Bachelor's degree in Civil Engineering from XYZ University

    • 5+ years of experience in project management

    • Proficient in AutoCAD and project management software

    • Led a team of engineers to successfully complete a $10 million construction project on time and within budget

  • Answered by AI
  • Q2. About Work which you are doing currently
  • Q3. I am Domain Engg (SFSD)

Interview Preparation Tips

Interview preparation tips for other job seekers - Try and Try don.t lose hope one day you got good job
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 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 - One-on-one 

(2 Questions)

  • Q1. Previous role and experience
  • Q2. Willingness to relocate
Round 3 - One-on-one 

(2 Questions)

  • Q1. Domain knowledge and overall experience
  • Q2. Willingness to move to a third party
Round 4 - One-on-one 

(2 Questions)

  • Q1. Overall career journey and fitment to the role
  • Q2. What challanges do i anticipate and how would i overcome them
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 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 

GENERAL APTITITUDE TEST - GENERAL AND NUMERICAL QUESTIONS.

Round 3 - Group Discussion 

GLOBAL RECESSIONS- ITS EFFECTS

Round 4 - Technical 

(1 Question)

  • Q1. TECHNICAL QUESTIONS ABOUT JOBS

Interview Preparation Tips

Interview preparation tips for other job seekers - AWARE OF GENERAL HOT TOPICS

Interview Questionnaire 

1 Question

  • Q1. Operational

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

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

Vegazva Engineering Interview FAQs

How many rounds are there in Vegazva Engineering Checker interview?
Vegazva Engineering interview process usually has 1 rounds. The most common rounds in the Vegazva Engineering interview process are HR.
How to prepare for Vegazva Engineering Checker 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 Vegazva Engineering. The most common topics and skills that interviewers at Vegazva Engineering expect are Aisc, Checker, Tekla, Detailing and Steel Structures.

Tell us how to improve this page.

Vegazva Engineering Checker Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 142 Interviews
Affine Interview Questions
3.3
 • 49 Interviews
JMR Infotech Interview Questions
4.3
 • 29 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
PC Solutions Interview Questions
3.7
 • 16 Interviews
View all
Design Engineer
23 salaries
unlock blur

₹4.2 L/yr - ₹7 L/yr

Electrical Engineer
10 salaries
unlock blur

₹4.5 L/yr - ₹5.4 L/yr

Assistant Manager
9 salaries
unlock blur

₹5.1 L/yr - ₹7.3 L/yr

Senior Design Engineer
9 salaries
unlock blur

₹5.5 L/yr - ₹6.9 L/yr

Senior Manager
8 salaries
unlock blur

₹14.5 L/yr - ₹21.1 L/yr

Explore more salaries
Compare Vegazva Engineering with

HCL Infosystems

3.9
Compare

PC Solutions

3.7
Compare

DynPro

3.8
Compare

360 Degree Cloud Technologies

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