Upload Button Icon Add office photos
Engaged Employer

i

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

Northcorp Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Northcorp Software UI Developer Interview Questions and Answers

Updated 20 Feb 2025

Northcorp Software UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 20 Feb 2025

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

(2 Questions)

  • Q1. How does the virtual DOM improve performance?
  • Ans. 

    The virtual DOM improves performance by minimizing the number of updates needed to the actual DOM.

    • Virtual DOM allows for efficient batch updates to the actual DOM, reducing the number of reflows and repaints.

    • It compares the virtual DOM with the actual DOM and only updates the necessary changes, instead of re-rendering the entire DOM tree.

    • This results in faster rendering and better performance, especially for complex UI

  • Answered by AI
  • Q2. It minimize direct DOM updates, reducing reflows are repaints.

Interview questions from similar companies

I was interviewed in Aug 2017.

Interview Preparation Tips

Round: Test
Experience: All questions related to HTML, CSS, Bootstrap, Javascript, JQuery and Angular jS
Duration: 30 minutes
Total Questions: 20

Round: Technical Interview
Experience: They ask all Technical Questions which are based on our skills mentioned in CV.

I applied via Approached by Company and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Reverse a String in Javascript
  • Ans. 

    To reverse a string in Javascript, we can use the built-in reverse() method.

    • Convert the string to an array using split() method

    • Use the reverse() method to reverse the array

    • Convert the reversed array back to a string using join() method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for practical/hands-on-coding for Javascript

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • It helps to decouple the code and makes it more testable.

    • It allows for easier maintenance and scalability.

    • It can be implemented using constructor injection, setter injection, or interface injection.

    • Example: Instead of creating a database connection object within a class, it can be passed as a depend

  • Answered by AI
  • Q2. What is ngModule
  • Ans. 

    NgModule is a decorator that defines a module in Angular.

    • NgModule is used to group related components, directives, and services.

    • It helps to organize the application into smaller, manageable pieces.

    • It can import other modules and export its own components, directives, and services.

    • It can also provide configuration for dependency injection.

    • Example: @NgModule({ imports: [CommonModule], declarations: [AppComponent], export

  • Answered by AI
  • Q3. What is closure
  • Ans. 

    Closure is a function that has access to variables in its outer scope, even after the outer function has returned.

    • A closure is created when a function is defined inside another function.

    • The inner function can access variables in the outer function, even after the outer function has returned.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outer() { var x = 10; functio...

  • Answered by AI
  • Q4. Hoisting, lexical analysis, let var

Interview Preparation Tips

Interview preparation tips for other job seekers - always prepared with project experience work

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Components of extjs
  • Ans. 

    ExtJS is a JavaScript framework for building web applications with rich user interfaces.

    • ExtJS has a wide range of components including grids, forms, trees, charts, and more.

    • Components can be customized with themes and plugins.

    • Some popular ExtJS components include GridPanel, FormPanel, and TreePanel.

    • ExtJS also includes a powerful data package for managing data in components.

    • Components can be easily integrated with other

  • Answered by AI
  • Q2. How to fetch value using different methods
  • Ans. 

    Different methods to fetch values in UI development

    • Using document.getElementById() to fetch value by element ID

    • Using document.querySelector() to fetch value by CSS selector

    • Using event.target.value to fetch value from input fields

    • Using AJAX to fetch data from server

    • Using local storage to fetch stored values

  • Answered by AI
  • Q3. Grid events and structures of basis form
  • Ans. 

    Grid events and structures are essential for UI development.

    • Grid events are actions that occur when a user interacts with a grid, such as clicking a cell or scrolling.

    • Grid structures refer to the layout and organization of the grid, including columns, rows, and headers.

    • Examples of grid events include onCellClick, onRowSelect, and onScroll.

    • Examples of grid structures include columnDefs, rowData, and headerHeight.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain difference between inline and inline block
  • Ans. 

    Inline elements do not start on a new line and only take up as much width as necessary, while inline-block elements can have a width and height set.

    • Inline elements do not start on a new line and only take up as much width as necessary

    • Inline-block elements can have a width and height set

    • Inline elements ignore top and bottom margins and padding, while inline-block elements respect them

  • Answered by AI
  • Q2. Described semantic html
  • Ans. 

    Semantic HTML is a way of writing HTML that focuses on the meaning of the content rather than its appearance.

    • Semantic HTML uses tags that clearly define the purpose of the content, such as <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>.

    • It helps improve accessibility for users with disabilities by providing more context to screen readers and other assistive tec...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. React routing , class component, functional components
  • Q2. Higher order component
  • Q3. Hooks concept, throttle

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn fundamentals very clearly

I applied via Walk-in and was interviewed in Mar 2022. 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. For loop fine the array value
  • Ans. 

    Using a for loop to find a specific value in an array of strings.

    • Use a for loop to iterate through the array

    • Check each element to see if it matches the desired value

    • Return the index of the matching element or -1 if not found

  • Answered by AI
  • Q2. For loop fine the array valu
  • Ans. 

    To find array values using for loop

    • Declare a variable to store the sum of array values

    • Use a for loop to iterate through the array

    • Access each element using array[index] syntax

    • Add the element value to the sum variable

    • Return the sum variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - no tips u try ,it and u try the best prize

Skills evaluated in this interview

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

UI Developer Interview Questions & Answers

Infosys user image Sanket Kumbhar

posted on 23 Aug 2024

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

(1 Question)

  • Q1. Diff. between let var const
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let: block-scoped variable, can be reassigned

    • var: function-scoped variable, can be reassigned

    • const: block-scoped variable, cannot be reassigned, but its properties can be modified

  • Answered by AI

Skills evaluated in this interview

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

Northcorp Software Interview FAQs

How many rounds are there in Northcorp Software UI Developer interview?
Northcorp Software interview process usually has 1 rounds. The most common rounds in the Northcorp Software interview process are Technical.
What are the top questions asked in Northcorp Software UI Developer interview?

Some of the top questions asked at the Northcorp Software UI Developer interview -

  1. how does the virtual DOM improve performan...read more
  2. it minimize direct DOM updates, reducing reflows are repain...read more

Recently Viewed

INTERVIEWS

LatentView Analytics

No Interviews

DESIGNATION

INTERVIEWS

LatentView Analytics

No Interviews

INTERVIEWS

HIL Limited

No Interviews

INTERVIEWS

Prism Johnson Limited - RMC (India) Division

No Interviews

INTERVIEWS

LatentView Analytics

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Quantsapp

No Interviews

INTERVIEWS

iLink Digital

No Interviews

INTERVIEWS

LatentView Analytics

No Interviews

Tell us how to improve this page.

Northcorp Software UI Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Northcorp Software UI Developer Reviews and Ratings

based on 5 reviews

4.2/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

4.2

Salary

4.2

Job security

4.2

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 5 Reviews and Ratings
Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Scientist
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Java Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Northcorp Software with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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