Upload Button Icon Add office photos

Filter interviews by

NullClass Web Development Intern Interview Questions and Answers

Updated 12 Jun 2024

NullClass Web Development Intern Interview Experiences

3 interviews found

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic introduction
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Build a twitter like app.

Round 2 - Assignment 

Deploy the app and shoe it to them.

Round 3 - HR 

(2 Questions)

  • Q1. What are my qualifications
  • Q2. What are my skill set

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard.

Web Development Intern Interview Questions Asked at Other Companies

Q1. Merge Sort Problem Statement You are given a sequence of numbers, ... read more
Q2. 1. Workflow of the website means how you started to clone the web ... read more
Q3. How would you convert website A into website B?
asked in Google
Q4. How do you prioritize tasks when you have multiple deadlines to m ... read more
Q5. Easy leetcode - find element in a sorted 2D matrix, find the repe ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Assignment 

Designed a web site add multiple languages

Round 2 - Coding Test 

Created a front page end page

Interview Preparation Tips

Interview preparation tips for other job seekers - It's really a very good platform to start career.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy questions asked focused on fundamental

Round 2 - Assignment 

Given a question of dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on fundamental
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical interview
  • Q2. Html css javascript
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Mar 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 

Aptitude test is one kind of the logical base questions and mind setting questions so be careful for apptitide test and aptitude test exam examiner asked logical questions example: reasoning, mathematics apptitide..

Round 3 - Coding Test 

2nd phase is coding round for IT and computer fields jobs . So employees can ready to give the coding test any time examiner given the one question to solve the problem and give the answer to examiner this is a coding round examiner he/she can asked the question for coding related questions example if you had a web development job you can asked php ,html, javascript,css question..

Round 4 - One-on-one 

(2 Questions)

  • Q1. This is final round and this is called HR round HR round you can saw your resume and HR will asked questions related job and related to salary..
  • Q2. HR round HR will asked what is your salary expectation and how you can handle the all the office work

Interview Preparation Tips

Topics to prepare for TCS Web Development Intern interview:
  • IT
Interview preparation tips for other job seekers - Share my personal advices to job seekers please do not panic any situation and give the most of time to coding practice and research hase qualitative work to do in daily basis and please solve the logical questions to chance to get job and every job seekers i would be suggest please do not Stop your resume to one to one company transfer you can ragister the form to get a job again and again..
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It had 20 questions of English,20 of reasoning,20 of numerical ability

Round 2 - Technical 

(1 Question)

  • Q1. It had MCQs related to c and c++
Round 3 - HR 

(1 Question)

  • Q1. It asked general questions about c And c+

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is dictionary in python?
  • Ans. 

    Dictionary is a collection of key-value pairs in Python.

    • Keys must be unique and immutable.

    • Values can be of any data type.

    • Access values using keys.

    • Add or modify values using keys.

    • Use dict() constructor or {} to create a dictionary.

    • Example: {'name': 'John', 'age': 30}

    • Example: dict(name='John', age=30)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - easy one. any language will do the job.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

NullClass Interview FAQs

How many rounds are there in NullClass Web Development Intern interview?
NullClass interview process usually has 2 rounds. The most common rounds in the NullClass interview process are Assignment, Coding Test and HR.

Tell us how to improve this page.

NullClass Web Development Intern Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

NullClass Web Development Intern Reviews and Ratings

based on 10 reviews

3.9/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.8

Salary

3.8

Job security

3.8

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 10 Reviews and Ratings
Data Analyst Intern
9 salaries
unlock blur

₹0.5 L/yr - ₹3.6 L/yr

Data Science Intern
7 salaries
unlock blur

₹1 L/yr - ₹2 L/yr

Data Analyst
6 salaries
unlock blur

₹1 L/yr - ₹2 L/yr

Web Developer Intern
6 salaries
unlock blur

₹0.6 L/yr - ₹1 L/yr

Web Developer
5 salaries
unlock blur

₹0.5 L/yr - ₹3 L/yr

Explore more salaries
Compare NullClass with

Unacademy

3.0
Compare

upGrad

3.7
Compare

Simplilearn

3.2
Compare

MeritNation

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