Upload Button Icon Add office photos

Filter interviews by

Learnyst Interview Questions and Answers

Updated 17 Feb 2025

Learnyst Interview Experiences

Popular Designations

6 interviews found

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

(1 Question)

  • Q1. Basics of DSA 1)Map 2)Arrays
Round 2 - Technical 

(1 Question)

  • Q1. About React optimization technique
Round 3 - Coding Test 

(1 Question)

  • Q1. Implement Nested Comments
  • Ans. 

    Implement nested comments in software development.

    • Use a recursive data structure to represent nested comments.

    • Implement functions to add, delete, and display nested comments.

    • Consider using a tree data structure to organize nested comments.

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Feb 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

The fundamentals of Java programming.

Round 2 - Technical 

(1 Question)

  • Q1. Questions on previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - I personally believe that many of the job openings posted by Learnyst are ghost jobs; candidates are often left without any explanation after a few rounds of interviews.


If the company feels the candidate is not fit for the role after many rounds of interview the interviewer could just leave a rejection mail without ghosting canditates

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AngelList

Round 1 - Coding Test 

Basic coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Database queries
  • Q2. Design and implement MCQ questions in JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your basics

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Front end Developer Interview Questions & Answers

user image Aravinthan R.S.

posted on 21 Aug 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Project experience?
  • Q2. Question about DSA?

Interview Preparation Tips

Topics to prepare for Learnyst Front end Developer interview:
  • DSA
Interview preparation tips for other job seekers - learnt DSA

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Learnyst interview questions for popular designations

 Software Developer

 (2)

 Front end Developer

 (2)

 Software Engineer

 (1)

 QA Engineer

 (1)

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

I applied via AngelList and was interviewed in Dec 2022. 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 

Coding assessment to check your skills in related techstack

Round 3 - One-on-one 

(2 Questions)

  • Q1. Js questions on map, filter and reduce
  • Q2. Basic HTML and css questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about the answers and be prepared for the techstack that is mentioned in the job description.

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AngelList and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Basic college coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Database queries
  • Q2. Design and implement MCQ platform using JavaScript
  • Ans. 

    Create a multiple choice question platform using JavaScript

    • Use HTML for the structure of the MCQ platform

    • Use CSS for styling the platform

    • Use JavaScript for functionality like selecting answers and displaying results

    • Store questions and answers in an array or object

    • Implement a scoring system to track user performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basic questions

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (218)

Interview questions from similar companies

I appeared for an interview in Jul 2020.

Interview Questionnaire 

4 Questions

  • Q1. 1 if we call finish from oncreate in an activity in android. Will it call onresume and other lifecycle functions before ondestroy.
  • Ans. 

    No, calling finish() in onCreate() will not call onResume() or other lifecycle functions before onDestroy().

    • Calling finish() in onCreate() will immediately destroy the activity without calling any other lifecycle methods.

    • If you want to finish an activity after it has been created and resumed, you should call finish() in onPause() or onStop().

    • It is generally not recommended to call finish() in onCreate() as it can lead

  • Answered by AI
  • Q2. 2 Explain recyclerview and its corner cases.
  • Ans. 

    RecyclerView is a flexible view for providing a limited window into a large data set.

    • RecyclerView is used to display large sets of data efficiently

    • It uses a ViewHolder pattern to recycle views

    • Corner cases include handling empty data sets and updating data dynamically

  • Answered by AI
  • Q3. 3 Define communication between acticity and fragment.
  • Ans. 

    Communication between activity and fragment is done through interfaces.

    • Activity implements an interface and passes it to the fragment

    • Fragment can then call methods of the interface to communicate with the activity

    • This allows for communication between the two components without tight coupling

  • Answered by AI
  • Q4. 4 find second largest element in an array.
  • Ans. 

    Find the second largest element in an array of strings.

    • Sort the array in descending order and return the second element.

    • Iterate through the array and keep track of the largest and second largest elements.

    • Use a priority queue to find the second largest element.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Recise data structures basic codes and relevant technology interview questions.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Nov 2022. 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 

Easy and medium questions is their own platform like examly video may be captured

Round 3 - Technical 

(5 Questions)

  • Q1. Resume questions mostly and some situation questions.
  • Q2. Questions on some previous project work.
  • Q3. What would you do if you had been like a question?
  • Ans. 

    If I had been like a question, I would try to understand the context and provide a relevant and informative answer.

    • I would analyze the question and identify the key points or keywords.

    • I would research and gather relevant information to provide a well-informed answer.

    • I would consider the perspective of the person asking the question and provide a response that addresses their needs.

    • I would communicate the answer clearly...

  • Answered by AI
  • Q4. Some questions about company
  • Q5. First round cleared questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well on resume mentioned stacks and have experience on hosting and backend knowledge
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

1.5 hrs coding round

Round 2 - Assignment 

Developed the web application using web frameworks like react/angular

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about Your self
  • Q2. Personal background
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Walk-in and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

So prepare good amout of aptitude , and try to solve at least 15 Questions

Round 2 - Coding Test 

It was an Online coding test 2 questions were there. difficulty (Easy and Medium).

Round 3 - Coding Test 

The third round was again an coding round but it was a pen and paper test , it was in offline mode they will tell you the center after you will complete 2nd round.
In pen and paper test there are 10 coding questions and from topics array , string , recursion , Bit manipulation , BST , Linked List. so you have to solve at least 6-7 questions.

Round 4 - Technical 

(3 Questions)

  • Q1. Questions on HTML, CSS
  • Q2. Permutations in string (Can you Backtracking approach). Always try to explain your approach
  • Q3. Explain your Project?
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store.

    • Used HTML, CSS, and JavaScript for front-end development.

    • Implemented backend functionality using Node.js and MongoDB for database management.

    • Incorporated user authentication and authorization features for secure access.

    • Integrated payment gateway for online transactions.

    • Utilized responsive design for mobile compatibility.

  • Answered by AI

Learnyst Interview FAQs

How many rounds are there in Learnyst interview?
Learnyst interview process usually has 2-3 rounds. The most common rounds in the Learnyst interview process are Technical, Coding Test and One-on-one Round.
What are the top questions asked in Learnyst interview?

Some of the top questions asked at the Learnyst interview -

  1. Design and implement MCQ platform using JavaScr...read more
  2. Implement Nested Comme...read more
  3. Design and implement MCQ questions in JavaScr...read more

Tell us how to improve this page.

Learnyst Interview Process

based on 6 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Z X Learning Interview Questions
4.4
 • 44 Interviews
Zeus Learning Interview Questions
3.3
 • 35 Interviews
Adda 247 Interview Questions
3.2
 • 30 Interviews
Prepca Eduserv Interview Questions
4.1
 • 17 Interviews
Airblack Interview Questions
4.2
 • 17 Interviews
iamneo Interview Questions
3.7
 • 16 Interviews
Paperpedia Interview Questions
2.3
 • 15 Interviews
View all

Learnyst Reviews and Ratings

based on 10 reviews

3.7/5

Rating in categories

3.7

Skill development

3.4

Work-life balance

4.0

Salary

3.3

Job security

3.6

Company culture

3.7

Promotions

3.6

Work satisfaction

Explore 10 Reviews and Ratings
Software Developer
7 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Software Engineer
4 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Front end Developer
4 salaries
unlock blur

₹6 L/yr - ₹13.3 L/yr

Data Engineer
3 salaries
unlock blur

₹6 L/yr - ₹7 L/yr

Explore more salaries
Compare Learnyst with

Z X Learning

4.4
Compare

Schoolnet India

3.9
Compare

Adda 247

3.2
Compare

Trivium Education Services

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