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. Can you tell me about promise, async in javascript
Q2. difference between var, let and const, es6 concepts, state, props ... read more
Q3. difference between for each and map method
asked in Deloitte
Q4. 1. Is .map and .filter pure functions ? 2. What should not be blo ... read more
asked in Uplers
Q5. Map reduce and filter in JavaScript

Javascript Developer Jobs at Northcorp Software

View all

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:
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 

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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

Related to roles and responsibilities

Round 2 - HR 

(1 Question)

  • Q1. Salary negotiations
Round 3 - Behavioral 

(1 Question)

  • Q1. Onboarding details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2023. There were 5 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 - Technical 

(1 Question)

  • Q1. Detailed discussion on the projects worked on
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions and answers
Round 4 - Technical 

(1 Question)

  • Q1. Face to face interview
Round 5 - HR 

(1 Question)

  • Q1. General HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and.
This is the correct place if yo want to gain more technical knowledge
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 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 - One-on-one 

(1 Question)

  • Q1. What was the product of your previous b2b organization? How did you find leads? What tools did you use? Do you have experience writing mails?
Round 3 - One-on-one 

(1 Question)

  • Q1. Are you okay with a pay cut? We value employee welfare so would you be interested to join despite the fact we cant match your previous salary?
Round 1 - Technical 

(1 Question)

  • Q1. What is your salary expectation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Great interaction with screener.
Round 1 - One-on-one 

(1 Question)

  • Q1. Self Introduction and prior experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer is friendly and make the candidate comfortable

I applied via Company Website and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. What are your salary expectations?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Over this last week of reaching out to organizations, Webdew is been a seemingly great experience with highly professional individuals working in a productive space. The HR team has great expertise in how to make employees or prospects instantly feel at home!

My advice to job seekers is to be professionally committed with whoever you are working for.
Round 1 - Technical 

(1 Question)

  • Q1. Discussed about work experience, skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Good process of interview , Supportive team for the whole interview process

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.

Northcorp Software Javascript Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
NexTurn Interview Questions
4.1
 • 29 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
Software Developer
10 salaries
unlock blur

₹2 L/yr - ₹7.2 L/yr

Devops Engineer
9 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Data Scientist
8 salaries
unlock blur

₹1.8 L/yr - ₹7.2 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.2 L/yr

Explore more salaries
Compare Northcorp Software with

Accel Frontline

4.0
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

4.5
Compare

Pitney Bowes

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