Upload Button Icon Add office photos

Filter interviews by

Loyalie IT Solutions Software Developer Intern Interview Questions and Answers

Updated 17 Aug 2023

Loyalie IT Solutions Software Developer Intern Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Jul 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 - Coding Test 

They asked me simple DSA question based on HashMap but in the question, there were 3 sections. So, first you start with a very easy section, then the hardness level increases but still I wouldn't say it was very hard. Till 3rd section, the question became more or less like Leetcode medium question. But they asked me to do it in Java as they use Java Spring Boot in backened.

They also asked me about DBMS and asked me to write me a query. A simple question was asked there with: How can you minify a url and save it in database (like you have a url but it is very length because of request parameters and blah blah, so you need to shorten this url, how would you do it, what would be your approach to handle these type of lengthy urls using DBMS). Plus some standard OOPs questions, you can expect. That's it.

Round 3 - Technical 

(1 Question)

  • Q1. CTO Round. CTO sir is very cool. He will just ask about your interests in Software Development and then may ask questions based on your resume(in my case, I did already 4-5 internships, so he asked how di...

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Easy to medium level of leet code

Round 2 - Technical 

(1 Question)

  • Q1. 1. Fibonacci series with recursion and without recursion 2. String Palindrome 3. Count all repeated numbers from the array
  • Ans. 

    Answering questions related to Fibonacci series, string palindrome, and counting repeated numbers in an array.

    • For Fibonacci series with recursion, write a function that calls itself to calculate the next number in the series.

    • For Fibonacci series without recursion, use a loop to calculate the series.

    • For string palindrome, compare characters from start and end of the string.

    • To count all repeated numbers from the array, u

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. 1.Given an array(0-based indexing), you have to find the max sum of i*A[i] where A[i] is the element at index i in the array. The only operation allowed is to rotate(clock-wise or counter clock-wise) the ...
  • Ans. 

    Rotate array to find max sum of i*A[i]

    • Rotate array to bring maximum element to front

    • Calculate sum of i*A[i] for each rotation

    • Keep track of maximum sum found

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. 1.Oops concepts 2.Oops code 2.About Java Spring 3. Array stack questions 4.Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve leet code question, clear concept of DSA.

Skills evaluated in this interview

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

I was interviewed before Aug 2023.

Round 1 - Coding Test 

3 question of basic and 3 mcq

Round 2 - Coding Test 

Strings,Sort 0 1 2,invert binary tree

Round 3 - One-on-one 

(2 Questions)

  • Q1. Project Basics and Technical skills
  • Q2. Your Daily routine
  • Ans. 

    My daily routine involves coding, debugging, attending meetings, and learning new technologies.

    • Start the day by checking emails and prioritizing tasks

    • Code and debug new features or fix existing issues

    • Attend team meetings to discuss progress and roadblocks

    • Spend time learning new technologies or improving coding skills

    • Collaborate with team members on projects

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. It was based on dynamic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA very well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian School of Mines (ISM), Dhanbad and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 questions on Hackerearth leetcode medium to hard level

Round 2 - Technical 

(1 Question)

  • Q1. 2 Technical Interview First round they asked 2 easy questions one of map and other of stack second round they asked LRU Cache and Kadane's algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode question will be best choice

I was interviewed in Feb 2021.

Round 1 - Assignment 

Round duration - 24 hours
Round difficulty - Medium

Round 2 - Video Call 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

It was a Data Structures and Algorithm Round and Discussion on My assignment round to check my Problem Solving Skills.
And the Interviewer was very friendly to me. I first introduced myself to the interviewer and what did I have done in past as a Software Engineer and Why I want to work in Grofers.
 

  • Q1. 

    Top View of Binary Tree

    Given a binary tree of integers, the task is to return the top view of the given binary tree. The top view of the binary tree is the set of nodes visible when viewed from the top.

    ...
  • Ans. Using Pre-Order Traversal

    As we know that all three traversals, i.e. pre-order, in-order and post-order, visit the tree node at once. We can use any of them. Here we are going to use pre-order traversal for the explanation. So while traversing in the pre-order traversal, we will keep track of horizontal distance of the node which is going to be visited from the root node, and we also keep track of the vertical level of ...

  • Answered Anonymously
  • Q2. 

    Maximum Possible Time Problem Statement

    Given an array ARR consisting of exactly four integer digits, your task is to form the maximum possible valid time in a 24-hour format using those digits.

    Explanat...

  • Ans. Maximum Possible Time

    Approach:

    • The basic idea is that we will iterate over all the permutations of the 4 digits and check whether we are able to form a valid 24 Hr format time. If so we will then also find the maximum possible time.
    • Here we will use the ‘NEXT_PERMUTATION’ method to find all the permutations.

     

    Algorithm:

    • There are two conditions for valid 24 Hr format time:
      • The first two digits i.e the hour should be le...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from JAYPEE INSTITUTE OF INFORMATION TECHNOLOGY. Eligibility criteriaNo criteriaGrofers interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, Computer Networks, Operating systems, DMBS, System Design, Python, DjangoTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practise Data Structures and Algorithms as much as you can on daily basis. Don't Fix numbers in your head, but practise as much as you can from all topics on daily basis.
Tip 2 : Give Programming Contests on a Daily basis. As it helps you to think of any particular problem in the fixed time frame.
Tip 3 : For Mastering DP, Learn From Aditya Verma Youtube Playlist and apply around 100 questions for solving any DP problem.
Tip 4 : Also Learn Computer Science theory subject once a week so that you will have a deep understanding of the particular subject since many interviews grind on CS theory subjects like OS, DBMS and Networks 
Tip 5 : Make at least 2-3 Projects in any technology you like maybe Web Development or Android Development. It shows that you have some experience in Development and the company don't need to waste time on you for teaching frameworks.
Tip 6 : If you have time learn some System Design and learn how to design any system from end to end. Especially learn about designing a database of any application. In many interviews, the interviewer asks to design an application from end to end. So if you have some practice, then you can easily clear this type of rounds.

Application resume tips for other job seekers

Tip 1 : Always attached your Project links in your resume. As it seems your project is genuine and you are confident in showing your projects
Tip 2 : Don't add unnecessary things in your resume which are not related to the job, like your 10th class winning tournament certificate or managing a college society. These things didn't create any impact on your profile and takes an unnecessary space in your resume.
Tip 3 : Always make a 1-page resume. If you are making more than 1 page then it means you have added a lot of unnecessary information which are not related to the job profile.
Tip 4 : Always show your Project and Past experience on top, just after your basic info and education. Since these are the things which should be on top to showcast the skills.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA question with Some Stack
  • Q2. Discussion around Current project
Round 2 - One-on-one 

(2 Questions)

  • Q1. Managerial discussion around resume and some basic java and spring question
  • Q2. Java and spring boot question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

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

(4 Questions)

  • Q1. Explain Deadlock?
  • Q2. Explain Red Black Tree?
  • Q3. Find local minima in a 1-D array?
  • Q4. Find local minima in 2-D array?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy level to Medium level

Round 2 - Coding Test 

2 Easy questions of DSA

Round 3 - One-on-one 

(2 Questions)

  • Q1. One DSA question
  • Q2. Normal discussion about tech stack
Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why do you want to join digit?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go easy.. Nothing is hard in digit hiring

Loyalie IT Solutions Interview FAQs

How many rounds are there in Loyalie IT Solutions Software Developer Intern interview?
Loyalie IT Solutions interview process usually has 3 rounds. The most common rounds in the Loyalie IT Solutions interview process are Resume Shortlist, Coding Test and Technical.

Tell us how to improve this page.

Loyalie IT Solutions Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Loyalie IT Solutions Software Developer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Business Analyst
5 salaries
unlock blur

₹2.1 L/yr - ₹5.4 L/yr

Executive Accountant
5 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Software Engineer
4 salaries
unlock blur

₹9.2 L/yr - ₹25 L/yr

HR Manager
4 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Senior Content Writer
3 salaries
unlock blur

₹2.3 L/yr - ₹8 L/yr

Explore more salaries
Compare Loyalie IT Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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