Upload Button Icon Add office photos

Filter interviews by

Wisdom School Of Management Interview Questions and Answers

Updated 27 Mar 2023

Wisdom School Of Management Interview Experiences

1 interview found

Tamil Teacher Interview Questions & Answers

user image mellowalligator

posted on 27 Mar 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Newspaper Ad and was interviewed before Mar 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 - Assignment 

Mangement good but sometimes work preser and time' duration

Round 3 - One-on-one 

(8 Questions)

  • Q1. What before working school and indugval talaned important
  • Q2. Location nearby Chang on praplam
  • Q3. Good camping industry passed working hours
  • Q4. Key words on praplam anany one
  • Q5. Good 👍🏼 excellent work
  • Q6. What are jobs going on time experience
  • Q7. Costamer praplam eapade salpanv eing anything peapalm come
  • Q8. Parsonal first'important aud office important why

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep smiling any problems savle and indugval important questions to call reply

Tamil Teacher Interview Questions asked at other Companies

Q1. How to teach your kids in interesting ways?
View answer (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2022. There were 3 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 - Group Discussion 

A common gd round with a common topic.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Why u wanna join ue?
  • Q2. Okay for relocation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and make sure u bulid a trust u are very flexible

I applied via Recruitment Consulltant and was interviewed before Feb 2021. 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 - One-on-one 

(1 Question)

  • Q1. Profile based /process related
Round 3 - One-on-one 

(1 Question)

  • Q1. Profile based/Process related
Round 4 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Why are you looking for a change?
  • Q4. Compensation negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Sodexo/insurance/transport are on top of ctc

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Rotate Matrix Right K Times

    You are given a matrix MAT of size 'N' * 'M', where 'N' is the number of rows and 'M' is the number of columns, along with a positive integer 'K'. Your task is to rotate the ma...

  • Ans. 

    Rotate a matrix to the right 'K' times by shifting each column to the right 'K' times.

    • Iterate 'K' times to perform right rotation on the matrix

    • Shift each column to the right by one position in each rotation

    • Handle wrapping around the matrix when shifting columns

    • Return the matrix elements row-wise after 'K' rotations

  • Answered by AI
  • Q2. 

    Word Search Problem Statement

    Given a two-dimensional grid of size N x M consisting of upper case characters and a string 'WORD', determine how many times the 'WORD' appears in the grid.

    The 'WORD' can b...

  • Ans. 

    Count how many times a given word appears in a 2D grid by moving in any of the eight possible directions.

    • Iterate through each cell in the grid and check if the word can be formed starting from that cell in any of the eight directions.

    • Use recursion to explore all possible paths from a starting cell to form the word.

    • Keep track of visited cells to avoid revisiting the same cell in the same path.

    • Return the count of how man

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 75 minutes
Round difficulty - Medium

Interview started with an introduction and walk through the resume for first 5 minutes. After that, interview asked few coding questions.

  • Q1. 

    Problem Statement: Largest Island

    You are provided with a non-empty grid consisting of only 0s and 1s. Your task is to determine the maximum area of an island within the given grid.

    An island consists of a...

  • Ans. 

    Find the maximum area of an island in a grid of 0s and 1s.

    • Iterate through the grid and perform depth-first search (DFS) to find connected 1s.

    • Keep track of the area of each island found and return the maximum area.

    • Consider all four directions (horizontal, vertical, and diagonal) while exploring the island.

    • Handle edge cases like grid boundaries and already visited cells during DFS.

    • If no island is present, return 0 as the

  • Answered by AI
  • Q2. 

    Pythagorean Triplet Problem

    Determine if there exists a Pythagorean triplet within a given array of integers. A Pythagorean triplet consists of three numbers, x, y, and z, such that x^2 + y^2 = z^2.

    Expl...

  • Ans. 

    Check if there exists a Pythagorean triplet in a given array of integers.

    • Iterate through all possible triplets in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of two numbers is equal to the square of the third number.

  • Answered by AI
  • Q3. 

    Top View of Binary Tree Problem Statement

    Given a Binary Tree of integers, you are tasked with finding the top view of the binary tree. The top view is the set of nodes visible when the tree is viewed fro...

  • Ans. 

    Find the top view of a Binary Tree by returning a list of visible nodes when viewed from the top.

    • Traverse the Binary Tree in level order and keep track of the horizontal distance of each node from the root.

    • Use a map to store the nodes at each horizontal distance, and only keep the topmost node for each horizontal distance.

    • Return the values of the topmost nodes in the map as the top view of the Binary Tree.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This round was focused on DSA along with short discussion on computer science fundamentals. For coding problems, I was asked to code the first problem only. For others, had to discuss the approach only. For computer science fundamentals, discussion on OOPS. Differences between process and threads were discussed.

  • Q1. 

    Fixing a Swapped Binary Search Tree

    Given a Binary Search Tree (BST) where two nodes have been swapped by mistake, your task is to restore or fix the BST without changing its structure.

    Input:

    The first...
  • Ans. 

    Restore a Binary Search Tree by fixing two swapped nodes without changing its structure.

    • Identify the two nodes that are swapped by mistake in the BST.

    • Swap the values of the two identified nodes to restore the BST.

    • Perform an in-order traversal of the BST to verify the correct restoration.

    • Ensure no extra space other than the recursion stack is used for the solution.

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations like getSize, isEmpty, push, pop, and getTop in O(1) time.

    • Create a class named Stack with methods for getSize, isEmpty, push, pop, and getTop.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure that each operation runs in constant time O(1).

    • Handle edge cases like empty stack appropriately.

    • Test the implementation with sample queri

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in GurgaonEligibility criteria7 CGPAOYO interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, OS, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on DSA as you will be judged mostly on that for entry-level software engineer profiles.
Tip 2 : Don't mug up the solution as you might not be able to recall the approach or you might face new question that you haven't seen earlier.
Tip 3 : Practice as much as possible from platforms like InterviewBit, LeetCode.

Application resume tips for other job seekers

Tip 1 : Try not to mention those things about which you are not comfortable. 
Tip 2 : Having one or two good projects in resume helps.
Tip 3 : Mention good competitive programming ranks (if any)
Tip 4 : Use overleaf.com for making a resume using Latex.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Inevitable consisted of 4 round :-
  • Q2. One such question i remember was no of possible decoding of a given integer string. Ex - If a-1, b-2, c-3, ... Z - 26 Then 123 can be written as ABC, LC, AW
  • Q3. 3) MCQ - it consisted of multiple choice questions from android and java domain. The level was medium. 4) Manager round - asked questions about my project and technologies used. Gave me a problem relate...

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Algorithms

I applied via Walk-in and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How will you pursue parents of the child to buy our tablets?
  • Ans. 

    I will highlight the benefits of our tablets for children's education and offer discounts or promotions to attract parents.

    • Emphasize the educational benefits of our tablets

    • Offer discounts or promotions to attract parents

    • Provide testimonials from satisfied parents

    • Partner with schools or educational institutions to promote our tablets

    • Create engaging and informative marketing materials targeted towards parents

    • Offer a tria...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be smart and answer aggressively

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is bond?
  • Ans. 

    A bond is a debt security that represents a loan made by an investor to a borrower.

    • Bonds are issued by corporations, municipalities, and governments to raise capital.

    • They have a fixed interest rate and a maturity date when the principal is repaid.

    • Bonds are generally considered less risky than stocks but offer lower potential returns.

    • Investors can buy and sell bonds on the secondary market.

    • Examples of bonds include U.S....

  • Answered by AI
  • Q2. What is Fund Accounting?
  • Ans. 

    Fund Accounting is a specialized accounting system used by non-profit organizations and government agencies to track and manage funds.

    • It involves tracking and reporting on the financial activity of specific funds or grants.

    • It ensures that funds are used for their intended purposes and that financial reports are accurate and transparent.

    • Examples include tracking donations to a non-profit organization or managing governm...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good easy & simple, mostly the questions relate to your CV and family background some are from Financial terms

I applied via Recruitment Consultant and was interviewed before Jul 2020. There were 7 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Question regarding Spring boot micro service and JPA, 2. Collections questions like contract between equals and hashcode, Array vs list etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing too hard. If you are bit well and springboot and core java you will definitely be able crack the interview.

I appeared for an interview in Oct 2016.

Interview Questionnaire 

8 Questions

  • Q1. C,C++, Programming Concepts
  • Q2. Resume Based
  • Q3. Puzzle Questions
  • Q4.  OS, Database, Networking, Computer Architecture based question
  • Q5. Project Based- Briefs, Details
  • Q6. What are your hobbies
  • Ans. 

    My hobbies include hiking, playing guitar, and cooking.

    • Hiking: I enjoy exploring nature trails and challenging myself physically.

    • Playing guitar: I love learning new songs and improving my skills.

    • Cooking: I like experimenting with different recipes and creating delicious meals.

  • Answered by AI
  • Q7. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and improving my skills

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q8. Why do you want to join DELL.
  • Ans. 

    I want to join DELL because of their innovative technology solutions and strong reputation in the industry.

    • DELL is known for their cutting-edge technology solutions which align with my passion for software development.

    • I admire DELL's strong reputation in the industry and their commitment to customer satisfaction.

    • I believe joining DELL will provide me with opportunities for growth and career advancement.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA>9.0

Skills: Technical Skills
College Name: KIIT University

I appeared for an interview in Jan 2017.

Interview Preparation Tips

Round: Group Discussion
Experience: All got different topics to discuss on gd.
Tips: Plan before you speak. Be sure whether you are to or against.
Duration: 5 minutes

Round: Test
Experience: More questions on blood relationship, ages
Tips: Os db on technical
Duration: 1 hour

Skills: Technical Questions, Manage A Difficult Situation, Technical Knowledge(ML

Wisdom School Of Management Interview FAQs

How many rounds are there in Wisdom School Of Management interview?
Wisdom School Of Management interview process usually has 3 rounds. The most common rounds in the Wisdom School Of Management interview process are Resume Shortlist, Assignment and One-on-one Round.
How to prepare for Wisdom School Of Management 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 Wisdom School Of Management. The most common topics and skills that interviewers at Wisdom School Of Management expect are Communication Skills, English, Teaching and Team Handling.
What are the top questions asked in Wisdom School Of Management interview?

Some of the top questions asked at the Wisdom School Of Management interview -

  1. Costamer praplam eapade salpanv eing anything peapalm c...read more
  2. Good camping industry passed working ho...read more
  3. Location nearby Chang on prap...read more

Tell us how to improve this page.

Wisdom School Of Management Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Nagarro Interview Questions
4.0
 • 765 Interviews
Delhivery Interview Questions
3.8
 • 477 Interviews
Ericsson Interview Questions
4.1
 • 416 Interviews
Dell Interview Questions
3.9
 • 391 Interviews
Ekart Logistics Interview Questions
3.9
 • 315 Interviews
Oyo Rooms Interview Questions
3.3
 • 221 Interviews
Access Healthcare Interview Questions
3.9
 • 214 Interviews
Ecom Express Interview Questions
3.8
 • 204 Interviews
View all

Wisdom School Of Management Reviews and Ratings

based on 10 reviews

2.6/5

Rating in categories

2.6

Skill development

2.6

Work-life balance

2.6

Salary

2.6

Job security

3.8

Company culture

2.6

Promotions

2.6

Work satisfaction

Explore 10 Reviews and Ratings
Teacher
6 salaries
unlock blur

₹0.6 L/yr - ₹2 L/yr

School Teacher
4 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Teaching Staff
3 salaries
unlock blur

₹0.9 L/yr - ₹5 L/yr

Science Teacher
3 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Operative
3 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Explore more salaries
Compare Wisdom School Of Management with

BYJU'S

3.1
Compare

Ericsson

4.1
Compare

Delhivery

3.8
Compare

Ekart Logistics

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