Upload Button Icon Add office photos

Filter interviews by

Arjun Web Solutions Html Developer Interview Questions and Answers

Updated 22 Apr 2022

Arjun Web Solutions Html Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Assignment 

PSD TO HTML Conversion

Round 2 - HR 

(1 Question)

  • Q1. Basic details of self introduction
Round 3 - Technical 

(2 Questions)

  • Q1. Differs b/w html element and html tag
  • Ans. 

    HTML element is a single instance of a tag, while HTML tag is a set of markup used to define the structure of a web page.

    • HTML element is enclosed within angle brackets, e.g.

      ...

    • HTML tag consists of the opening and closing tags, e.g.

      and

    • HTML tag can contain attributes, e.g. ...

  • Answered by AI
  • Q2. 5 newest tags in html5
  • Ans. 

    The 5 newest tags in HTML5 are:

    ,

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Should know about the basics and their fundamentals of subject.,

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via AmbitionBox and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Brief introduction of yourself.
  • Ans. 

    Experienced HTML developer with a passion for creating user-friendly websites.

    • Over 5 years of experience in HTML development

    • Proficient in CSS and JavaScript

    • Strong understanding of responsive design principles

    • Familiar with SEO best practices

    • Portfolio includes websites for various clients and industries

  • Answered by AI
  • Q2. What is HTML give a proper explanation
  • Ans. 

    HTML stands for HyperText Markup Language, used for creating and structuring web pages.

    • HTML is the standard markup language for creating web pages

    • It uses tags to define the structure and content of a web page

    • Examples of HTML tags include , , , <body>, <p>, <div>, <a>, </p></li></ul></p></body>

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explanation of CSS.
  • Ans. 

    CSS is a styling language used to control the look and feel of a website.

    • CSS stands for Cascading Style Sheets.

    • It is used to define styles for web pages, including colors, fonts, layout, and more.

    • CSS can be applied to HTML elements using selectors.

    • It allows for the separation of content from presentation, making it easier to maintain and update.

    • CSS can be included in an HTML document using the

  • Answered by AI
  • Q2. Explanation of bootstrap.
  • Ans. 

    Bootstrap is a front-end framework for developing responsive and mobile-first websites.

    • Bootstrap is a free and open-source CSS framework.

    • It includes pre-built design templates and components like buttons, forms, and navigation bars.

    • Bootstrap uses a 12-column grid system for easy layout customization.

    • It also has built-in responsive utilities for creating mobile-friendly designs.

    • Bootstrap can be customized using Sass var

  • Answered by AI
Round 3 - Technical 

(2 Questions)

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice experience

Skills evaluated in this interview

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 Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning, maths, english, coding

Round 2 - Group Discussion 

Everything questions

Round 3 - Coding Test 

Html, css, javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Html developer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2023. 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 - Aptitude Test 

About mental ability questions coding decoding

Round 3 - Group Discussion 

About AI Artificial intelligence

Interview Preparation Tips

Topics to prepare for Genpact Html Developer interview:
  • Software Installation
Interview preparation tips for other job seekers - Ita useful
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(7 Questions)

  • Q1. Css flexbox and grid
  • Q2. Pagination on scroll
  • Ans. 

    Implementing pagination on scroll allows for loading more content as the user reaches the bottom of the page.

    • Use a scroll event listener to detect when the user has reached the bottom of the page

    • Make an API call to fetch more data when the bottom is reached

    • Append the new data to the existing content on the page

  • Answered by AI
  • Q3. Immediately invoked fn and anonymous fn
  • Ans. 

    Immediately invoked function expressions (IIFE) are functions that are executed immediately after they are created.

    • IIFE is defined and invoked at the same time using parentheses at the end of the function declaration.

    • Anonymous functions do not have a name and can be used as IIFE by wrapping them in parentheses.

    • IIFE is commonly used to create a private scope for variables and functions.

  • Answered by AI
  • Q4. What are closures
  • Ans. 

    Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow functions to access variables from their parent function even after the parent function has returned

    • They help in creating private variables and functions in JavaScript

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
  • Q5. What is promise? explain
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() method to handle success and failure callbacks.

    • Example: Fetch API returns a promise when making an HTTP request.

  • Answered by AI
  • Q6. What is lazy loading -explain
  • Ans. 

    Lazy loading is a technique used in web development to defer loading non-essential resources until they are needed.

    • Lazy loading helps improve page load times by only loading resources when they are required.

    • It is commonly used for images, videos, and other media files on a webpage.

    • Lazy loading can be implemented using JavaScript libraries like Intersection Observer or by using native browser features like loading='lazy

  • Answered by AI
  • Q7. Media query and css selectors

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic apptitude qwuestions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on java and cybersecurity what is cybersecurity what is malware and ransomeware
  • Q2. What is java how is it different from python
  • Ans. 

    Java is a statically typed, object-oriented programming language, while Python is dynamically typed and focuses on simplicity and readability.

    • Java is statically typed, meaning variables must be declared with a specific data type, while Python is dynamically typed.

    • Java is more verbose and requires more code to accomplish tasks compared to Python.

    • Python emphasizes simplicity and readability, making it easier for beginner...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduction why ltimindtree
  • Ans. 

    I chose Mindtree because of its reputation for innovation, collaborative work culture, and opportunities for growth.

    • Reputation for innovation: Mindtree is known for its cutting-edge technology solutions and innovative projects.

    • Collaborative work culture: Mindtree fosters a team-oriented environment where employees can learn and grow together.

    • Opportunities for growth: Mindtree offers various training programs and career...

  • Answered by AI
  • Q2. Relocation situastion based questions

Interview Preparation Tips

Topics to prepare for LTIMindtree Junior Software Developer interview:
  • Java
  • cybersecurity
  • HTML
Interview preparation tips for other job seekers - prepare well on topics mentioned inyour resume

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly js questions, not so many of angular or react.
  • Q2. Like fizbuzz or things like that.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply here, the culture here is horrible.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Ui development and component related
  • Q2. Performance of technology and challenges
Round 2 - HR 

(2 Questions)

  • Q1. Personal introduction and location details
  • Q2. Negatition of salries excepectations

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very good organization. Freindly nature in team operation is good from leads hikes also ok
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Basic html css questions
Round 2 - Aptitude Test 

Logical reasoning, quantitative analysis and computer test

Round 3 - Technical 

(1 Question)

  • Q1. Basic html, css, javascript questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Given UI task display like display boxes side by side in desktop screen and one after the other in mobile screen using media queries?
  • Q2. Explain difference between authorization vs authentication?
  • Ans. 

    Authentication verifies a user's identity, while authorization determines what a user can access.

    • Authentication confirms a user's identity through credentials like username and password.

    • Authorization controls access to resources based on the authenticated user's permissions.

    • Example: Logging into a website (authentication) and then being able to view/edit specific pages based on your role (authorization).

  • Answered by AI
  • Q3. How to render list in react? Also explain difference between state vs prop in react?
  • Ans. 

    To render a list in React, use map() function to iterate over an array of data and return a list of components. State is mutable data managed within a component, while props are immutable data passed from parent to child components.

    • To render a list in React, use map() function to iterate over an array of data and return a list of components.

    • Example: const items = ['item1', 'item2', 'item3']; items.map(item =>

    • read more

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What are the webpage optimization techniques? How to check webpage optimization? In lighthouse optimization reports , how to fix issue related render blocking scripts?
  • Ans. 

    Webpage optimization techniques include minifying CSS and JS files, optimizing images, using asynchronous loading for scripts, and reducing render-blocking scripts.

    • Minify CSS and JS files to reduce file sizes and improve loading times.

    • Optimize images by compressing them and using the correct file format (e.g. JPEG for photographs, PNG for graphics).

    • Use asynchronous loading for scripts to prevent them from blocking the ...

  • Answered by AI
  • Q2. Write scss code nested li element by applying background color 2 element and also use mixins?
  • Ans. 

    Use SCSS to apply background color to nested li elements and utilize mixins.

    • Use nesting to target the li elements within a parent element

    • Apply background color to the 2nd li element using the :nth-child() selector

    • Define and use mixins to reuse styles across the codebase

  • Answered by AI
  • Q3. How to fix cumulative layout shift issues?
  • Ans. 

    To fix cumulative layout shift issues, ensure all images and media have dimensions specified in HTML, use CSS aspect ratio boxes, and prioritize loading critical resources.

    • Specify dimensions for all images and media in HTML to prevent layout shifts.

    • Use CSS aspect ratio boxes to reserve space for images before they load.

    • Prioritize loading critical resources to avoid sudden layout changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The Interview process is not good? First said technical round, then asked to share all details by filling in the portal and upload all documents. For documents and background verification uploaded all docs and UAN details. Again suddenly in the morning hr message in LinkedIn , says that there will client discussion round. When i asked them what is about the interview. They didn't event replied . Actually it was another technical round, where he interview question like all
hypothetically and behavioral questions. After all , simple says rejected?

Skills evaluated in this interview

Arjun Web Solutions Interview FAQs

How many rounds are there in Arjun Web Solutions Html Developer interview?
Arjun Web Solutions interview process usually has 3 rounds. The most common rounds in the Arjun Web Solutions interview process are Assignment, HR and Technical.
How to prepare for Arjun Web Solutions Html Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Arjun Web Solutions. The most common topics and skills that interviewers at Arjun Web Solutions expect are CSS, HTML, Html5, PSD and Photoshop.
What are the top questions asked in Arjun Web Solutions Html Developer interview?

Some of the top questions asked at the Arjun Web Solutions Html Developer interview -

  1. Differs b/w html element and html ...read more
  2. 5 newest tags in ht...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Arjun Web Solutions interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Arjun Web Solutions Html Developer Salary
based on 4 salaries
₹2 L/yr - ₹4 L/yr
33% less than the average Html Developer Salary in India
View more details

Arjun Web Solutions Html Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

3.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
5 salaries
unlock blur

₹4.5 L/yr - ₹16 L/yr

UI Developer
5 salaries
unlock blur

₹2.2 L/yr - ₹2.4 L/yr

DOT NET Developer
5 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Html Developer
4 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Senior .NET Developer
4 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Arjun Web Solutions with

Web Solutions

4.2
Compare

Digital Solutions

4.7
Compare

5 Tech Solutions

5.0
Compare

Online Solutions

3.0
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