Upload Button Icon Add office photos
Engaged Employer

i

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

LogiNext Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LogiNext Solutions Software Engineer Interview Questions and Answers

Updated 16 Aug 2023

LogiNext Solutions Software Engineer Interview Experiences

2 interviews found

I applied via Approached by Company and was interviewed in Aug 2021. 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 - Coding Test 

Assignment to develop a prototype

Round 3 - One-on-one 

(3 Questions)

  • Q1. Face to face questions
  • Q2. Java Question Technical & coding
  • Q3. Mongodb & Mysql Question

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Will be given Requirement to write code for Restraunt. Based on that have write code for delivering orders by delivery boys.

Round 2 - Technical 

(1 Question)

  • Q1. OOPS Concepts, Java Basics, Collections, MultiThreading

Interview Preparation Tips

Topics to prepare for LogiNext Solutions Software Engineer interview:
  • Java
  • OOPS
  • MySQL
  • Pattern Programming
Interview preparation tips for other job seekers - Focus on DSA and Logical Programming

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more

Top trending discussions

View All
Interview Hub
4d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about LogiNext Solutions?
Ask anonymously on communities.

Interview questions from similar companies

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

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

  • Q1. DP related problems.
  • Q2. Networking related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 - Coding Test 

There were 3 questions, which I had to do in 2 hours.
the questions were from arrays and Strings

Round 3 - One-on-one 

(1 Question)

  • Q1. They asked me concepts on OOPS and OS, also coding question on strings. all these were basic questions
Round 4 - HR 

(1 Question)

  • Q1. Questions such as where do you see yourself in coming years, interests and hobbies.

Interview Preparation Tips

Topics to prepare for HALODOC Software Engineer interview:
  • OOPS
  • Operating Systems
  • Coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Dsa. , oops and basics of database management

Round 2 - Technical 

(2 Questions)

  • Q1. System design questions basics
  • Q2. Hiring managers questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

30-minutes+coding 1hr round moderate level

Round 3 - Coding Test 

1hr coding+aptitude test moderate level

Round 4 - Technical 

(3 Questions)

  • Q1. Oops,java,javascript,problem solving are topic want to cover +resume what we give technical skill
  • Q2. Tell about multiple inheritance in java
  • Ans. 

    Multiple inheritance is not supported in Java due to the Diamond Problem.

    • Java does not support multiple inheritance for classes to avoid the Diamond Problem.

    • Interfaces in Java can have multiple inheritance as a class can implement multiple interfaces.

    • Example: class A extends B, C // This will result in a compile-time error.

  • Answered by AI
  • Q3. What is interface in java?

Skills evaluated in this interview

Be interview-ready. Browse the most asked HR questions.
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Coding array, string and react & JavaScript question
Round 2 - HR 

(1 Question)

  • Q1. Normal salary discussion and perks
Are these interview questions helpful?

Software Developer Interview Questions & Answers

Spyne user image Purushottam Mandal_94

posted on 5 Dec 2024

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

BE Assignment containing how to make a simple backend task

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

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

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

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Q2. How you make a project from scratch

Skills evaluated in this interview

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

It was a live coding round where expectation was to come up with a framework in Java from Scratch

Round 2 - Technical 

(1 Question)

  • Q1. It was a DS/Algo Round
Round 3 - Design R 

(1 Question)

  • Q1. Design Round in HLD
  • Ans. 

    Design Round in HLD involves creating a high-level design for a software system.

    • Identify the main components of the system and their interactions

    • Define the architecture of the system including layers, modules, and interfaces

    • Consider scalability, performance, security, and maintainability

    • Use UML diagrams like class diagrams, sequence diagrams, and component diagrams

    • Document the design decisions and rationale

  • Answered by AI

Skills evaluated in this interview

LogiNext Solutions Interview FAQs

How many rounds are there in LogiNext Solutions Software Engineer interview?
LogiNext Solutions interview process usually has 2-3 rounds. The most common rounds in the LogiNext Solutions interview process are Coding Test, Resume Shortlist and One-on-one Round.
How to prepare for LogiNext Solutions Software Engineer 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 LogiNext Solutions. The most common topics and skills that interviewers at LogiNext Solutions expect are Python, SDLC, Information Technology, Agile and Java.
What are the top questions asked in LogiNext Solutions Software Engineer interview?

Some of the top questions asked at the LogiNext Solutions Software Engineer interview -

  1. OOPS Concepts, Java Basics, Collections, MultiThread...read more
  2. Java Question Technical & cod...read more
  3. Mongodb & Mysql Quest...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

LogiNext Solutions Software Engineer Salary
based on 35 salaries
₹6 L/yr - ₹13.9 L/yr
10% more than the average Software Engineer Salary in India
View more details

LogiNext Solutions Software Engineer Reviews and Ratings

based on 10 reviews

1.8/5

Rating in categories

2.4

Skill development

1.6

Work-life balance

2.5

Salary

2.3

Job security

1.8

Company culture

2.7

Promotions

1.9

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer - Security

Mumbai

2-3 Yrs

₹ 8.3-17.2 LPA

Software Engineer - Client Success

Mumbai

2-5 Yrs

Not Disclosed

Software Engineer

Mumbai

2-4 Yrs

₹ 8.3-17.2 LPA

Explore more jobs
Key Account Manager
36 salaries
unlock blur

₹16.5 L/yr - ₹30 L/yr

Software Engineer
35 salaries
unlock blur

₹6 L/yr - ₹13.9 L/yr

Software Developer
22 salaries
unlock blur

₹6 L/yr - ₹12.7 L/yr

Product Manager
20 salaries
unlock blur

₹17.5 L/yr - ₹30 L/yr

Devops Engineer
11 salaries
unlock blur

₹7.8 L/yr - ₹12.5 L/yr

Explore more salaries
Compare LogiNext Solutions with

PagarBook

3.6
Compare

Signzy Technologies

2.9
Compare

Xoxoday

3.6
Compare

ITILITE

2.8
Compare
write
Share an Interview