Upload Button Icon Add office photos

Filter interviews by

Vadodara Municipal Corporation Interview Questions and Answers

Updated 19 Jan 2022

Vadodara Municipal Corporation Interview Experiences

1 interview found

I applied via Company Website

Interview Questionnaire 

2 Questions

  • Q1. How to get water in the vadodar..?by gravity or by pumping
  • Ans. 

    Water can be obtained in Vadodara both by gravity and pumping.

    • Gravity-based water supply is possible in areas with higher elevation than the water source.

    • Pumping is required in areas with lower elevation than the water source.

    • Vadodara has both gravity-based and pumping-based water supply systems.

    • The Sursagar Lake in Vadodara is a source of gravity-based water supply.

    • The pumping-based water supply in Vadodara is facilit

  • Answered by AI
  • Q2. By gravity get water in to VADODARA

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was very easy bt all questions is related to civil engineering.

Deputy Executive Engineer Interview Questions asked at other Companies

Q1. How to get water in the vadodar..?by gravity or by pumping
View answer (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self?
  • Ans. 

    I am a dedicated and experienced Planning Engineer with a strong background in project management and scheduling.

    • I have a Bachelor's degree in Civil Engineering

    • I have over 5 years of experience in planning and scheduling construction projects

    • I am proficient in using software such as Primavera P6 and Microsoft Project

    • I have successfully managed multiple projects from initiation to completion, ensuring they are delivered

  • Answered by AI
  • Q2. Total work experience in hvac
  • Ans. 

    I have 8 years of total work experience in HVAC.

    • I have worked in HVAC for 8 years

    • Experience includes designing, installing, and maintaining HVAC systems

    • Familiar with various HVAC equipment and technologies

    • Managed HVAC projects and teams

    • Certifications in HVAC systems

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. LTE Frame Structure
  • Q2. Type 1 and Type 2
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 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 

(5 Questions)

  • Q1. Difference btwn jdk , jre and jvm
  • Ans. 

    JDK is a development kit that includes JRE and tools for developing Java applications. JRE is a runtime environment for executing Java programs. JVM is a virtual machine that runs Java bytecode.

    • JDK (Java Development Kit) includes JRE (Java Runtime Environment) and development tools like compiler and debugger.

    • JRE (Java Runtime Environment) is a software package that provides the libraries and components necessary for ru...

  • Answered by AI
  • Q2. Difference btwn static and volatile
  • Ans. 

    Static variables are shared among all instances of a class, while volatile variables are used to indicate that a variable's value will be modified by different threads.

    • Static variables are initialized only once at the start of the program and retain their value throughout the program's execution.

    • Volatile variables are used to ensure visibility of changes to variables across multiple threads.

    • Static variables are accesse...

  • Answered by AI
  • Q3. What is final keyword
  • Ans. 

    Final keyword is used in Java to declare constants, prevent method overriding, and prevent class inheritance.

    • Used to declare constants - value cannot be changed once assigned

    • Prevents method overriding - method cannot be overridden in child classes

    • Prevents class inheritance - class cannot be extended

  • Answered by AI
  • Q4. Difference btwn paralle stream and stream
  • Ans. 

    Parallel stream allows processing elements concurrently, while stream processes elements sequentially.

    • Parallel stream can improve performance by utilizing multiple threads for processing.

    • Stream processes elements one by one in a sequential manner.

    • Example: stream().parallel() vs stream().sequential()

  • Answered by AI
  • Q5. What is stream used for
  • Ans. 

    Streams are used in Java to process collections of objects in a functional style.

    • Streams allow for concise and readable code when working with collections.

    • They support operations like filter, map, reduce, and collect.

    • Streams can be sequential or parallel, depending on the processing requirements.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("A")).forEach(S

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. How you conveyance in the customer?
  • Ans. 

    I convey confidence, knowledge, and empathy to build trust with the customer.

    • Listen actively to understand the customer's needs and concerns.

    • Communicate clearly and effectively to address any questions or objections.

    • Show empathy and understanding to build rapport and trust.

    • Demonstrate product knowledge and expertise to instill confidence in the customer.

    • Use persuasive language and techniques to highlight the benefits o...

  • Answered by AI
  • Q2. Okay, convince me why should I hire you!
  • Q3. How many customer attend you a time? give me a example!
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2023. 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 - Technical 

(2 Questions)

  • Q1. Salary and benefits
  • Q2. Culture and maintenance

Interview Preparation Tips

Interview preparation tips for other job seekers - Good skill development and learning

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Oct 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was a combination of coding and aptitude test. The test had four section and each section had it's time limit.

Round 3 - Technical 

(3 Questions)

  • Q1. The interviewer asked me question based on my resume. He also asked me question related to DBMS, OS & DSA.
  • Q2. Define polymorphism.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • For example, a parent class Animal can have child classes like Dog, Cat, and Bird, each with their own unique implementation of the method 'makeSound'.

  • Answered by AI
  • Q3. Difference between SQL & NoSQL.
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL databases use structured query language for defining and manipulating the data.

    • NoSQL databases are schema-less and use various data models like key-value, document, columnar, or graph.

    • SQL databases are suitable for complex queries and transactions.

    • NoSQL databases are horizontally scalable and provide high perf...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. It was a managerial round.
Round 5 - HR 

(1 Question)

  • Q1. It asked me some situational based questions.

Interview Preparation Tips

Topics to prepare for Telstra Associate Software Engineer interview:
  • DBMS
  • DSA
  • OS
Interview preparation tips for other job seekers - Do revise core java concepts. Also be clear with what you know and what you don't. Hope you crack the interview. All the best :))

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There will be some mcq and coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. This is will be a 30 mins interview.
  • Q2. Questions on python,networking,ds,os
Round 3 - Technical 

(1 Question)

  • Q1. Coding question on c,c++,python. Basics of networking ,oops and os.

Interview Preparation Tips

Topics to prepare for CommScope Software Engineer interview:
  • Python
  • OOPS
  • Computer Networking
Interview preparation tips for other job seekers - Brush up your coding skills and networking then you will ace it. Best of luck.
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Safety related questions
  • Q2. Permit to work related
Round 3 - Technical 

(1 Question)

  • Q1. Tool box talk related

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was amazing and my experience also good
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 Mar 2022. There was 1 interview round.

Interview Questionnaire 

16 Questions

  • Q1. Introduce yourself
  • Q2. How many years of experience?
  • Q3. Are you technical or non technical?
  • Q4. Tell me your job Roles and responsibilities?
  • Q5. What is your current CTC?
  • Q6. What is your expected CTC?
  • Ans. 

    My expected CTC is negotiable based on the job responsibilities, company size, and location.

    • My expected CTC is based on my experience, skills, and industry standards.

    • I am open to discussing the compensation package during the interview process.

    • I am looking for a competitive salary that aligns with my qualifications and the market rate.

  • Answered by AI
  • Q7. What's your graduation?
  • Q8. What's your preferred job location?
  • Q9. You're from which state?
  • Q10. Do ready for technical round?
  • Q11. Once compete your technical round will let you know
  • Q12. What it is your notice period?
  • Q13. What's is your current company?
  • Q14. What's your job rol
  • Q15. Are you able to do rotational shifts?
  • Ans. 

    Yes, I am able to do rotational shifts as required for the job.

    • I am flexible with my work schedule and can adapt to different shifts

    • I have previous experience working in rotational shifts

    • I understand the importance of maintaining network operations 24/7, which may require working different shifts

  • Answered by AI
  • Q16. Are you able to night shift?

Vadodara Municipal Corporation Interview FAQs

What are the top questions asked in Vadodara Municipal Corporation interview?

Some of the top questions asked at the Vadodara Municipal Corporation interview -

  1. How to get water in the vadodar..?by gravity or by pump...read more
  2. By gravity get water in to VADOD...read more

Tell us how to improve this page.

Vadodara Municipal Corporation Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Vadodara Municipal Corporation Reviews and Ratings

based on 37 reviews

4.3/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

4.2

Salary

3.9

Job security

4.3

Company culture

3.5

Promotions

4.0

Work satisfaction

Explore 37 Reviews and Ratings
Medical Officer
8 salaries
unlock blur

₹3.9 L/yr - ₹14 L/yr

Additional Assistant Engineer
5 salaries
unlock blur

₹2.4 L/yr - ₹8.4 L/yr

Computer Operator
4 salaries
unlock blur

₹1 L/yr - ₹2 L/yr

Data Entry Operator
4 salaries
unlock blur

₹1.1 L/yr - ₹1.8 L/yr

Deputy Executive Engineer
4 salaries
unlock blur

₹2 L/yr - ₹15 L/yr

Explore more salaries
Compare Vadodara Municipal Corporation with

Brihanmumbai Municipal Corporation

4.4
Compare

Kolkata Municipal Corporation

3.4
Compare

Ahmedabad Municipal Corporation

4.1
Compare

Pune Municipal Corporation

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