Upload Button Icon Add office photos
Premium Employer

i

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

Magic Edtech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Magic Edtech Software Engineer Interview Questions and Answers for Freshers

Updated 3 Feb 2022

Magic Edtech Software Engineer Interview Experiences for Freshers

1 interview found

I applied via Cocubes and was interviewed in Jan 2022.Β There were 2 interview rounds.

Round 1 - Aptitude TestΒ 

Most rounds were regarding English proficiency and 1 round regarding logical reasoning

Round 2 - HRΒ 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, honest and humble in the interview. Prepare well for the interview and aptitude tests

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jan 2021.Β 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Β 

(2 Questions)

  • Q1. Kafka architecture and APIs
  • Q2. Java and microservices

Interview Preparation Tips

Topics to prepare for Apexon Senior Software Engineer interview:
  • Java
  • Devops
  • Cloud Computing
Interview preparation tips for other job seekers - Keep your concepts clear and your answers precise.

I applied via Naukri.com and was interviewed in Apr 2021.Β There was 1 interview round.

Interview QuestionnaireΒ 

1 Question

  • Q1. Core java question. and basic question on angular 8. Difference between promise and graph

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up basic.

I applied via Approached by Company and was interviewed before Apr 2021.Β There were 3 interview rounds.

Round 1 - TechnicalΒ 

(1 Question)

  • Q1. Technical interview with my primary skill set Where all details asked about technology And given one program to do using primary skill
Round 2 - HRΒ 

(1 Question)

  • Q1. Salary Discussion Questions about why to change org And More specific to HR questions About yourself
Round 3 - ManagiralΒ 

(1 Question)

  • Q1. Question about last project work About Yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is growing with different skillset and domain

I applied via Recruitment Consulltant and was interviewed before Oct 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Β 

They will ask you simple programs to check your logical abilities.

Round 3 - HRΒ 

(2 Questions)

  • Q1. Normal Salary discussion round
  • Q2. Questions about family and location

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well whatever you have mentioned in your resume and be confident about it.

I applied via Campus Placement and was interviewed in Dec 2020.Β There was 1 interview round.

Interview QuestionnaireΒ 

2 Questions

  • Q1. 1. If you given a no return its corresponding excel no.
  • Ans. 

    Convert given no to corresponding excel no.

    • Excel no starts from 1 and goes up to 16384

    • Excel no is calculated using column and row numbers

    • For example, 1 corresponds to A, 27 corresponds to AA, 28 corresponds to AB, and so on

  • Answered by AI
  • Q2. 2. find unique character in a window of k size in a string
  • Ans. 

    Find unique characters in a window of k size in a string.

    • Use a sliding window approach.

    • Maintain a hash table to keep track of character frequency.

    • Remove characters from hash table as the window slides.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication is very important. Give your solution from brute force to optimal. Interviewer has tell me to write code of both questions in any programming language.

Skills evaluated in this interview

I applied via Referral and was interviewed in Oct 2020.Β There was 1 interview round.

Interview QuestionnaireΒ 

2 Questions

  • Q1. DS Questions 1. kth largest element. 2. Implement merge sort
  • Q2. Springboot basics, oops, collection api

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepeare DS well

Interview QuestionnaireΒ 

2 Questions

  • Q1. 1.Implement merge sort. 2. Kth largest element.
  • Ans. 

    Implement merge sort and find kth largest element in an array.

    • Merge sort is a divide and conquer algorithm that recursively divides the array into two halves, sorts them and then merges them.

    • Kth largest element can be found using quick select algorithm or by sorting the array and returning the kth element from the end.

    • Merge sort has a time complexity of O(nlogn) and space complexity of O(n).

    • Quick select has a time comp...

  • Answered by AI
  • Q2. Springboot RestTemplate, singleton, oops

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Jun 2021.Β There were 5 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Β 

Its a simple hackathon MCQ questions based on your skills.

Round 3 - TechnicalΒ 

(3 Questions)

  • Q1. Technical round from Xoriant was easy but tricky, question based on Agile Methodology, All the technologies and projects you mentioned in resume, random questions on development/testing experience and othe...
  • Q2. Tell me about your team you worked previously, team size, team contribution, roles of the team, modules worked in team or independently.
  • Q3. Tell me about any different technical challeng/issue/problems you faced in last project.
Round 4 - TechnicalΒ 

(1 Question)

  • Q1. Project Technical Interview
Round 5 - HRΒ 

(2 Questions)

  • Q1. What is your preferred location
  • Q2. Are you able to relocate

Interview Preparation Tips

Interview preparation tips for other job seekers - Take time to prepare your resume carefully.
Prepare each and everything written in resume.
Work on Leet codes or on DSA, algorithms.
Be confident 😊

I appeared for an interview in Aug 2020.

Interview QuestionnaireΒ 

8 Questions

  • Q1. Position was for UI - Fundamentals of JavaScript (Closure, Promises, Event Loop, filter vs map, Event delegation)
  • Q2. Lifecycle of React Component, State vs Props, Optimization techniques, Redux vs Context
  • Q3. Coding challenge (JS) - remove duplicate entries from array
  • Ans. 

    Remove duplicate entries from array of strings using JavaScript

    • Use Set to remove duplicates

    • Convert Set back to array

    • Use spread operator to convert Set to array

  • Answered by AI
  • Q4. Coding Challenge (JS) - determine if words in given array are anagram or not
  • Ans. 

    Determines if words in given array are anagram or not using JS

    • Create a function that takes an array of strings as input

    • Loop through the array and sort each string alphabetically

    • Compare the sorted strings to check if they are equal

    • Return true if all strings are anagrams, else false

  • Answered by AI
  • Q5. Client Round (1) - Questions on design system, coding challenge - Let's try to create a modal component in React JS from scratch
  • Q6. Client Round (2) - Questions based on scenarios to test your thinking ability and problem solving approach
  • Q7. Client Round (3) - Questions on all the technologies that you have mentioned in your CV. Additional questions on Agile, DevOps and your understanding of CI-CD.
  • Q8. Client Round (4) - Coding challenge - implement/rewrite any inbuilt method provided by JS (e.g. Array.map, Array.filter, function.bind)

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for fundamentals of JS.
Answering questions of React would be easy if you already work on it.
Try to solve at least 5 problems on Hacker Rank or Hacker Earth, before appearing for interview.
That would help you prepare mentally and logically to bare with the process and develop an attitude of keep trying.

Good luck!

Skills evaluated in this interview

Magic Edtech Interview FAQs

How many rounds are there in Magic Edtech Software Engineer interview for freshers?
Magic Edtech interview process for freshers usually has 2 rounds. The most common rounds in the Magic Edtech interview process for freshers are Aptitude Test and HR.
How to prepare for Magic Edtech Software Engineer interview for freshers?
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 Magic Edtech. The most common topics and skills that interviewers at Magic Edtech expect are AWS, Agile, Analytical skills, Application Security and Architectural Design.

Tell us how to improve this page.

Software Engineer Interview Questions from Similar Companies

Incedo Software Engineer Interview Questions
3.1
Β β€’Β 28 Interviews
Xoriant Software Engineer Interview Questions
4.1
Β β€’Β 27 Interviews
Tietoevry Software Engineer Interview Questions
4.3
Β β€’Β 18 Interviews
Apexon Software Engineer Interview Questions
3.3
Β β€’Β 13 Interviews
Globant Software Engineer Interview Questions
3.8
Β β€’Β 9 Interviews
View all
Magic Edtech Software Engineer Salary
based on 130 salaries
β‚Ή4 L/yr - β‚Ή14 L/yr
At par with the average Software Engineer Salary in India
View more details

Magic Edtech Software Engineer Reviews and Ratings

based on 21 reviews

2.8/5

Rating in categories

2.5

Skill development

3.2

Work-life balance

2.6

Salary

2.2

Job security

2.9

Company culture

2.5

Promotions

2.8

Work satisfaction

Explore 21 Reviews and Ratings
Senior Software Engineer
154 salaries
unlock blur

β‚Ή6 L/yr - β‚Ή22.8 L/yr

Consultant
143 salaries
unlock blur

β‚Ή5.9 L/yr - β‚Ή22.8 L/yr

Software Engineer
130 salaries
unlock blur

β‚Ή4 L/yr - β‚Ή14 L/yr

Lead Consultant
128 salaries
unlock blur

β‚Ή9 L/yr - β‚Ή33 L/yr

Softwaretest Engineer
118 salaries
unlock blur

β‚Ή1 L/yr - β‚Ή7 L/yr

Explore more salaries
Compare Magic Edtech with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

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