Upload Button Icon Add office photos

Filter interviews by

Public Health Engineering Department Multi Tasking Staff Interview Questions and Answers

Updated 28 Jun 2024

Public Health Engineering Department Multi Tasking Staff Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is more important techniques for the growth of your jobs
  • Ans. 

    Adapting to new technologies and continuous learning are the most important techniques for job growth.

    • Continuous learning through courses, workshops, and certifications

    • Adapting to new technologies and tools in the industry

    • Networking and building relationships with professionals in the field

    • Seeking feedback and implementing improvements

    • Setting clear career goals and working towards them

  • Answered by AI
  • Q2. What is the promotion of working ?
  • Ans. 

    Promotion of working refers to the advancement in one's career or job position through hard work, dedication, and skills improvement.

    • Promotion can be achieved by consistently performing well in one's current role

    • Seeking opportunities for growth and development within the organization

    • Acquiring new skills and knowledge relevant to the job

    • Building strong relationships with colleagues and supervisors

    • Demonstrating leadershi...

  • Answered by AI
  • Q3. Is it possible to work through online?
  • Ans. 

    Yes, it is possible to work online through various platforms and tools.

    • Many companies offer remote work opportunities through online platforms such as Zoom, Slack, and Google Drive.

    • Freelancers can work online through websites like Upwork and Fiverr.

    • Online education platforms like Coursera and Udemy allow instructors to teach remotely.

    • E-commerce businesses can operate entirely online through websites like Amazon and Sho

  • Answered by AI
  • Q4. Are the job your company being paid well
  • Q5. Does the company business being provided good product for the customer?
  • Ans. 

    Yes, the company provides good products for the customers.

    • The company conducts regular quality checks on its products to ensure they meet customer expectations.

    • Customer feedback is collected and used to make improvements to the products.

    • The company has a strong reputation for delivering high-quality products in the market.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Looking forward to find out more information about shortcut is not an easy way out but to discuss about working is really good

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About my past experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice recommendation
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 - Technical 

(2 Questions)

  • Q1. Tell about your Project Experience
  • Ans. 

    I have extensive project experience in managing teams and delivering successful outcomes.

    • Led a team of 10 developers to successfully deliver a software application within the given timeline and budget.

    • Managed a project to implement a new CRM system, resulting in improved customer satisfaction and increased sales.

    • Coordinated a cross-functional team to develop and launch a new product, achieving a 20% increase in market ...

  • Answered by AI
  • Q2. How do you resolve the conflict
  • Ans. 

    I resolve conflicts by actively listening to all parties involved, identifying the root cause, and facilitating open communication to find a mutually agreeable solution.

    • Actively listen to all parties involved to understand their perspectives

    • Identify the root cause of the conflict

    • Facilitate open communication and encourage all parties to express their concerns

    • Explore potential solutions and encourage compromise

    • Mediate d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answers to be specific. Need not to beat around the bush. Be honest with experiences.

I applied via Recruitment Consultant and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Apti Resoning Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy

I applied via Naukri.com and was interviewed in Jul 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Here they have work basically based on windows. So better to have c# and windows related stuff. Like win32, mfc, .net, c# . Here in my case I did not have experience in windows to ki made them clear about ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds were there and one more technical round with US panel were there. They were very cooperative.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Dec 2022. 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 

(6 Questions)

  • Q1. How do you find the code performance issue in the code deployed in production?
  • Ans. 

    To find code performance issues in production, use monitoring tools and profiling techniques.

    • Use monitoring tools like New Relic, AppDynamics, or Datadog to track performance metrics and identify bottlenecks.

    • Use profiling techniques like CPU profiling, memory profiling, and network profiling to pinpoint specific areas of the code that are causing performance issues.

    • Analyze logs and error messages to identify patterns a...

  • Answered by AI
  • Q2. What is asynchronous programming
  • Ans. 

    Asynchronous programming is a programming paradigm that allows multiple tasks to run concurrently without blocking each other.

    • Asynchronous programming is used to improve the performance of applications that require a lot of I/O operations.

    • It involves the use of callbacks, promises, and async/await keywords in JavaScript.

    • Asynchronous programming can be used in both front-end and back-end development.

    • Examples of asynchro...

  • Answered by AI
  • Q3. Write a program to change background after every 0.5 sec interval to orange,white,green on button click in Angular?
  • Ans. 

    Program to change background color on button click in Angular

    • Create a button in Angular template

    • Add click event listener to the button

    • Use setInterval() function to change background color after every 0.5 sec

    • Use ngStyle directive to change background color dynamically

  • Answered by AI
  • Q4. How to load a component only after 3 of my services are loaded?
  • Ans. 

    Use Angular's 'resolve' property to load component after services are loaded.

    • Create a resolver service that waits for all three services to complete before resolving.

    • Add the resolver service to the 'resolve' property of the component's route.

    • Access the resolved data in the component using the ActivatedRoute service.

    • Example: { path: 'my-component', component: MyComponent, resolve: { data: MyResolverService } }

  • Answered by AI
  • Q5. What is difference between iquerable and ienumrable
  • Ans. 

    IQueryable is for querying data from a source that implements IQueryable interface while IEnumerable is for iterating over a collection of data.

    • IQueryable is used for deferred execution while IEnumerable is used for immediate execution.

    • IQueryable is used for querying data from a remote data source while IEnumerable is used for querying data from an in-memory collection.

    • IQueryable is more efficient for large datasets as...

  • Answered by AI
  • Q6. When you go with entity framework and ado.net
  • Ans. 

    Entity Framework is an ORM while ADO.NET is a data access technology.

    • Entity Framework is easier to use and provides more abstraction than ADO.NET.

    • ADO.NET is faster and more flexible than Entity Framework.

    • Use Entity Framework for simple CRUD operations and ADO.NET for complex queries and performance-critical applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on skills from your resume. Prepare more on Angular,Design patterns. Should have knowledge on Azure.

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 - Coding Test 

It was straightforward

Round 3 - HR 

(2 Questions)

  • Q1. Was easy explaining about role
  • Q2. Previous experience. How to handle the role and expectation. Work schedule. Explain about the team
  • Ans. 

    The candidate should discuss their previous experience, how they handle their role and expectations, their work schedule, and provide an explanation about their previous team.

    • Discuss previous experience in software engineering roles

    • Explain how you handled your role and met expectations in previous positions

    • Describe your typical work schedule and any flexibility you have

    • Provide an overview of your previous team, their s

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

String and arrays duplicate and sorting questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project details
  • Q2. Project deployment
Round 3 - HR 

(2 Questions)

  • Q1. Previous company details
  • Q2. CTC discussion and company review

I applied via LinkedIn and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

50 questions 12 mins

Round 2 - Technical 

(1 Question)

  • Q1. Quant based questions (P&C,Averages,probability) followed by case study

Interview Preparation Tips

Interview preparation tips for other job seekers - approach is important more than the answer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 5 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 a 45 mins online aptitude test

Round 3 - Group Discussion 

We had 2 rounds in Group discussion

Round 4 - One-on-one 

(1 Question)

  • Q1. The interviewer asked to solve the question live in a video call
Round 5 - Technical 

(1 Question)

  • Q1. The interviewer asked to explain by final year project

Public Health Engineering Department Interview FAQs

How many rounds are there in Public Health Engineering Department Multi Tasking Staff interview?
Public Health Engineering Department interview process usually has 1 rounds. The most common rounds in the Public Health Engineering Department interview process are Technical.
What are the top questions asked in Public Health Engineering Department Multi Tasking Staff interview?

Some of the top questions asked at the Public Health Engineering Department Multi Tasking Staff interview -

  1. Does the company business being provided good product for the custom...read more
  2. What is the promotion of workin...read more
  3. Is it possible to work through onli...read more

Tell us how to improve this page.

Public Health Engineering Department Multi Tasking Staff Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

ZoomRx Interview Questions
3.0
 • 33 Interviews
Air Liquide Interview Questions
3.7
 • 22 Interviews
ResMed Interview Questions
3.8
 • 16 Interviews
Qi Spine Clinic Interview Questions
3.3
 • 15 Interviews
BeatO Interview Questions
3.4
 • 14 Interviews
View all

Public Health Engineering Department Multi Tasking Staff Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Junior Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Computer Operator
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Officer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

District Coordinator
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Public Health Engineering Department with

Water and Sanitation Management Organisation

3.5
Compare

National Health Mission

3.5
Compare

WaterAid

3.9
Compare

Sulabh International Social Service Organisation

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