Filter interviews by
I applied via Indeed and was interviewed before May 2023. There were 4 interview rounds.
20 marks written test
Apart from teaching, I can also engage in curriculum development, student counseling, extracurricular activities coordination, and educational research.
Curriculum development: Creating lesson plans, designing assessments, and implementing educational strategies.
Student counseling: Providing guidance and support to students in academic and personal matters.
Extracurricular activities coordination: Organizing events, club...
I applied via Newspaper Ad and was interviewed before Aug 2021. There were 5 interview rounds.
Top trending discussions
posted on 26 Jan 2022
Test was about finance+ English+ reasoning
Lists and tuples are data structures in Python used to store collections of items.
Lists are mutable and ordered, allowing for easy addition and removal of elements.
Tuples are immutable and ordered, making them useful for storing related data that should not be changed.
Both can store any type of data, including other lists or tuples.
Lists are created using square brackets, while tuples use parentheses.
Example: my_list =...
Inheritance is a mechanism in OOP where a new class is derived from an existing class.
It allows the new class to inherit the properties and methods of the existing class.
The existing class is called the parent or base class, and the new class is called the child or derived class.
There are different types of inheritance: single, multiple, multilevel, and hierarchical.
Example: A car class can be a parent class, and a sed...
Code for sum of n natural numbers
Use a loop to iterate from 1 to n and add each number to a sum variable
Return the sum variable
posted on 29 Mar 2021
I applied via Naukri.com
I was interviewed in Dec 2020.
Round duration - 70 minutes
Round difficulty - Easy
The basic idea of this approach is to iterate the whole ‘ARR’ from start and see if the element present at the current position satisfies the conditions or not. If the element at the current index is not as per requirement then we will find an element which can take that position from ‘ARR’ after that index and replace it with the current element.
Here is the algorithm:
We can use DFS to solve this problem. The idea is to start from each cell in the matrix and explore all eight paths possible and recursively check if they will lead to the solution or not. To make sure that the path is simple and doesn’t contain any cycles, we keep track of cells involved in the current path and before exploring any cell, we ignore it if it is already covered in the current path.
We can f...
Round duration - 50 minutes
Round difficulty - Easy
The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.
Consider lines at...
The idea is to use the Map to store all the nodes of a particular diagonal number. We will use preorder traversal to update the Map. The key of the Map will be the diagonal number and the value of the Map will be an array/list that will store all nodes belonging to that diagonal.
The steps are as follows:
The basic idea of this approach is to break the problem into subproblems.
Now, there are three possible cases:
Let us define a recursive function, ‘getDiamter’, which takes the root of the binary tree as input parameter and return...
Round duration - 50 minutes
Round difficulty - Medium
The nature of the interviewer was very kind, helped me when I stuck. The test was proctored, our webcam and mic were on, and shared my screen.
For every element in the array, we will run a loop on its right side. As soon as we find an element on its right side which is greater than it, we will break the loop, assign it as the NGE of this element, move forward, and do the same for the next element.
Space Complexity: O(1)Explanation:O(1)
No extra space is used.
Time Complexity: O(n^2)Explanation:O(N ^ 2), Where N is the number of elements ...
The idea is to generate all possible subsets and check if any of them sums up to ‘K’. This can be done through recursion.
Here is the algorithm:
subsetSumToK(N , K , ARR):
helper(ARR, N, K):
Round duration - 50 minutes
Round difficulty - Easy
The nature of the interviewer was very kind, helped me when I stuck. The test was proctored, our webcam and mic were on, and shared my screen.
This problem can be solved by solving its subproblems and then combining the solutions of the solved subproblems to solve the original problem. We will do this using recursion.
Basically, we have to buy the stock at the minimum possible price and sell at the maximum possible price, keeping in mind that we have to sell the stock before buying it again.
Below is the detailed algorithm:
SQL command
ACID properties
Difference between unique primary and foreign key.
What is segementation.
Difference between internal and external fragmentation.
Tip 1 : Do at least 1 projects at any technology
Tip 2 : Learn DSA at least these topics Array, LL, Tree, DP
Tip 1 : At least mention the projects or internships on your resume.
Tip 2 : Avoid unnecessary details like Hobbies, declaration, date.
posted on 15 Sep 2021
I was interviewed in Nov 2020.
Round duration - 90 minutes
Round difficulty - Easy
The exam was in the day at noon. The exam consisted of some MCQ questions from technical subjects and some questions from math and reasoning.
1.Technical test: questions were from basic data structure, DBMS, oops, c and computer networks.
2. Aptitude: Questions were from math and reasoning like work problems, pipe problems, age problems, etc.
3. English: It had some reading compressions and spotting the error questions of easy level.
3. Coding round: This consisted of two questions that were to be solved in 45 mins.
A = “bc”, B = “abcddbc”.
String “A” is pre...
We will traverse the whole array and check if that element previously occurred or not.
The steps are as follows:
Round duration - 40 minutes
Round difficulty - Medium
The interview was scheduled in the morning.
The interviewer asked me back to back questions based on oops concepts, data structure and DBMS.
1.What is Constructor
2.Properties of constructor
3.What is constructor and syntax
4.difference between java and c++
5.Java version I am using currently.
6.Difference between JDK and JRE.
7.Abstract class and method
8.Abstraction
9.Encapsulation
10.What is Data structures and types
11.Push pop operations of stack
12.Array and LinkedList difference
13.Transaction and types of transaction in DBMS
14.Normalisation and explain its types
15.Triggers in DBMS
16.How Transaction is control
17.Joins
18.TCP and UDP difference
19.Http what is protocols and it's port no
20.Proxy server
21.Layers of tcp/ip
We will traverse the BST in a depth-first manner. The moment we encounter either of the nodes P or Q, we will return some boolean flag. The least common ancestor would then be the node for which both the subtree recursions return a ‘True’ flag value.
The algorithm will be -
Round duration - 30 minutes
Round difficulty - Medium
The interview was scheduled for the evening on the same day.
He again asked me questions on topics from oops and Data Structure.
1. encapsulation
2. polymorphism
3. constructor can be inherited or not,
4. Difference between HashSet & tree set
5. What is the concurrent collection and synchronized collection
6., Difference between abstract and interface,
7.can abstract method be private or static
8. what is 2 nf ,
9.what is overloading
10. What is a linked list.
11. Then, he asked me how can I detect a loop in a liked list.
Coding-detect a loop in a linked list.
12. After the coding question was done he asked me the complexity of my solution.
13. Finally, he said if I had any questions for him.
I said no and the interview ended.
We are going to have two loops outer-loop and inner-loop
Round duration - 10 minutes
Round difficulty - Easy
The interview was at the noon
He asked me to Introduce Myself and asked few basic questions.
Introduce yourself.
Do you know anyone who works for us?
Why should we hire you?
Tip 1 : Be confident.
Tip 2 : Speak fluently.
Tip 1 : focus mainly on the oops concept in very details
Tip 2 : data structures questions on the tree and linked list
Tip 1 : Having a project is a must.
Tip 2 : good to share if you have any past experience of hackathon or internship.
I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.
I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.
posted on 7 Apr 2021
I applied via Company Website and was interviewed in Mar 2021. There was 1 interview round.
based on 83 reviews
Rating in categories
Teacher
22
salaries
| ₹3 L/yr - ₹5 L/yr |
PRT Teacher
18
salaries
| ₹3.2 L/yr - ₹7 L/yr |
Accountant
12
salaries
| ₹2 L/yr - ₹4 L/yr |
Administration Executive
8
salaries
| ₹2.1 L/yr - ₹3.1 L/yr |
TGT Social Science Teacher
7
salaries
| ₹3.6 L/yr - ₹6 L/yr |
Delhi Public School Ghaziabad Society
Ryan International School
Podar International School
Eurokids