Upload Button Icon Add office photos
Engaged Employer

i

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

Vidya Mantra Edusystems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Vidya Mantra Edusystems Software Engineer Interview Questions and Answers

Updated 6 Mar 2023

Vidya Mantra Edusystems Software Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Feb 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

C, c++ ,core Java ,html ,css ,data structures

Round 3 - Technical 

(6 Questions)

  • Q1. Technical c++ core java
  • Q2. Share market and digital marketing
  • Q3. Software engineer web design
  • Q4. Data type define questions online
  • Q5. C programming tutorial online interview
  • Q6. Core java tutorial online interview
Round 4 - Aptitude Test 

Data structures algorithm and arry defines

Interview Preparation Tips

Interview preparation tips for other job seekers - Share market trading questions
Software developing and web design questions

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy aptitude questions based on logical reasoning and basic maths.

Round 2 - Coding Test 

Easy logic-based question based on arrays and strings with some javascript output-based questions.

Round 3 - Coding Test 

Discussion about the projects that I made in college and the tech stack I know.
1 basic array/string-based problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy to crack as no extensive DSA knowledge is required, basic logical reasoning and coding skills are enough.
PS: This was in 2015 but as per my knowledge the process is still the same.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to work experience and skills on Resume
  • Q2. Formula to find midpoint and slope of a line
  • Ans. 

    Midpoint and slope formulas help determine key characteristics of a line in coordinate geometry.

    • Midpoint formula: M = ((x1 + x2)/2, (y1 + y2)/2). Example: M = ((1 + 3)/2, (2 + 4)/2) = (2, 3).

    • Slope formula: m = (y2 - y1) / (x2 - x1). Example: m = (4 - 2) / (3 - 1) = 1.

    • Midpoint gives the center point between two coordinates.

    • Slope indicates the steepness and direction of the line.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume well and also projects you worked on. They do not hire for specific tech stack. You will get any technology based on project requirements. So prepare programming concepts and DSA well
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

My name is amar reverse the string without using inbuilt method

Round 3 - Technical 

(1 Question)

  • Q1. What is nodejs and what is promise. What is closures
  • Ans. 

    Node.js is a runtime environment for executing JavaScript code outside of a web browser. Promises are objects representing the eventual completion or failure of an asynchronous operation. Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Node.js is a runtime environment that allows you to run JavaScript on the server-side.

    • Promises are used in asynchronous progra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My suggestion is to don't join this company if they will say we have I agreement for 2 years they don't professional ethics this company won't follow the rules when they don't have work to do they will remove the employees without a reason please be careful and think twice before join this company this is my request
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Basic question of indiabix topics and 10 code questions

Round 3 - Technical 

(4 Questions)

  • Q1. Resume based questions,coding questions,core subject questions
  • Q2. What is indexing in dbms?
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by allowing faster retrieval of data.

    • Indexing creates a data structure that allows for quick lookups of data based on specific columns.

    • It helps in reducing the time taken to retrieve data from a database table.

    • Examples of indexing methods include B-tree, Hash indexes, and Bitmap indexes.

  • Answered by AI
  • Q3. Secondlargest element
  • Q4. Pascal triangle
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 4 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 - Aptitude Test 

Logical reasoning and non verbal questions

Round 3 - Coding Test 

Basic dsa concepts and find the syntax error

Round 4 - One-on-one 

(1 Question)

  • Q1. Basics about oops dsa question and question related to your projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Test consist of 25 Apatitude Question and 10 Coding problems of Debugging code, Find Output, Set Matrixs, Valid Matrix, Height of N-ary Tree, Sorting, Linked List etc. So prepare well with standard dsa problems of any sheet (striver sheet)

Round 3 - Technical 

(5 Questions)

  • Q1. Technical Round consist of one coding question and detailed discussion on my smart india hackathon project and counter question on it with some of question on performance and security.
  • Ans. Performance Technique in React/Node ReactJS Interview Question
  • Answered by Dharmesh Vala
  • Q2. Find 2nd Largest Element in array
  • Ans. 

    Iterate through array to find 2nd largest element

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

    • Handle edge cases like empty array or array with less than 2 elements

    • Example: ['3', '5', '2', '7', '1'] should return '5'

  • Answered by AI
  • Q3. Question on Redux also asked to pass information in reactjs.
  • Ans. Before interview refer redux documentation and standard interview question.
  • Answered by Dharmesh Vala
  • Q4. Authentication and Authorization question on my project
  • Q5. Security issues in your project

Interview Preparation Tips

Topics to prepare for Zeus Learning Software Engineer interview:
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - Prepare all concept of apatitude well and make habit of practising coding on leetcode or gfg.
Make some project and learn development as well.
Before any interview prepare standard interview question on that tech stack.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Object oriented programming questions

Round 2 - Coding Test 

Combination of all letters in a word

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

I applied via Naukri.com and was interviewed before Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Both Aptitude and coding

Round 3 - Technical 

(1 Question)

  • Q1. Basic Java questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont try to give interview in this company this is not company we are students in this organization or I can say institute they treat us like a students
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

3 coding questions any programming language

Round 3 - Technical 

(2 Questions)

  • Q1. Technical Interview based on your programming skills
  • Q2. 1.Find the possible permutation of the given string 2. Remove 3 from the given input (Number) and input should be taken from the user 3. Check whether the given string is Anagram without using map DATA s...
  • Ans. 

    Answering questions related to string permutations, removing numbers, and checking for anagrams without using map data structure.

    • To find permutations of a string, use recursion to swap characters at each position.

    • To remove a specific character (e.g. '3') from a string, iterate through the string and build a new string without the character.

    • To check for anagrams without using a map data structure, sort both strings and

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Introduce yourself and are you willing to relocate And salary discussion. That's it

Skills evaluated in this interview

Vidya Mantra Edusystems Interview FAQs

How many rounds are there in Vidya Mantra Edusystems Software Engineer interview?
Vidya Mantra Edusystems interview process usually has 4 rounds. The most common rounds in the Vidya Mantra Edusystems interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Vidya Mantra Edusystems Software Engineer interview?

Some of the top questions asked at the Vidya Mantra Edusystems Software Engineer interview -

  1. Share market and digital market...read more
  2. Technical c++ core j...read more
  3. C programming tutorial online interv...read more

Tell us how to improve this page.

Vidya Mantra Edusystems Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
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
 • 31 Interviews
Prepca Eduserv Interview Questions
4.1
 • 19 Interviews
Airblack Interview Questions
4.2
 • 17 Interviews
iamneo Interview Questions
3.7
 • 16 Interviews
Paperpedia Interview Questions
2.3
 • 15 Interviews
View all
Vidya Mantra Edusystems Software Engineer Salary
based on 5 salaries
₹2.2 L/yr - ₹3.8 L/yr
65% less than the average Software Engineer Salary in India
View more details

Vidya Mantra Edusystems Software Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

4.5

Work-life balance

3.3

Salary

3.9

Job security

5.0

Company culture

3.3

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Front end Developer
23 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Data Entry Operator
17 salaries
unlock blur

₹1.8 L/yr - ₹3.6 L/yr

Content Editor
7 salaries
unlock blur

₹2.5 L/yr - ₹3.1 L/yr

Content Reviewer
6 salaries
unlock blur

₹2.2 L/yr - ₹3.1 L/yr

Software Engineer
5 salaries
unlock blur

₹2.2 L/yr - ₹3.8 L/yr

Explore more salaries
Compare Vidya Mantra Edusystems with

Z X Learning

4.4
Compare

Adda 247

3.2
Compare

Trivium Education Services

3.7
Compare

MeritNation

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