Upload Button Icon Add office photos
Engaged Employer

i

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

Northern Arc Capital Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 88 Reviews

Filter interviews by

Northern Arc Capital Associate Software Engineer Interview Questions, Process, and Tips

Updated 13 Oct 2023

Northern Arc Capital Associate Software Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 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 

(3 Questions)

  • Q1. Just be prepared with your resume and basic DS Algo questions
  • Q2. Find total Nodes in a Binary tree along with time and space complexity
  • Ans. 

    Total nodes in a binary tree can be found using depth-first or breadth-first traversal algorithms with time complexity O(n) and space complexity O(h), where h is the height of the tree.

    • Use depth-first traversal (pre-order, in-order, post-order) or breadth-first traversal to visit each node and count the total nodes.

    • Time complexity is O(n) where n is the number of nodes in the tree.

    • Space complexity is O(h) where h is th...

  • Answered by AI
  • Q3. MYSQL Questions based on Inner Joins
Round 3 - One-on-one 

(4 Questions)

  • Q1. Construct 4 Array Tree from scratch and implement some operations
  • Ans. 

    Construct 4 Array Tree and implement operations

    • Create an array to represent the tree structure

    • Implement operations like insert, delete, search, and traversal

    • Example: Construct a binary search tree using arrays

  • Answered by AI
  • Q2. Some quizzes to check logical thinking
  • Q3. How to compare 2 large 100 GB JSON files in O(1) Time complexity
  • Ans. 

    Use hashing to compare the JSON files in O(1) time complexity.

    • Create a hash function to convert the JSON data into a unique hash value.

    • Calculate the hash value for each JSON file and compare the hash values.

    • If the hash values are equal, the JSON files are identical.

    • Example: Use MD5 or SHA-256 hash functions for generating hash values.

  • Answered by AI
  • Q4. Map parent to children of a 4 Array tree in O(1) Space complexity
  • Ans. 

    Use array indices to map parent to children in a 4 Array tree in O(1) space complexity.

    • Assign children of a parent at indices 4*i+1, 4*i+2, 4*i+3, 4*i+4 where i is the index of the parent.

    • To find parent of a child at index j, use (j-1)/4 to get the parent index.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Northern Arc Capital Associate Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - The 2nd round was extremely tough, prepare well. HR never responds to calls and messages , so no point in joining the company. Even the package was not disclosed.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

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

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. What is state in react
  • Ans. 

    State in React is a JavaScript object that stores data and determines how a component renders and behaves.

    • State is mutable and can be updated using the setState() method

    • State should be used for data that will change over time and affect the component's rendering

    • State should not be modified directly, use setState() instead

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain OOPS Concept ?
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • For example, a class 'Car' can have objects like 'Toyota', 'Honda', etc., each with their own properties and methods.

    • Inheritan...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Circle process related questions
  • Q2. Scripting language questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What are OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. What are solid Concept
  • Ans. 

    Solid concepts are fundamental principles or ideas that are well-established and widely accepted in a particular field.

    • Solid concepts provide a strong foundation for further learning and development.

    • They are essential for understanding complex topics and solving problems effectively.

    • Examples of solid concepts in software engineering include object-oriented programming, design patterns, and data structures.

  • Answered by AI
  • Q3. Write Code for Palindrome String
  • Ans. 

    Code to check if a string is a palindrome or not.

    • Iterate through the string from both ends and compare characters.

    • Use two pointers, one starting from the beginning and one from the end.

    • If characters at both pointers are equal, move both pointers towards the center.

    • If characters at any point are not equal, return false.

    • If both pointers meet in the middle, return true as the string is a palindrome.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you ever faced OutOfMemoryError? How did you resolve that?
  • Q2. How you will load text data into DB systems?
  • Ans. 

    Text data can be loaded into DB systems using various methods such as SQL INSERT statements, bulk loading, or ETL processes.

    • Use SQL INSERT statements to insert text data into the database one record at a time.

    • For large datasets, consider using bulk loading techniques like BULK INSERT or LOAD DATA INFILE.

    • ETL (Extract, Transform, Load) processes can be used to extract text data from different sources, transform it as per...

  • Answered by AI

I applied via LinkedIn and was interviewed in Dec 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 tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. Related to your proffession
  • Q2. Which technology you work on
  • Ans. 

    I work on various technologies including Java, Python, and JavaScript.

    • Java

    • Python

    • JavaScript

  • Answered by AI
  • Q3. How many projects you have completed
  • Q4. Years of experience

Interview Preparation Tips

Interview preparation tips for other job seekers - They do only timepass, They will take your interview 2-3 times and after discussing the offers and all you will never hear from them.

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Joins, webapi, basic c#, Asp.net

Northern Arc Capital Interview FAQs

How many rounds are there in Northern Arc Capital Associate Software Engineer interview?
Northern Arc Capital interview process usually has 3 rounds. The most common rounds in the Northern Arc Capital interview process are One-on-one Round and Resume Shortlist.
What are the top questions asked in Northern Arc Capital Associate Software Engineer interview?

Some of the top questions asked at the Northern Arc Capital Associate Software Engineer interview -

  1. How to compare 2 large 100 GB JSON files in O(1) Time complex...read more
  2. Find total Nodes in a Binary tree along with time and space complex...read more
  3. Map parent to children of a 4 Array tree in O(1) Space complex...read more

Tell us how to improve this page.

Northern Arc Capital Associate Software Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Aye Finance Interview Questions
4.1
 • 60 Interviews
Kinara Capital Interview Questions
4.5
 • 59 Interviews
LendingKart Interview Questions
3.2
 • 28 Interviews
InCred Finance Interview Questions
3.9
 • 20 Interviews
ICRA Interview Questions
3.3
 • 18 Interviews
View all

Fast track your campus placements

View all
Northern Arc Capital Associate Software Engineer Salary
based on 4 salaries
₹6 L/yr - ₹12 L/yr
24% more than the average Associate Software Engineer Salary in India
View more details

Northern Arc Capital Associate Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

3.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
65 salaries
unlock blur

₹5.5 L/yr - ₹23 L/yr

Associate
51 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Relationship Manager
38 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Associate Vice President
33 salaries
unlock blur

₹14 L/yr - ₹35 L/yr

Associate Director
30 salaries
unlock blur

₹20 L/yr - ₹45 L/yr

Explore more salaries
Compare Northern Arc Capital with

IFMR Capital

3.4
Compare

Aye Finance

4.1
Compare

LendingKart

3.1
Compare

Axio

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