Upload Button Icon Add office photos

Filter interviews by

Position2 Software Engineer Interview Questions and Answers

Updated 14 Jun 2023

Position2 Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2022. There were 4 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 - Assignment 

Written test based on required asked questions

Round 3 - Group Discussion 

Interviewer selected the topic basesd on that we moved

Round 4 - HR 

(6 Questions)

  • Q1. Self introduction
  • Q2. Java features Python questions
  • Q3. Reallocate Expecting package
  • Q4. About family What you do in free time
  • Q5. Do you know about this company
  • Q6. Nothing as much as

Interview Preparation Tips

Topics to prepare for Position2 Software Engineer interview:
  • Front End
  • Backend Operations
Interview preparation tips for other job seekers - Please check your resume before you getting ready for interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Verbal,maths and english

Round 2 - Coding Test 

Arrays ,strings and hashmap

Round 3 - One-on-one 

(2 Questions)

  • Q1. Difference between java and c++
  • Ans. 

    Java is platform-independent, object-oriented, and has automatic memory management. C++ is faster, closer to hardware, and allows more control over memory management.

    • Java is platform-independent, while C++ is platform-dependent.

    • Java is object-oriented, while C++ supports both procedural and object-oriented programming.

    • Java has automatic memory management (garbage collection), while C++ requires manual memory management...

  • Answered by AI
  • Q2. Concepts of function overloading and function overriding

Interview Preparation Tips

Interview preparation tips for other job seekers - my hr round is left till now as my interview is on this saturday so i dont recieve mail till now for further process.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic Form Validation on React Js but on a platform which doesn't have syntax highlighting. Expected best coding standards to be followed.
Round 2 - One-on-one 

(1 Question)

  • Q1. React Js and JavaScript questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Technical questions based on situations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your foundations strong on js, react js.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. WAP to check occurrence of words in a paragraph.
  • Ans. 

    A program to check the occurrence of words in a paragraph.

    • Split the paragraph into words using space as delimiter

    • Create a hashmap to store word frequencies

    • Iterate through the words and update the hashmap accordingly

    • Display the word frequencies

  • Answered by AI
  • Q2. What git command do you use incase PR build is failed
  • Ans. 

    Use git bisect command to find the commit that caused the build failure

    • Use 'git bisect start' to start the bisect process

    • Mark the current commit as bad with 'git bisect bad'

    • Mark a known good commit with 'git bisect good '

    • Git will automatically checkout commits for testing, mark them as good or bad until the culprit commit is found

Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Given an array Reverse array
  • Ans. 

    Reverse array of strings

    • Iterate through the array and swap elements from start to end

    • Use two pointers, one at the beginning and one at the end, and swap elements until they meet

  • Answered by AI
  • Q2. Giaven a string Reverse string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() or loop through the string in reverse order

    • Create a new string and append characters from the original string in reverse order

    • Convert the string to an array of characters, reverse the array, and then join it back into a string

  • Answered by AI
  • Q3. Given array find sum of all elements
  • Ans. 

    Calculate sum of all elements in a given array of strings

    • Iterate through the array and convert each element to integer before adding to sum

    • Handle edge cases like empty array or non-numeric elements

    • Return the final sum after iterating through all elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Role check
  • Q2. Tech stackP
Round 2 - Technical 

(2 Questions)

  • Q1. Project based questions
  • Q2. AWS related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It was all about java oops and basic questions
Round 2 - Technical 

(1 Question)

  • Q1. It will related to the our project and some scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions on maths related parts and analysis skills

Round 2 - Coding Test 

Coding questions from various Data Structure parts like linkedList stack queue

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. C# oops polymorphism extension methods
  • Ans. 

    Polymorphism is a key feature of OOP in C#. Extension methods allow adding new functionality to existing types.

    • Polymorphism allows objects of different classes to be treated as if they are of the same type.

    • Extension methods are static methods that can be called as if they were instance methods of the extended type.

    • Polymorphism and extension methods can be used together to add new behavior to existing types without modi

  • Answered by AI
  • Q2. Angular javascript vs typescript services components
  • Ans. 

    Angular is a framework for building web applications using TypeScript, which is a superset of JavaScript.

    • Angular provides a structure for building web applications using components, services, and modules.

    • TypeScript is a statically typed language that provides better tooling and error checking than JavaScript.

    • Services in Angular are used for sharing data and functionality across components.

    • Components in Angular are the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - practical questions. easy interview. learn c# oops, ref, out, extension methods,

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude way taken into account

Round 2 - Coding Test 

Basic data structures and oops concept

Position2 Interview FAQs

How many rounds are there in Position2 Software Engineer interview?
Position2 interview process usually has 4 rounds. The most common rounds in the Position2 interview process are Resume Shortlist, Assignment and Group Discussion.
What are the top questions asked in Position2 Software Engineer interview?

Some of the top questions asked at the Position2 Software Engineer interview -

  1. Reallocate Expecting pack...read more
  2. Java features Python questi...read more
  3. Nothing as much...read more

Tell us how to improve this page.

Position2 Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Position2 Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Web Developer
13 salaries
unlock blur

₹2.6 L/yr - ₹3.6 L/yr

Marketing Automation Specialist
7 salaries
unlock blur

₹6.8 L/yr - ₹9.5 L/yr

Project Manager
4 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Associate Product Manager
4 salaries
unlock blur

₹8 L/yr - ₹10 L/yr

Digital Marketing Trainee
4 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Position2 with

Dentsu Webchutney

3.8
Compare

WATConsult

3.3
Compare

Interactive Avenues

3.7
Compare

Resultrix

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