Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Chetu Team. If you also belong to the team, you can get access from here

Chetu Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 988 Reviews

Filter interviews by

Chetu Web Developer Interview Questions, Process, and Tips

Updated 15 Aug 2024

Top Chetu Web Developer Interview Questions and Answers

View all 18 questions

Chetu Web Developer Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected
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. How to update new PHP version
  • Ans. 

    To update PHP version, download the latest version from php.net, backup your files, update php.ini, and restart the server.

    • Download the latest PHP version from php.net

    • Backup your files before updating

    • Update php.ini configuration file

    • Restart the server to apply changes

  • Answered by AI
  • Q2. How to create python in session
  • Ans. 

    To create a Python session, you can use the 'requests' library to make HTTP requests and maintain session state.

    • Import the 'requests' library

    • Create a session object using 'requests.Session()'

    • Use the session object to make HTTP requests, which will automatically handle cookies and other session data

  • Answered by AI
Round 3 - Coding Test 

Php, html , CSS in this relationship

Skills evaluated in this interview

Web Developer Interview Questions & Answers

user image ABHISHEK KUMAR S SINGH

posted on 22 May 2024

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. HTML CSS and JavaScript
  • Ans. Hyper text markup language, Cascading style sheet and JavaScript
  • Answered by ABHISHEK KUMAR S SINGH
Round 2 - Sem 

(1 Question)

  • Q1. UI and UX design questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

Web Developer Interview Questions Asked at Other Companies

Q1. Check Indices With Given DifferenceYou are given an integer array ... read more
asked in Evalueserve
Q2. Reverse Linked ListGiven a singly linked list of integers. Your t ... read more
Q3. Intersection of Linked ListYou are given two Singly Linked List o ... read more
Q4. Last index of elementTake an array with N elements with possibly ... read more
Q5. Most Frequent WordYou are given a paragraph that may have letters ... read more

Web Developer Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2022

I applied via Naukri.com and was interviewed in Aug 2022. There were 3 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. C# oops concept .net core
  • Q2. Sql server Database
Round 3 - HR 

(3 Questions)

  • Q1. Discussion of about of your company
  • Q2. Salary discussion And benefits
  • Q3. Features About of your company

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a web developer and I have 6 month experience from chetu India PVT LDT

Web Developer Interview Questions & Answers

user image CodingNinjas

posted on 14 Mar 2022

I was interviewed in Jul 2021.

Round 1 - Video Call 

(8 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions mainly from .NET and ASP .NET Core.

  • Q1. .NET Question

    What is a delegate in .NET?

  • Ans. 

    A delegate is a .NET object which defines a method signature and it can pass a function as a parameter.

    Delegate always points to a method that matches its specific signature. Users can encapsulate the reference of a
    method in a delegate object.

    When we pass the delegate object in a program, it will call the referenced method. To create a custom event in a
    class, we can make use of delegate.

  • Answered by CodingNinjas
  • Q2. .NET Question

    What are the types of memories supported in the .NET framework?

  • Ans. 

    Two types of memories are present in .NET. They are :

    Stack: Stack is a stored-value type that keeps track of each executing thread and its location. It is used for static
    memory allocation.

    Heap: Heap is a stored reference type that keeps track of the more precise objects or data. It is used for dynamic
    memory allocation.

  • Answered by CodingNinjas
  • Q3. .NET Question

    What is Dot NET Core used for?

  • Ans. 

    1) .NET Core is useful in the server application creations, that run on various operating systems like Windows, Mac,
    and Linux. Using this, developers can write libraries as well as applications in C#, F#, and VB.NET in both runtimes.

    2) Generally, it is used for cloud applications or for modifying large enterprise applications into microservices.

    3) .NET Core 3.0 supports cross-development between WPF, UWP, and Windows F...

  • Answered by CodingNinjas
  • Q4. .NET Question

    What is the difference between Function and Stored procedure?

  • Ans. 

    Stored Procedure :
    1) A Stored Procedure is always used to perform a specific task.
    2) It can return zero, one or more value.
    3) It can have both input and output parameters.
    4) Exception handling can be done using a try-catch block.
    5) A function can be called from a Procedure.


    Functions :
    1) Functions must return a single value.
    2) It can only have the input parameter.
    3) Exception handling cannot be done using a try-catch bl...

  • Answered by CodingNinjas
  • Q5. .NET Question

    What is MVC?

  • Ans. 

    MVC stands for Model View Controller. It is an architectural model for building the .Net applications.

    Models – Model objects store and retrieve data from the database for an application. They are usually the logical
    parts of an application that is implemented by the application’s data domain.

    View – These are the components that display the view of the application in the form of UI. The view gets the
    information from the ...

  • Answered by CodingNinjas
  • Q6. .NET Question

    What is Zero Garbage Collectors?

  • Ans. 

    Zero Garbage Collectors allows you for object allocation as this is required by the Execution Engine. Created objects
    will not get deleted automatically and theoretically, no longer required memory is never reclaimed.

    There are two main uses of Zero Garbage Collectors. They are :

    1) Using this, you can develop your own Garbage Collection mechanism. It provides the necessary functionalities for
    properly doing the runtime wo...

  • Answered by CodingNinjas
  • Q7. ASP .NET Question

    Explain the Middleware in ASP.NET Core.

  • Ans. 

    The Request handling pipeline is a sequence of middleware components where each component performs the
    operation on request and either call the next middleware component or terminate the request. When a middleware
    component terminates the request, it's called Terminal Middleware as It prevents next middleware from processing
    the request. You can add a middleware component to the pipeline by calling .Use... extension metho...

  • Answered by CodingNinjas
  • Q8. ASP .NET Question

    What is Host in ASP.NET Core?

  • Ans. 

    Host encapsulates all the resources for the app. On startup, ASP.NET Core application creates the host. The
    Resources which are encapsulated by the host include :

    1) HTTP Server implementation
    2) Dependency Injection
    3) Configuration
    4) Logging
    5) Middleware components

  • Answered by CodingNinjas
Round 2 - Video Call 

(8 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with some questions from DBMS and SQL and then moved on to some more questions from ASP .NET.

  • Q1. DBMS Question

    Explain the concept of ACID properties in DBMS?

  • Ans. 

    ACID properties is the combination of Atomicity, Consistency, Isolation, and Durability properties. These properties
    are very helpful in allowing a safe and secure way of sharing the data among multiple users.

    1) Atomicity: This is based on the concept of “either all or nothing” which basically means that if any update occurs
    inside the database then that update should either be available to all the others beyond user and...

  • Answered by CodingNinjas
  • Q2. SQL Question

    What are different types of joins in SQL?

  • Ans. 

    There are 4 types of SQL Joins :

    1) Inner Join: This type of join is used to fetch the data among the tables which are common in both the tables.

    2) Left Join: This returns all the rows from the table which is on the left side of the join but only the matching rows
    from the table which is on the right side of the join.

    3) Right Join: This returns all the rows from the table which is on the right side of the join but only t...

  • Answered by CodingNinjas
  • Q3. SQL Question

    What are Constraints in SQL?

  • Ans. 

    Constraints are used to specify the rules concerning data in the table. It can be applied for single or multiple fields in
    an SQL table during the creation of the table or after creating using the ALTER TABLE command. The constraints are :

    1) NOT NULL - Restricts NULL value from being inserted into a column.

    2) CHECK - Verifies that all values in a field satisfy a condition.

    3) DEFAULT - Automatically assigns a default val...

  • Answered by CodingNinjas
  • Q4. SQL Question

    What are triggers?

  • Ans. 

    Triggers in SQL is kind of stored procedures used to create a response to a specific action performed on the table
    such as INSERT, UPDATE or DELETE. You can invoke triggers explicitly on the table in the database.

    Action and Event are two main components of SQL triggers. When certain actions are performed, the event occurs in
    response to that action.

    Syntax :

    CREATE TRIGGER name {BEFORE|AFTER} (event [OR..]}
    ON table_name [F...

  • Answered by CodingNinjas
  • Q5. ASP .NET Question

    What is caching?

  • Ans. 

    Caching is the process of storing data in a temporary storage location that is quicker to access than the original
    location of the data so that it can be accessed more quickly when the same data is needed next time.

    Caching improves the scalability and performance of your application. It does this by reducing the work required to
    fetch the data. Caching is useful for data that doesn’t change frequently and is expensive to...

  • Answered by CodingNinjas
  • Q6. ASP .NET Question

    Describe Attribute based routing.

  • Ans. 

    Attribute Routing gives you more control over the URIs in your web application. MVC 5 supports this attribute based
    routing where attributes are used to define the routes. You can manage resource hierarchies in better way using
    attribute based routing. Attribute based routing is used to create routes which are difficult to create using convention-
    based routing.

  • Answered by CodingNinjas
  • Q7. HTTP Question

    Explain how HTTP protocol works?

  • Ans. 

    Hypertext Transfer Protocol (HTTP) is an application-layer protocol for transmitting hypermedia documents, such as
    HTML. It handles communication between web browsers and web servers. HTTP follows a classical client-server
    model. A client, such as a web browser, opens a connection to make a request, then waits until it receives a response
    from the server.


    HTTP is a protocol that allows the fetching of resources, such as HT...

  • Answered by CodingNinjas
  • Q8. HTTP Question

    What is Session State in HTTP?

  • Ans. 

    Session state is also known as Stateless state. HTTP is a stateless protocol. In the session state, the client and
    server just know about each other only during the current request. If the connection is closed, and two computers
    want to connect again, they need to provide information to each other as a new connection, and the connection is
    handled as the very first one.

  • Answered by CodingNinjas
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic OOPS related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

  • Q1. Basic HR Question

    Why should we hire you?

  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.

    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.

    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
    like what are the projects currently the company is investing, which team you are mentoring. How all is the ...

  • Answered by CodingNinjas
  • Q2. Basic HR Question

    Why are you looking for a job change?

  • Ans. 

    Tip : For an experienced professional seeking a change, this is a common question. The easiest method to respond
    to this question is to state that you are leaving your current work in order to advance your career. Make sure you don't
    criticize or speak poorly about the company where you now work.

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceChetu interview preparation:Topics to prepare for the interview - .NET , OOPS , C# , DBMS , MVC , AptitudeTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Chetu interview questions for designations

 .NET Web Developer

 (2)

 Developer

 (1)

 Software Developer

 (31)

 Java Developer

 (3)

 Android Developer

 (2)

 UI Developer

 (2)

 PHP Developer

 (2)

 Salesforce Developer

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

Basics 20 mcq questions from speed,time and distance etc.. followed by tech mcq and coding

Round 2 - Group Discussion 

General topics and trending topics.Use new words

Round 3 - Technical 

(1 Question)

  • Q1. About project and fully resume based question
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - GD 

(2 Questions)

  • Q1. What is railway in India
  • Ans. 

    Indian Railways is a state-owned national railway system in India, operating one of the largest and busiest rail networks in the world.

    • Indian Railways is managed by the Ministry of Railways, Government of India.

    • It is responsible for rail transport in India, covering over 67,000 km of track and carrying millions of passengers daily.

    • Indian Railways operates both long-distance and suburban rail systems, connecting various...

  • Answered by AI
  • Q2. How to slove the proble
  • Ans. 

    To solve a problem, it is important to first identify the root cause and then come up with a plan of action to address it.

    • Identify the problem by gathering information and analyzing the situation

    • Break down the problem into smaller components to better understand it

    • Brainstorm possible solutions and evaluate their feasibility

    • Implement the chosen solution and monitor its effectiveness

    • Adjust the solution as needed based on

  • Answered by AI
Round 2 - Case Study 

How to slove the problem

Round 3 - Group Discussion 

Railway in India , how to slove the problem

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

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

(2 Questions)

  • Q1. What is javascript?
  • Ans. 

    JavaScript is a high-level, interpreted programming language that is used to make web pages interactive and dynamic.

    • JavaScript is commonly used for client-side web development.

    • It can be used to create interactive features like forms, animations, and dynamic content.

    • JavaScript can also be used for server-side development with Node.js.

  • Answered by AI
  • Q2. Types of variable in JavaScript
  • Ans. 

    Types of variables in JavaScript include var, let, and const.

    • var: globally scoped or function scoped

    • let: block scoped, can be reassigned

    • const: block scoped, cannot be reassigned

  • Answered by AI

Skills evaluated in this interview

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Implement a calculator class which does this cal.add(2).sub(3).mul(4).delay(2000).add(4) etc
  • Ans. 

    Implement a calculator class with chaining methods and delay function.

    • Create a Calculator class with add, sub, mul methods that return the instance of the class.

    • Implement a delay method that uses setTimeout and returns the instance of the class.

    • Use a queue to store the operations and execute them in order after the delay.

    • Return the result of the operations when the equals method is called.

  • Answered by AI
  • Q2. Problems on Array and bit manipulation. Questions on setTimeout() and bind functions. Polyfill for Promise function currying add(1)(2)(3)(4) etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Given a nested checkboxes like parents > children > childre etc write javascript code such that on click of any checkbox all its children should get updated to same value as that parent.

Interview Preparation Tips

Topics to prepare for Nutanix Front end Developer interview:
  • DSA
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - Brush up well with javascript. Polyfills for all the methods, DSA, setTimeout() call, bind, apply method.

Skills evaluated in this interview

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 before Dec 2022. There were 3 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 

(3 Questions)

  • Q1. Basic JS concepts and programming related to them
  • Q2. HTML, CSS questions
  • Q3. Framework knowledge
Round 3 - Technical 

(1 Question)

  • Q1. Problem solving related to algorithms and data structures

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Mysql queries, get and post differnce,logical question

Interview Preparation Tips

Interview preparation tips for other job seekers - interview question should be topic related

Chetu Interview FAQs

How many rounds are there in Chetu Web Developer interview?
Chetu interview process usually has 2-3 rounds. The most common rounds in the Chetu interview process are Resume Shortlist, Technical and One-on-one Round.
What are the top questions asked in Chetu Web Developer interview?

Some of the top questions asked at the Chetu Web Developer interview -

  1. How to create python in sess...read more
  2. How to update new PHP vers...read more
  3. HTML CSS and JavaScr...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Chetu interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Web Developer Interview Questions from Similar Companies

View all
Chetu Web Developer Salary
based on 65 salaries
₹2.4 L/yr - ₹7.5 L/yr
10% more than the average Web Developer Salary in India
View more details

Chetu Web Developer Reviews and Ratings

based on 14 reviews

3.1/5

Rating in categories

3.4

Skill development

2.9

Work-Life balance

3.1

Salary & Benefits

2.8

Job Security

3.3

Company culture

2.9

Promotions/Appraisal

3.1

Work Satisfaction

Explore 14 Reviews and Ratings
Software Engineer
1.3k salaries
unlock blur

₹2.5 L/yr - ₹10.4 L/yr

Software Developer
1k salaries
unlock blur

₹2.4 L/yr - ₹9.7 L/yr

Senior Software Engineer
639 salaries
unlock blur

₹4.4 L/yr - ₹10.5 L/yr

Team Lead
280 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Senior Software Developer
218 salaries
unlock blur

₹4.2 L/yr - ₹11 L/yr

Explore more salaries
Compare Chetu with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview