Upload Button Icon Add office photos

Filter interviews by

Primary Health Centre Web Developer Interview Questions and Answers

Updated 7 Nov 2022

Primary Health Centre Web Developer Interview Experiences

1 interview found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2022

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

Php topic for define php method

Round 3 - Technical 

(2 Questions)

  • Q1. Php css html java script
  • Ans. 

    Html css java script php

  • Answered Anonymously
  • Q2. Some fes topic about bootstrap

Interview Preparation Tips

Topics to prepare for Primary Health Centre Web Developer interview:
  • PHP
  • HTML
  • CSS
Interview preparation tips for other job seekers - I will be prepare for interview after within 2 days that before now I couldn't give introduce my self

Interview questions from similar companies

Web Developer Interview Questions & Answers

UST user image Tanushree Mahato

posted on 15 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good all logical type of question, easy

Round 2 - Technical 

(4 Questions)

  • Q1. Good they ask all about projects
  • Q2. What were your projects?
  • Q3. What difficulties did u face during the project
  • Q4. Sql questions were asked

Interview Preparation Tips

Topics to prepare for UST Web Developer interview:
  • SQL
  • OOPS
  • DSA
  • New Projects
Interview preparation tips for other job seekers - interview rounds are easy go for it

Web Developer Interview Questions & Answers

Wipro user image Rakesh shamrao wadile

posted on 20 Aug 2022

Round 1 - HR 

(1 Question)

  • Q1. Question:- 1)please, introduce your self introduction
  • Ans. First of all,I would like to thank you so much for giving me this great opportunity to introduce myself. I am rakesh shamrao wadile from district of dhule in maharashtra state.I am 30 year old and unmarried. I am belong to a joint and middle class family.there are seven members in my family.my father, mother and brother are labourer. I have completed M.C.M in master of computer management with 69.6...
  • Answered by Rakesh shamrao wadile
Round 2 - Coding Test 

I have given coding test on PHP,HTML,CSS

Round 3 - Technical 

(1 Question)

  • Q1. Question :- 1) what is use of php?
  • Ans. 

    PHP is a server-side scripting language used for web development.

    • PHP is used to create dynamic web pages and web applications.

    • It can interact with databases, handle forms, and manage sessions.

    • PHP can be embedded into HTML code.

    • Popular websites like Facebook, Wikipedia, and WordPress use PHP.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This naukri.com portal is best for getting jobs in IT companies.

Skills evaluated in this interview

I applied via Job Portal and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

14 Questions

  • Q1. 1) Introduce yourself.
  • Q2. 2) Technologies you have worked
  • Q3. 3) What is Hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Hoisting applies to variable and function declarations, but not to variable assignments

    • Function declarations are hoisted before variable declarations

    • Hoisting can lead to unexpected behavior and should be avoided

  • Answered by AI
  • Q4. What is difference between var and let
  • Ans. 

    var is function-scoped and let is block-scoped.

    • var declarations are hoisted to the top of their scope, while let declarations are not.

    • var can be redeclared in the same scope, while let cannot.

    • let variables are not accessible before they are declared, while var variables are.

    • let variables have a temporal dead zone, while var variables do not.

    • let is recommended for use in modern JavaScript.

  • Answered by AI
  • Q5. What is optional chaining?
  • Ans. 

    Optional chaining is a feature in JavaScript that allows you to access properties of an object without worrying about whether the object is null or undefined.

    • It uses the question mark (?) operator to check if a property exists before accessing it.

    • It can be used with both object properties and function calls.

    • It can be chained multiple times to access nested properties.

    • It was introduced in ECMAScript 2020.

  • Answered by AI
  • Q6. What is pseudo element/pseudo child
  • Ans. 

    Pseudo elements/children are CSS selectors that target specific parts of an element.

    • Pseudo elements are denoted by a double colon (::) and are used to style a specific part of an element, such as the first letter or line of text.

    • Pseudo children are denoted by a single colon (:), and are used to select a specific state of an element, such as when it is being hovered over or clicked.

    • Examples of pseudo elements include ::...

  • Answered by AI
  • Q7. What is closure
  • Ans. 

    Closure is a function that has access to its outer function's variables, even after the outer function has returned.

    • A closure is created when a function returns another function that references variables from the parent function.

    • Closures can be used to create private variables and methods in JavaScript.

    • Closures can also be used to create functions with pre-set arguments.

  • Answered by AI
  • Q8. What is difference between JavaScript and Angular
  • Ans. 

    JavaScript is a programming language used for web development, while Angular is a JavaScript framework for building web applications.

    • JavaScript is a programming language that allows developers to add interactivity and dynamic features to websites.

    • Angular is a JavaScript framework that provides a structure for building web applications.

    • JavaScript can be used independently to create web functionality, while Angular is bu...

  • Answered by AI
  • Q9. Why Angular?
  • Q10. JavaScript vs TypeScript
  • Ans. 

    TypeScript is a superset of JavaScript that adds static typing and other features.

    • TypeScript catches errors at compile time, while JavaScript only catches them at runtime.

    • TypeScript supports interfaces and classes, making it easier to write and maintain large codebases.

    • JavaScript is more flexible and easier to learn, but TypeScript offers better scalability and maintainability.

    • TypeScript can be transpiled into JavaScri...

  • Answered by AI
  • Q11. What is a service in Angular
  • Ans. 

    A service in Angular is a singleton object that can be injected into components and other services.

    • Services are used to share data and functionality across multiple components

    • Services can be used to make HTTP requests, handle authentication, and perform other tasks

    • Services are typically defined using the @Injectable decorator

    • Services can be injected into components and other services using the constructor

  • Answered by AI
  • Q12. What Angular app bootstraps
  • Ans. 

    Angular app bootstraps the root module of the application

    • Angular app bootstraps the AppModule by default

    • The bootstrap process initializes the application and loads the root component

    • The root component is usually AppComponent

  • Answered by AI
  • Q13. How two components can interact in Angular
  • Ans. 

    Components can interact in Angular through input and output bindings.

    • Input bindings allow a parent component to pass data to a child component.

    • Output bindings allow a child component to emit events to a parent component.

    • Components can also communicate through a shared service or using @ViewChild and @ContentChild decorators.

  • Answered by AI
  • Q14. Lifecycle hooks in Angular
  • Ans. 

    Lifecycle hooks are functions that allow you to tap into the lifecycle of a component or directive.

    • ngOnInit() - called after the first ngOnChanges()

    • ngOnChanges() - called when an input property changes

    • ngDoCheck() - called during every change detection run

    • ngAfterContentInit() - called after content is projected into component

    • ngAfterContentChecked() - called after every check of projected content

    • ngAfterViewInit() - calle...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please work on introduction to include your work experience as much as possible.
Speak loud and clear.
Study Above question as these are commonly asked

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

5 codes with med level que

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical round with deep and core

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

An aptitude test is a way for employers to assess a candidate's abilities through a variety of different testing formats.

Round 3 - Coding Test 

Coding interviews test candidates technical knowledge, coding ability problem solving skills, and creativity, typically on a whiteboard.

Round 4 - Case Study 

Case study is an in-depth study of one person, group, or event. In a case study, nearly every aspect of the subject's life and history is analyzed to seek patterns and causes of behaviour

Interview Preparation Tips

Topics to prepare for Wipro Web Developer interview:
  • Core PHP
  • MySQL
Interview preparation tips for other job seekers - 1.Market yourself. ...
2.Apply even if you're not fully qualified.
3.Job search like it's your job. ...
4.Use informational interviews to network.
5.Set yourself apart with letters of recommendation.
6.Know yourself and what you want. ...
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Developed by Google

    • Used for building dynamic web applications

    • Uses TypeScript for development

    • Supports two-way data binding

    • Has a component-based architecture

  • Answered by AI
  • Q2. Life cycle hoks
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about urself
  • Q2. Salary expectations

Interview Preparation Tips

Topics to prepare for UST Web Developer interview:
  • Angular

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to aptitude
  • Q2. Some questions related to mental ability

Interview Preparation Tips

Interview preparation tips for other job seekers - be cool,
the questions were simple
just think logically and answer

I applied via Monster and was interviewed in Jun 2022. 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 - Aptitude Test 

An aptitude test is a way for employers to assess a candidate's abilities through a variety of different testing formats. Aptitude tests will test your ability to perform tasks and react to situations at work. This includes problem-solving, prioritisation and numerical skills, amongst other things.

Interview Preparation Tips

Interview preparation tips for other job seekers - Market yourself. ...
Apply even if you're not fully qualified. ...
Job search like it's your job. ...
Use informational interviews to network. ...
Set yourself apart with letters of recommendation. ...
Know yourself and what you want. ...
Pump yourself up and stay positive.

I applied via Company Website and was interviewed in May 2022. There were 3 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 
Round 3 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Self introduction and web developer

Primary Health Centre Interview FAQs

How many rounds are there in Primary Health Centre Web Developer interview?
Primary Health Centre interview process usually has 3 rounds. The most common rounds in the Primary Health Centre interview process are Resume Shortlist, Assignment and Technical.
What are the top questions asked in Primary Health Centre Web Developer interview?

Some of the top questions asked at the Primary Health Centre Web Developer interview -

  1. Php css html java scr...read more
  2. Some fes topic about bootst...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wipro Interview Questions
3.7
 • 5.6k Interviews
Tata Motors Interview Questions
4.2
 • 993 Interviews
Tata Steel Interview Questions
4.1
 • 830 Interviews
Asian Paints Interview Questions
4.0
 • 637 Interviews
Maruti Suzuki Interview Questions
4.2
 • 595 Interviews
JSW Steel Interview Questions
3.9
 • 569 Interviews
Samsung Interview Questions
4.0
 • 555 Interviews
UST Interview Questions
3.8
 • 508 Interviews
FIS Interview Questions
3.9
 • 478 Interviews
Cipla Interview Questions
4.1
 • 476 Interviews
View all

Primary Health Centre Web Developer 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
Medical Officer
161 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Staff Nurse
40 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Doctor
22 salaries
unlock blur

₹4.1 L/yr - ₹9 L/yr

Data Entry Operator
20 salaries
unlock blur

₹1.2 L/yr - ₹2.7 L/yr

Pharmacist
17 salaries
unlock blur

₹1.5 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Primary Health Centre with

Apollo Hospitals

4.1
Compare

Fortis Healthcare

4.0
Compare

Max Healthcare

4.1
Compare

Manipal Hospitals

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