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

Northcorp Software Javascript Developer Interview Questions and Answers

Updated 17 Dec 2024

Northcorp Software Javascript Developer Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. How do you declare a variable in JavaScript?
  • Ans. 

    Variables in JavaScript are declared using the 'var', 'let', or 'const' keywords.

    • Use 'var' to declare a variable with function scope.

    • Use 'let' to declare a variable with block scope.

    • Use 'const' to declare a constant variable.

    • Example: var x = 5; let y = 'hello'; const PI = 3.14;

  • Answered by AI
  • Q2. In JavaScript using, u can declare a variable using var, let or const

Interview Preparation Tips

Interview preparation tips for other job seekers - "Stay updated with industry trends and keep learning."
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you check if a number s even in JavaScript?
  • Ans. 

    Check if a number is even by using the modulo operator.

    • Use the modulo operator (%) to check if the number divided by 2 has a remainder of 0.

    • If the remainder is 0, then the number is even.

    • Example: if(num % 2 === 0) { // number is even }

  • Answered by AI
  • Q2. Use the modulo operator.
  • Ans. 

    The modulo operator returns the remainder of a division operation.

    • Use the % symbol to perform the modulo operation.

    • Example: 10 % 3 will return 1 (10 divided by 3 is 3 with a remainder of 1).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - "Prepare thoroughly for interviews."

Javascript Developer Interview Questions Asked at Other Companies

Q1. If you have 3 nested for loops, how many times will the innermost ... read more
Q2. Can you tell me about promise, async in javascript
asked in Deloitte
Q3. 1. Is .map and .filter pure functions ? 2. What should not be blo ... read more
Q4. difference between var, let and const, es6 concepts, state, props ... read more
asked in Uplers
Q5. Map reduce and filter in JavaScript

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Northcorp Software?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jul 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 tips
Round 2 - Aptitude Test 

In this round mcq question were asked, related to javascript.

Round 3 - Coding Test 

In this round, javascript data structures and algorithms questions from freecodecamp were asked.

Interview Preparation Tips

Topics to prepare for Hummingbird Web Solutions Javascript Developer interview:
  • Javascript
Interview preparation tips for other job seekers - Basic knowledge of JavaScript is must.There were easy to moderate question.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Based on my CV, they assigned me a task related to data migration.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project reviews
  • Q2. Attendance regarding
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. How would you handle missing dataduring analysis?
  • Ans. 

    Handling missing data involves identifying, assessing, and applying appropriate techniques to manage gaps in datasets.

    • Identify missing data: Use methods like 'isnull()' in Python to find missing values.

    • Assess the impact: Determine how missing data affects your analysis and results.

    • Imputation: Replace missing values with mean, median, or mode. For example, use the median for skewed distributions.

    • Remove missing data: If ...

  • Answered by AI
  • Q2. Explain the difference inner join and left join in SQL ? and example
  • Ans. 

    Inner join returns matching records from both tables, while left join returns all records from the left table and matching from the right.

    • Inner Join: Combines rows from two tables where there is a match in both tables.

    • Left Join: Returns all rows from the left table and matched rows from the right table; unmatched rows from the right will show NULL.

    • Example of Inner Join: SELECT * FROM TableA INNER JOIN TableB ON TableA....

  • Answered by AI
  • Q3. Which visualisation have tools used and how do you decide which chart to used for a given dataset?
  • Ans. 

    Choosing the right visualization depends on data type, audience, and insights needed.

    • Use bar charts for categorical comparisons (e.g., sales by region).

    • Line charts are ideal for trends over time (e.g., monthly revenue).

    • Pie charts can show proportions but are less effective for many categories.

    • Scatter plots help identify relationships between two variables (e.g., age vs. income).

    • Heatmaps visualize data density or correl...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - HR 

(2 Questions)

  • Q1. What experience do you have in this role?
  • Q2. What tools or technologies are you comfortable using?
  • Ans. 

    I am proficient in various data analysis tools, including Excel, SQL, Python, and visualization software like Tableau.

    • Excel: Advanced functions, pivot tables, and data visualization.

    • SQL: Writing complex queries for data extraction and manipulation.

    • Python: Utilizing libraries like Pandas and NumPy for data analysis.

    • Tableau: Creating interactive dashboards for data visualization.

    • R: Statistical analysis and data visualiza...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow Up – A simple follow-up email can increase your chances of getting hired.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2023, where I was asked the following questions.

  • Q1. What is Websocket?
  • Ans. 

    WebSocket is a protocol for full-duplex communication channels over a single TCP connection, enabling real-time data exchange.

    • WebSocket allows persistent connections, reducing latency compared to traditional HTTP requests.

    • It is commonly used in applications like chat apps, online gaming, and live notifications.

    • WebSocket connections start with an HTTP handshake, then upgrade to a WebSocket connection.

    • Example: A chat app...

  • Answered by AI
  • Q2. How do you integrate Websocket with Android Project.
  • Ans. 

    Integrating WebSocket in an Android project allows real-time communication between client and server.

    • 1. Add dependencies: Use libraries like 'OkHttp' or 'Java-WebSocket'. Example: 'implementation 'com.squareup.okhttp3:okhttp:4.9.1''

    • 2. Create a WebSocket client: Use OkHttpClient to create a WebSocket instance. Example: 'OkHttpClient client = new OkHttpClient();'

    • 3. Implement WebSocketListener: Override methods like onOpe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - ...
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Work Experience
  • Q2. Salary Expectations
Round 2 - Technical 

(1 Question)

  • Q1. Products worked
  • Ans. 

    Developed various products including web applications, APIs, and data analysis tools.

    • Created a web application for tracking sales data using Django framework

    • Built RESTful APIs for mobile applications using Flask

    • Developed data analysis tools using pandas and numpy libraries

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Expectation and Joining Date

Interview Preparation Tips

Interview preparation tips for other job seekers - Though Negotiator
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. More on projects done
  • Q2. Team handling experience in past
  • Ans. 

    I led a team of developers, fostering collaboration and driving project success through effective communication and agile methodologies.

    • Managed a team of 5 developers, overseeing project timelines and deliverables.

    • Implemented Agile methodologies, resulting in a 30% increase in productivity.

    • Conducted regular code reviews to ensure quality and adherence to best practices.

    • Facilitated team meetings to encourage open commun...

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Working attitude and technical knowledge
  • Ans. How good you are in approaching problems and achieving solutions
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain technical details of your previous projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Write a program using pythin
  • Ans. 

    Program to print 'Hello, World!' in Python

    • Use the print() function in Python to display text

    • Enclose the text in single or double quotes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's nice and godd to feel

Skills evaluated in this interview

Northcorp Software Interview FAQs

How many rounds are there in Northcorp Software Javascript Developer interview?
Northcorp Software interview process usually has 1 rounds. The most common rounds in the Northcorp Software interview process are Technical.
How to prepare for Northcorp Software Javascript 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 Northcorp Software. The most common topics and skills that interviewers at Northcorp Software expect are Javascript, Redux, TypeScript and UI and UX.
What are the top questions asked in Northcorp Software Javascript Developer interview?

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

  1. How do you check if a number s even in JavaScri...read more
  2. How do you declare a variable in JavaScri...read more
  3. Use the modulo operat...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
2.9
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
View all

Northcorp Software Javascript Developer Reviews and Ratings

based on 2 reviews

3.8/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.8

Salary

3.8

Job security

3.8

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 2 Reviews and Ratings
Devops Engineer
9 salaries
unlock blur

₹1.5 L/yr - ₹6.8 L/yr

Software Developer
8 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹8.4 L/yr - ₹27 L/yr

Senior Java Developer
6 salaries
unlock blur

₹14 L/yr - ₹22 L/yr

Software Engineer
5 salaries
unlock blur

₹1 L/yr - ₹11.3 L/yr

Explore more salaries
Compare Northcorp Software with

Zidio Development

4.5
Compare

Accel Frontline

4.1
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.8
Compare

HyScaler

4.5
Compare
write
Share an Interview