Upload Button Icon Add office photos
Engaged Employer

i

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

InternEzy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

InternEzy Web Developer Interview Questions and Answers

Updated 2 Mar 2025

InternEzy Web Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Sep 2024.

Round 1 - Assignment 

Complete the projects assigned to you.

Round 2 - Aptitude Test 

It reflects your thinking skills.

Round 3 - Group Discussion 

Participate and share your views.

Interview Preparation Tips

Interview preparation tips for other job seekers - Put in the effort and acquire skills.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Why should we hire you?
  • Q2. Please tell me about the machine learning projects you have done
  • Ans. 

    I have worked on several machine learning projects, including image recognition and natural language processing.

    • Developed an image recognition model using convolutional neural networks

    • Implemented a natural language processing algorithm for sentiment analysis

    • Collaborated on a recommendation system using collaborative filtering

    • Applied machine learning techniques to predict customer churn in a telecom company

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Because I feel I have the skills and expertise for the position I have applied for. Also, be honest, and if you dont know something say that you are unaware but will learn the subject in the due course of time.

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

Questions in aptitude section was easy and would require good analytical and quantitative skills.

Round 2 - Coding Test 

Total 10 questions
6 debugging question
4 easy-medium level coding questions (2 Marks + 3 Marks + 3 Marks + 3 Marks)

Round 3 - Technical 

(1 Question)

  • Q1. OOPs, Project, SQL Queries, Puzzle/Apptitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare urself well in accordance with ur resume.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 2023. 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 Resume tips
Round 2 - Coding Test 

1st round
25 mcq apptitude + 10 DSA question

Round 3 - Technical 

(1 Question)

  • Q1. Project review , opps, sql
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude test followed by 2 coding questions. Test was very easy.

Round 2 - Coding Test 

This was pen and paper coding test, where we were given 20 questions and we had to write code on paper. Total time was 2-3 hr.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Interview, 2 coding questions asked, 1 math question and Basics like OOP, Language specific, etc.

Interview Preparation Tips

Topics to prepare for Zeus Learning Software Developer interview:
  • OOP
  • Programming
  • Maths
Interview preparation tips for other job seekers - You can clear interview if you know basics. Tell them about tech stack which you know. Also there is no constraint on any specific language, you can use any. So be master of 1 language.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

I have given the online aptitude test of zeus learning (on campus) , which was the very first round and the test was divided into two parts, first part was mostly coding-decoding questions (aptitude) which was easy according to me but it was tricky too and second part included 2 dsa question and both the questions were of easy level.

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Q2. Question based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Data structure and algorithm, easy and medium questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is str in c
  • Ans. 

    str in C is a data type used to represent strings as arrays of characters.

    • str in C is typically declared as an array of characters, terminated by a null character '\0'.

    • Functions like strcpy(), strcmp(), and strlen() are commonly used with str in C.

    • Example: char str[10] = "hello"; // Declaration of a string in C

  • Answered by AI
  • Q2. What is pointers in c
  • Ans. 

    Pointers in C are variables that store memory addresses of other variables.

    • Pointers are used to access and manipulate memory directly.

    • They are denoted by an asterisk (*) before the variable name.

    • Example: int *ptr; // declares a pointer to an integer variable

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

very easy questions related to web development. 1 coding question

  • Q1. 

    Clone a Linked List with Random Pointers

    Given a linked list where each node has two pointers: the first points to the next node in the list, and the second is a random pointer that can point to any node ...

  • Ans. 

    Create a deep copy of a linked list with random pointers without using references of original nodes.

    • Iterate through the original linked list and create a new node for each node in the list.

    • Store the mapping of original nodes to new nodes in a hashmap to handle random pointers.

    • Update the random pointers of new nodes based on the mapping stored in the hashmap.

    • Return the head of the copied linked list.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

  • Q1. 

    Loot Houses Problem Statement

    A thief is planning to steal from several houses along a street. Each house has a certain amount of money stashed. However, the thief cannot loot two adjacent houses. Determi...

  • Ans. 

    Determine the maximum amount of money a thief can steal from houses without looting two consecutive houses.

    • Create an array 'dp' to store the maximum money that can be stolen from each house without looting two consecutive houses.

    • Iterate through the houses and update 'dp' based on the maximum money that can be stolen from the current house.

    • Return the maximum value in 'dp' as the answer.

  • Answered by AI
  • Q2. Can you design a website similar to Amazon?
  • Ans. 

    Yes, I can design a website similar to Amazon by focusing on user-friendly interface, robust search functionality, secure payment options, and personalized recommendations.

    • Focus on user-friendly interface with easy navigation

    • Implement robust search functionality with filters and sorting options

    • Provide secure payment options with encryption and fraud protection

    • Include personalized recommendations based on user behavior

  • Answered by AI
Round 3 - HR 

Round duration - 10 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criterianoInternshala interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare for common interview questions
Tip 2 : Practice, practice, practice

Application resume tips for other job seekers

Tip 1 : Don't Put Everything on There.
Tip 2 : Put the Best Stuff “Above the Fold”

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

InternEzy Interview FAQs

How many rounds are there in InternEzy Web Developer interview?
InternEzy interview process usually has 3 rounds. The most common rounds in the InternEzy interview process are Assignment, Aptitude Test and Group Discussion.

Recently Viewed

JOBS

Gushwork

14 jobs

JOBS

Browse jobs

Discover jobs you love

JOBS

GroundTruth

33 jobs

PHOTOS

Growisto

7 office photos

DESIGNATION

JOBS

Rolling Arrays

No Jobs

LIST OF COMPANIES

HCL Infosystems

Overview

JOBS

Assure Clinic

No Jobs

DESIGNATION

JOBS

HCL Infosystems

No Jobs

Tell us how to improve this page.

InternEzy Web Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

upGrad Interview Questions
3.7
 • 198 Interviews
Simplilearn Interview Questions
3.2
 • 101 Interviews
Internshala Interview Questions
3.8
 • 56 Interviews
Z X Learning Interview Questions
4.5
 • 44 Interviews
Zeus Learning Interview Questions
3.3
 • 34 Interviews
Adda 247 Interview Questions
3.2
 • 30 Interviews
iamneo Interview Questions
3.8
 • 16 Interviews
View all

InternEzy 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
Compare InternEzy with

Internshala

3.8
Compare

LetsIntern.com

3.0
Compare

Youth4work

2.8
Compare

MakeIntern

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