Upload Button Icon Add office photos
Premium Employer

i

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

NTT DATA Business Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NTT DATA Business Solutions Html Developer Interview Questions, Process, and Tips

Updated 5 Nov 2024

NTT DATA Business Solutions Html Developer Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

Asked about tables media query

Round 2 - Technical 

(2 Questions)

  • Q1. What are semantic tags and non semantic tags
  • Ans. 

    Semantic tags provide meaning to the content, while non-semantic tags are used for formatting and styling purposes.

    • Semantic tags convey the meaning of the content to both browsers and developers.

    • Examples of semantic tags include

      ,
      ,
      ,
      .

    • Non-semantic tags are used for formatting and styling, such as

      , .

    • Semantic tags improve accessibility and SEO by providing structure and context to the content.

Answered by AI
  • Q2. How to get multiple rows
  • Ans. 

    To get multiple rows in HTML, use the tag within a

    element.

    • Use the

    element to create a table.

  • Use the

  • element to define a row within the table.

  • Repeat the

  • element for each additional row needed.

    Answered by AI
    Round 3 - HR 

    (2 Questions)

    • Q1. What are expectations
    • Ans. 

      Expectations are the anticipated outcomes or results that are desired or required.

      • Expectations in web development include meeting project deadlines, producing high-quality code, and effectively communicating with team members.

      • Clients may have expectations regarding the functionality and design of a website or web application.

      • Stakeholders may have expectations related to the performance and usability of a website.

      • Meetin...

    • Answered by AI
    • Q2. Are you comfortable with rotational time
    • Ans. 

      Yes, I am comfortable with rotational time as it allows for flexibility in work hours.

      • I am comfortable with working different shifts or hours as needed

      • I understand the importance of being flexible with time management

      • I have experience working in environments with rotational schedules, such as customer service or healthcare

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Try hard with tables html tags and css

    Skills evaluated in this interview

    Interview questions from similar companies

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

    I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

    Round 1 - Technical 

    (5 Questions)

    • Q1. Discussion about my previous project
    • Q2. Question on html, css, javascript & react
    • Q3. Explain about promises
    • Ans. 

      Promises are objects 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() to handle success and .catch() to handle errors.

      • Example: const myPromise = new Promise((resolve, reject) => { ... });

    • Answered by AI
    • Q4. Use state, context api
    • Q5. Box modelling in css, css pre processors
    • Ans. 

      Box model in CSS refers to the way elements are rendered in a web page. CSS preprocessors like SASS or LESS help streamline CSS development.

      • Box model in CSS includes content, padding, border, and margin.

      • CSS preprocessors like SASS or LESS allow for variables, nesting, and mixins to be used in CSS.

      • Example: box-sizing: border-box; in CSS changes the box model to include padding and border in the element's total width and

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - I got a call that i have been selected to the final round, but the final round never did happend

    Skills evaluated in this interview

    UI Developer Interview Questions & Answers

    Coforge user image Divya Shrivastav

    posted on 19 Nov 2024

    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    Not Selected

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. What is closure?
    • Ans. 

      Closure is a function that has access to its own scope, as well as the scope in which it was defined.

      • Closure allows a function to access variables from its outer function even after the outer function has finished executing.

      • It helps in maintaining state in asynchronous operations.

      • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

    • Answered by AI
    • Q2. Define hooks in react?
    • Ans. 

      Hooks in React are functions that let you use state and other React features without writing a class.

      • Hooks were introduced in React 16.8 to allow functional components to have state and lifecycle methods.

      • useState() is a hook that allows you to add state to functional components.

      • useEffect() is a hook that allows you to perform side effects in functional components.

      • Custom hooks are reusable functions that can contain log...

    • Answered by AI

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Angular life cycle, angular loading and some scenarios about authentication
    • Q2. Javascript out put based questions based on it's execution
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

    Round 1 - Technical 

    (5 Questions)

    • Q1. Caching Strategy
    • Q2. What is micro Frontend architecture
    • Ans. 

      Micro Frontend architecture is an approach to building front-end applications by breaking them down into smaller, independently deployable units.

      • Allows different teams to work on separate parts of the application

      • Each micro frontend can be developed using different technologies

      • Enables incremental upgrades and updates without affecting the entire application

      • Can improve performance by loading only the necessary components

      • ...

    • Answered by AI
    • Q3. Pure and impure pipes in angular
    • Ans. 

      Pure pipes in Angular are stateless and do not change the input data, while impure pipes can have side effects and change the input data.

      • Pure pipes are used for simple transformations like formatting dates or numbers.

      • Impure pipes are used for more complex transformations that require state or side effects.

      • Pure pipes are faster and more efficient as they only run when a pure change to the input data is detected.

      • Impure p...

    • Answered by AI
    • Q4. How to make singleton services multiton
    • Ans. 

      Singleton services can be made multiton by maintaining a map of instances with unique keys.

      • Create a map to store instances with unique keys

      • Use a factory method to retrieve instances based on keys

      • Ensure that only one instance is created per key

    • Answered by AI
    • Q5. What is dependency injection
    • Ans. 

      Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

      • Allows for easier testing by injecting mock dependencies

      • Promotes loose coupling between components

      • Improves code reusability and maintainability

      • Examples: AngularJS, Spring Framework

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Read Frontend system design also

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. They have asked Backed related question for a ui role.
    • Q2. Mostly project related question
    Interview experience
    1
    Bad
    Difficulty level
    Hard
    Process Duration
    2-4 weeks
    Result
    No response

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

    Round 1 - Aptitude Test 

    Worst set of questions

    Round 2 - Coding Test 

    Advanced DSA for entry level role

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Don't join this company
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. CSS Box-model definition
    • Ans. 

      CSS Box-model defines how elements are rendered in a webpage, including padding, border, and margin.

      • Box-model consists of content, padding, border, and margin

      • Content area is where text or images are displayed

      • Padding is the space between content and border

      • Border is the line around the content and padding

      • Margin is the space outside the border

    • Answered by AI
    • Q2. Difference b/n flexbox and grid
    • Ans. 

      Flexbox is for one-dimensional layouts, grid is for two-dimensional layouts.

      • Flexbox is best for arranging items in a single row or column.

      • Grid is best for creating complex layouts with rows and columns.

      • Flexbox is more suitable for smaller scale layouts, while grid is better for larger scale layouts.

      • Flexbox is more flexible in terms of item order and sizing, while grid provides more control over the overall layout.

      • Both

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Javascript features and advance level coding
    • Q2. React with typescript, Test case
    • Ans. 

      React with TypeScript and test case integration for ensuring code quality and functionality.

      • Use Jest and Enzyme for writing test cases in React with TypeScript.

      • Utilize TypeScript's static type checking to catch errors early in development.

      • Mock external dependencies in test cases to isolate components for testing.

      • Ensure test coverage for all components and functions in the codebase.

      • Use tools like React Testing Library f...

    • Answered by AI

    Skills evaluated in this interview

    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

    NTT DATA Business Solutions Interview FAQs

    How many rounds are there in NTT DATA Business Solutions Html Developer interview?
    NTT DATA Business Solutions interview process usually has 3 rounds. The most common rounds in the NTT DATA Business Solutions interview process are Coding Test, Technical and HR.
    What are the top questions asked in NTT DATA Business Solutions Html Developer interview?

    Some of the top questions asked at the NTT DATA Business Solutions Html Developer interview -

    1. What are semantic tags and non semantic t...read more
    2. Are you comfortable with rotational t...read more
    3. How to get multiple r...read more

    Tell us how to improve this page.

    NTT DATA Business Solutions Html Developer Interview Process

    based on 1 interview

    Interview experience

    5
      
    Excellent
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Accenture Interview Questions
    3.8
     • 8.1k Interviews
    Infosys Interview Questions
    3.6
     • 7.5k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.8
     • 5.6k Interviews
    Capgemini Interview Questions
    3.7
     • 4.7k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    IBM Interview Questions
    4.0
     • 2.3k Interviews
    TCS iON Interview Questions
    3.9
     • 367 Interviews
    View all
    Consultant
    414 salaries
    unlock blur

    ₹6 L/yr - ₹19.1 L/yr

    Senior Consultant
    310 salaries
    unlock blur

    ₹10.2 L/yr - ₹32.5 L/yr

    Associate Consultant
    304 salaries
    unlock blur

    ₹2.9 L/yr - ₹11.2 L/yr

    Senior Associate
    268 salaries
    unlock blur

    ₹1.6 L/yr - ₹7.4 L/yr

    HC & Insurance OPS Associate
    234 salaries
    unlock blur

    ₹1.5 L/yr - ₹5 L/yr

    Explore more salaries
  • Compare NTT DATA Business Solutions with

    TCS

    3.7
    Compare

    Infosys

    3.6
    Compare

    Wipro

    3.7
    Compare

    Tech Mahindra

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