Upload Button Icon Add office photos
Engaged Employer

i

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

LeewayHertz Technologies Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 72 Reviews

Filter interviews by

LeewayHertz Technologies Software Developer Interview Questions and Answers

Updated 11 Sep 2024

LeewayHertz Technologies Software Developer Interview Experiences

2 interviews found

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 

(3 Questions)

  • Q1. What is difference between read-only and const
  • Ans. 

    Read-only is a runtime concept while const is a compile-time concept.

    • Read-only variables can be assigned a value only once during runtime.

    • Const variables are initialized at compile-time and cannot be modified during runtime.

    • Read-only variables can be assigned a value in the constructor of a class.

    • Const variables can be used to define constant values like pi or e.

    • Read-only variables are declared using the 'readonly' key...

  • Answered by AI
  • Q2. What is out keyword
  • Ans. 

    The out keyword is used to pass arguments as reference parameters in C#.

    • The out keyword is used to return multiple values from a method.

    • The out keyword must be used in both the method signature and the method call.

    • The out keyword initializes the variable passed as an argument within the method.

    • The out keyword is similar to the ref keyword, but the variable passed as an argument does not need to be initialized before th

  • Answered by AI
  • Q3. MVC architecture

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Assignment 

They give assignment on MERN stack

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Experience in domains
  • Q2. Previous companies
Round 2 - Technical 

(2 Questions)

  • Q1. SQL basic questions
  • Q2. .net and OOP basics
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Oops topic and aptitude

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

I applied via campus placement at Hindustan College of Science and Technology, Agra and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

1 round is coding round in pan paper test atleast 5 coding questions and some multiple questions and 1 DSA questions and 4 coding questions correct and dsa correct than interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Everything HTML CSS SQL and core java
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. 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 - Technical 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic ques related to resume

LeewayHertz Technologies Interview FAQs

How many rounds are there in LeewayHertz Technologies Software Developer interview?
LeewayHertz Technologies interview process usually has 1-2 rounds. The most common rounds in the LeewayHertz Technologies interview process are Resume Shortlist, Technical and Assignment.
How to prepare for LeewayHertz Technologies Software 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 LeewayHertz Technologies. The most common topics and skills that interviewers at LeewayHertz Technologies expect are Java, Node.Js, React.Js, API and AWS.
What are the top questions asked in LeewayHertz Technologies Software Developer interview?

Some of the top questions asked at the LeewayHertz Technologies Software Developer interview -

  1. What is difference between read-only and co...read more
  2. what is out keyw...read more
  3. MVC architect...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 LeewayHertz Technologies interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
LeewayHertz Technologies Software Developer Salary
based on 26 salaries
₹2.5 L/yr - ₹8.1 L/yr
41% less than the average Software Developer Salary in India
View more details

LeewayHertz Technologies Software Developer Reviews and Ratings

based on 10 reviews

2.0/5

Rating in categories

2.5

Skill development

1.9

Work-Life balance

2.4

Salary & Benefits

1.8

Job Security

1.8

Company culture

2.0

Promotions/Appraisal

1.8

Work Satisfaction

Explore 10 Reviews and Ratings
Software Developer
26 salaries
unlock blur

₹2.5 L/yr - ₹8.1 L/yr

Full Stack Developer
13 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Full Stack Software Developer
10 salaries
unlock blur

₹3 L/yr - ₹5.1 L/yr

Digital Marketing Executive
10 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Senior Software Developer
9 salaries
unlock blur

₹6.8 L/yr - ₹19.2 L/yr

Explore more salaries
Compare LeewayHertz Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview