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 Trainee Interview Questions and Answers

Updated 8 Dec 2022

LeewayHertz Technologies Software Developer Trainee Interview Experiences

1 interview found

I applied via campus placement at Pranveer Singh Institute of Technology, Kanpur and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. In HR round, basically they are wanted to test your communication skill and how you are interacting with the HR. The best thing is that the HR confirms you after your HR round that you are selected or not.
  • Q2. Tell me about yourself project related questions Tells about the bond
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself Applications of stack 2 basic code snippets 1 coding question queues
  • Q2. Print factorial of a number with or without loop datatypes in c polymorphism implementation
  • Ans. 

    Factorial of a number can be printed with or without loop in C using datatypes. Polymorphism is not related to this.

    • Factorial of a number can be calculated using a loop or recursion

    • Datatypes like int, long long can be used to store factorial

    • Polymorphism is not related to factorial calculation

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Hash Table Constructors string reverse in python
  • Ans. 

    The question covers topics related to hash tables, constructors, and string reversal in Python.

    • Hash tables are data structures that allow for efficient lookup, insertion, and deletion of key-value pairs.

    • Constructors are special methods that are called when an object is created and are used to initialize its attributes.

    • In Python, strings can be reversed using slicing or the built-in reversed() function.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Implementation of stack Implementation of stack using pointers DBMS SQL queries DSA Pillars of OOPs
  • Ans. 

    Questions related to software development and computer science concepts.

    • Implementation of stack using pointers involves creating a struct with a pointer to the top of the stack and using malloc to allocate memory for each new node.

    • DBMS stands for Database Management System and is used to manage and organize data in a database.

    • SQL queries are used to retrieve and manipulate data in a database.

    • DSA stands for Data Structu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I only adviced that you always keep coding and do not distract like i do not coding and you let it be.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. What is the difference between== and === in javascript?
  • Ans. 

    In JavaScript, == is used for loose equality comparison, while === is used for strict equality comparison.

    • == checks for equality after type coercion, while === checks for equality without type coercion

    • === is more strict and recommended for use to avoid unexpected behavior

    • Example: 1 == '1' will return true, but 1 === '1' will return false

  • Answered by AI
  • Q2. == refers to only value comparison and === refers to both data type and value comparison
  • Ans. 

    True. == compares only values, while === compares both values and data types.

    • == is used for value comparison, while === is used for both value and data type comparison

    • Example: 5 == '5' will return true, but 5 === '5' will return false

    • Example: 5 === 5 will return true, as both value and data type are the same

  • Answered by AI
Round 2 - Coding Test 

5 technical questions were asked out of which 3 tests are to be cleared

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is NVM?
  • Ans. 

    NVM stands for Node Version Manager, a tool used to manage multiple versions of Node.js on a single machine.

    • NVM allows developers to easily switch between different versions of Node.js for different projects.

    • It helps in avoiding conflicts between different projects that require different versions of Node.js.

    • NVM is commonly used in development environments where different projects have different Node.js version requirem

  • Answered by AI
  • Q2. Node version Manager where we can handle higher node js version in a lower node js version
  • Ans. 

    Node Version Manager (NVM) allows managing multiple Node.js versions on the same machine.

    • NVM allows you to easily switch between different Node.js versions on your machine.

    • It helps in handling higher Node.js versions in a lower Node.js version environment.

    • You can install, uninstall, and switch between Node.js versions using NVM.

    • Example: 'nvm install 12.18.3' to install a specific Node.js version.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Basic Javascript and MERN Stack questions

Round 2 - Technical 

(2 Questions)

  • Q1. React Basic, Asked About Project
  • Q2. Write a code to call an api and display the data.
  • Ans. 

    Code to call an API and display data

    • Use a library like Axios or Fetch to make the API call

    • Parse the response data and display it on the frontend

    • Handle any errors that may occur during the API call

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Not asked any thing other than introduction, the interview is of only 10 minutes

Interview Preparation Tips

Interview preparation tips for other job seekers - They do not give proper reason to reject.

I applied via LinkedIn and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is Oops concept
  • Ans. 

    Oops concept is a programming paradigm that focuses on objects and their interactions to solve problems.

    • Encapsulation - hiding implementation details

    • Inheritance - creating new classes from existing ones

    • Polymorphism - using a single interface to represent multiple types

    • Abstraction - simplifying complex systems by breaking them down into smaller, more manageable parts

  • Answered by AI
  • Q2. Difference between primary key and foreign key
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key refers to a field in another table.

    • Primary key is unique and cannot be null

    • Foreign key establishes a relationship between two tables

    • Primary key can be used as a foreign key in another table

    • Example: CustomerID in Orders table is a foreign key referencing Customer table's primary key

  • Answered by AI
  • Q3. Difference between arrays and list
  • Ans. 

    Arrays are fixed in size and store homogeneous data types, while lists are dynamic and can store heterogeneous data types.

    • Arrays are declared with a fixed size, while lists can grow or shrink dynamically.

    • Arrays can only store elements of the same data type, while lists can store elements of different data types.

    • Arrays are accessed using an index, while lists are accessed using an iterator.

    • Arrays are more efficient for ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be panic . They just want to know how confident you are that's it

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic String and Array related questions.

Round 2 - Assignment 

A project will be assigned, a basic CRUD operation.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Which will you prefer MySQL or Mongo for your database and why?
  • Ans. 

    I would prefer MySQL for structured data and complex queries, while MongoDB for unstructured data and scalability.

    • MySQL is better for structured data and complex queries

    • MongoDB is better for unstructured data and scalability

    • MySQL supports ACID transactions, while MongoDB is eventually consistent

    • MySQL is widely used in traditional relational databases, while MongoDB is popular for NoSQL databases

  • Answered by AI
  • Q2. What is Virtual Dom and explain?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in memory, used for efficient updates in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a diffing algorithm is used to identify the minimal changes needed to update the actual DOM.

    • This approach reduces the number of updates needed and improve

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were 5 coding questions in which you have to score minimum 3 to qualify for the next rounds.

Round 2 - Assignment 

An assignment was give which we have to complete it with in 7 days.

Round 3 - Technical 

(2 Questions)

  • Q1. About project tech stacks.
  • Q2. Php, laravel, MySQL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Laravel Middleware?
  • Ans. 

    Laravel Middleware is a filter that is executed before or after an HTTP request enters the application.

    • Middleware can modify the request before it reaches the route handler.

    • It can also modify the response before it is sent back to the client.

    • Middleware can be used for authentication, logging, CORS, etc.

    • Example: 'auth' middleware in Laravel checks if the user is authenticated before allowing access to a route.

  • Answered by AI
  • Q2. What is Laravel Sanctum?
  • Ans. 

    Laravel Sanctum is a lightweight package for API authentication using tokens in Laravel applications.

    • Provides a simple API token authentication system for SPAs and mobile apps

    • Uses API tokens to authenticate users without the need for passwords

    • Supports token abilities for fine-grained access control

    • Easy to integrate and use in Laravel applications

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Simple self introduction
  • Q2. String pole in Java
  • Ans. 

    String pool in Java is a mechanism for optimizing memory usage by reusing strings with the same value.

    • String pool is a special area in the Java heap memory where strings are stored.

    • When a new string is created, Java first checks if it already exists in the string pool.

    • If the string already exists, the new string references the existing one instead of creating a new object.

    • Example: String str1 = "hello"; String str2 = "...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Question will be from an Online coding platform and it was basic to medium.

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

I was interviewed in Sep 2024.

Round 1 - Coding Test 

In coding round there is 5 questions you can use any language for any questions.

LeewayHertz Technologies Interview FAQs

How many rounds are there in LeewayHertz Technologies Software Developer Trainee interview?
LeewayHertz Technologies interview process usually has 5 rounds. The most common rounds in the LeewayHertz Technologies interview process are Technical, Resume Shortlist and HR.
How to prepare for LeewayHertz Technologies Software Developer Trainee 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 HTML, Java, API, C and C++.
What are the top questions asked in LeewayHertz Technologies Software Developer Trainee interview?

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

  1. Print factorial of a number with or without loop datatypes in c polymorphism im...read more
  2. Implementation of stack Implementation of stack using pointers DBMS SQL queries...read more
  3. Hash Table Constructors string reverse in pyt...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 Trainee Reviews and Ratings

based on 2 reviews

1.0/5

Rating in categories

1.5

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 2 Reviews and Ratings
Software Developer
28 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

Technical Content Writer
8 salaries
unlock blur

₹3.9 L/yr - ₹4.9 L/yr

Explore more salaries
Compare LeewayHertz Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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