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

Clear (1)

Magic Edtech Senior Software Engineer Interview Questions and Answers

Updated 20 Aug 2024

Magic Edtech Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic to medium questions related to DotNet Core MVC, SQL Server, etc
Round 2 - Technical 

(1 Question)

  • Q1. Completely unprofessional behavior of the interviewer. - No Introduction Direct start asking questions. - Asking too many misleading questions (First ask what you worked on, then ask did you heard about th...

I applied via Naukri.com

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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is dependency injection in laravel
  • Ans. 

    Dependency injection in Laravel is a technique to manage class dependencies and improve code flexibility.

    • Dependency injection allows for easier testing and maintenance of code.

    • It involves passing dependencies to a class through its constructor or method parameters.

    • Laravel's container class manages the dependencies and resolves them when needed.

    • Example: injecting a database connection into a repository class.

    • Can also us...

  • Answered by AI
  • Q2. How do you find the second largest number in a coulmn in mySQL
  • Ans. 

    To find the second largest number in a column in MySQL, you can use the ORDER BY and LIMIT clauses.

    • Write a SELECT statement to retrieve the column values in descending order using ORDER BY.

    • Use the LIMIT clause to limit the result set to the second row.

    • The value in the second row will be the second largest number in the column.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What do you know about magic Edtech
  • Ans. 

    Magic Edtech is an innovative educational technology company.

    • Magic Edtech develops interactive learning platforms and tools.

    • They use advanced technologies like AI, AR, and VR to enhance the learning experience.

    • Their products include virtual classrooms, adaptive learning systems, and educational games.

    • Magic Edtech focuses on personalized learning and data-driven insights.

    • They collaborate with schools, universities, and

  • Answered by AI
  • Q2. What was the most challenging task you faced and how you overcame it

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in answering. Get your basics covered.

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.

I applied via Naukri.com and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Informatica scenario based questions
  • Q2. Told to write complex sql queries based on some informations.
  • Q3. Agile methodology
  • Q4. What do you know about Saama

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience and good hike.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Form based JS questions. String questions in javascript
  • Q2. React interview questions with some state management follow up questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on js ,es6, node.js
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(7 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem of libraries and tools.

    • Examples: AngularJS, Angular 2, A

  • Answered by AI
  • Q2. What is routing
  • Ans. 

    Routing is the process of selecting a path for network traffic to travel from source to destination.

    • Routing involves determining the best path for data packets to travel through a network

    • Routers use routing tables to make decisions on where to send data packets

    • Routing protocols like OSPF and BGP help routers communicate and update routing information

  • Answered by AI
  • Q3. How many types of forms
  • Ans. 

    There are various types of forms, such as physical forms, digital forms, legal forms, etc.

    • Physical forms: Paper-based forms that are filled out by hand.

    • Digital forms: Electronic forms that are filled out online or through software.

    • Legal forms: Forms used for legal purposes, such as contracts or agreements.

  • Answered by AI
  • Q4. Lazy loading in angular
  • Ans. 

    Lazy loading in Angular is a technique used to load modules only when they are needed, improving performance by reducing initial load time.

    • Lazy loading helps in reducing the initial bundle size of the application by loading modules asynchronously.

    • It improves the performance of the application by only loading the modules that are required at a particular time.

    • Lazy loading is achieved by using the loadChildren property i...

  • Answered by AI
  • Q5. Rx jx operator in angular
  • Ans. 

    The rxjs operator in Angular is used for reactive programming and handling asynchronous data streams.

    • RxJS operators are functions that build on the observables foundation to enable sophisticated manipulation of asynchronous data streams.

    • Operators can be used to filter, transform, combine, and more on observables.

    • Example: map(), filter(), mergeMap(), switchMap()

  • Answered by AI
  • Q6. Testing frameworks how to works
  • Ans. 

    Testing frameworks are tools that help automate the process of testing software applications.

    • Testing frameworks provide a structure for writing and executing test cases.

    • They offer features like test data management, test case organization, and reporting.

    • Examples include JUnit for Java, NUnit for .NET, and pytest for Python.

  • Answered by AI
  • Q7. How to load a angular application
  • Ans. 

    To load an Angular application, you can use the Angular CLI command 'ng serve' to start a development server.

    • Use the Angular CLI command 'ng serve' to start a development server

    • Navigate to the project directory in the terminal and run 'ng serve'

    • Open a web browser and go to 'http://localhost:4200/' to view the application

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Some deep question on stream API of Java8
  • Q2. Two program questions -> Anagram String and find first non repeating character from a string
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on Product development phases
  • Q2. Questions on Agile methodologies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical skills set
  • Q2. Tech skills
Round 2 - Technical 

(1 Question)

  • Q1. Tech skills check from your domain
Round 3 - Technical 

(2 Questions)

  • Q1. Teck skills check
  • Q2. Scenario based teck questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared well in your tech domain along with coding skills
Contribute & help others!
anonymous
You can choose to be anonymous

Magic Edtech Interview FAQs

How many rounds are there in Magic Edtech Senior Software Engineer interview?
Magic Edtech interview process usually has 2-3 rounds. The most common rounds in the Magic Edtech interview process are Technical, Resume Shortlist and HR.
How to prepare for Magic Edtech Senior Software Engineer 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 Magic Edtech. The most common topics and skills that interviewers at Magic Edtech expect are Agile Methodology, Analytical, Android, C++ and Core Java.
What are the top questions asked in Magic Edtech Senior Software Engineer interview?

Some of the top questions asked at the Magic Edtech Senior Software Engineer interview -

  1. How do you find the second largest number in a coulmn in my...read more
  2. What is dependency injection in lara...read more
  3. What do you know about magic Edt...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Odoo

No Interviews

INTERVIEWS

Accenture

No Interviews

SALARIES

Tata AIA Life Insurance

REVIEWS

Tata AIA Life Insurance

No Reviews

INTERVIEWS

Okaya Power

No Interviews

INTERVIEWS

HDFC Life

No Interviews

INTERVIEWS

Skyach Software Solutions

No Interviews

INTERVIEWS

Sony India Software Center

No Interviews

Tell us how to improve this page.

Magic Edtech Senior Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Magic Edtech Senior Software Engineer Salary
based on 141 salaries
₹6 L/yr - ₹18.2 L/yr
26% less than the average Senior Software Engineer Salary in India
View more details

Magic Edtech Senior Software Engineer Reviews and Ratings

based on 16 reviews

2.7/5

Rating in categories

2.7

Skill development

3.1

Work-life balance

3.0

Salary

2.4

Job security

2.6

Company culture

2.6

Promotions

2.7

Work satisfaction

Explore 16 Reviews and Ratings
Consultant
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
141 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
130 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Consultant
128 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
119 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Magic Edtech 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent