Upload Button Icon Add office photos

Filter interviews by

Edudigm Senior Mentor - Chemistry Interview Questions and Answers

Updated 18 Dec 2015

Edudigm Senior Mentor - Chemistry Interview Experiences

1 interview found

Interview Preparation Tips

Round: Resume Shortlist
Experience: The shortlist was based on your resume. I just mentioned all the curricular and extra curricular activities i have taken part in till date.
Tips: Stress the points where you have taken some initiatives to drive the education for all the young brains and your previous teaching experiences.

Round: Technical Interview
Experience: The interview lasted for about 30 minutes. As i am interested in teaching Chemistry, some questions related to my clarity in subject were asked. Also things such as previous teaching experiences, interest in education sector and communication skills were tested .
Tips: Make sure that you mention all the points related to your passion for promoting education in your CV. The interviewer was very friendly. Just open up and speak.

Round: Presentation
Experience: Some students were selected from the 1st round of interviews. In this round, you have to give a lecture for about 10 mins on any topic of your interest in Chemistry to all the shortlisted candidates and the panel which came for the interview, followed by questions related to your lecture. I wasn't aware of this round till i entered the room and haven't got some time to prepare. I gave a brief introduction of all the topics in Chemistry and why chemistry shouldnot be percieved as some alien subject. The panel was pretty impressed by my presentation and wished me soon after the round was over.
Tips: Choose a topic which you are comfortable with. For the next 10 mins, the hall is yours. :)

Round: HR Interview
Experience: Few students were selected for HR interview (Final round). Some basic questions about strength's and weaknesses, family background were asked.
Tips: Keep it cool and frank. :)

Skills:
College Name: IIT Kharagpur

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed

Round 1 - One-on-one 

(1 Question)

  • Q1. About sales process
Round 2 - One-on-one 

(1 Question)

  • Q1. Sales skills and selling skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join this company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Technical round 2 questions

Interview Preparation Tips

Interview preparation tips for other job seekers - work on dsa questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Java program for duplicate elements in array
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. 2Sum DSA leetcode problem
  • Ans. 

    2Sum problem involves finding two numbers in an array that add up to a specific target.

    • Use a hashmap to store the difference between the target and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI
  • Q2. Spiral traversal of a Binary tree
  • Ans. 

    Spiral traversal of a Binary tree involves visiting nodes level by level alternating between left to right and right to left.

    • Start by pushing the root node into a queue.

    • While the queue is not empty, pop a node, print its value, and push its children into the queue.

    • Alternate between popping nodes from the queue and printing their values in a spiral manner.

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

(2 Questions)

  • Q1. A problem similar to coin change problem of leetcode
  • Q2. Aggressive cows problem
  • Ans. 

    The aggressive cows problem involves finding the maximum distance between cows in a field while ensuring they are not too close to each other.

    • Use binary search to find the maximum distance between cows.

    • Sort the cows' positions and check if a certain distance is feasible.

    • Consider the constraints of the problem such as the number of cows and the size of the field.

  • Answered by AI
Round 3 - One on one round with CTO 

(1 Question)

  • Q1. Basic behavioural questions like why I am looking for a change and would I be able to handle the increased work pressure as I was shifting from MNC to a startup

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA questions were easy to medium and they didn’t really focus on any one language. Problem solving skills is all they judged me on.

Skills evaluated in this interview

Intern Interview Questions & Answers

Seagate user image Shivani Mukunde

posted on 1 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python program questions
  • Q2. OOPS based programming questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C and Cpp all concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. DSA - Linked List, Array and Strings
Round 2 - HR 

(1 Question)

  • Q1. Why should we hire you
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is hyperparameter tuning?
  • Ans. 

    Hyperparameter tuning is the process of selecting the best set of hyperparameters for a machine learning model.

    • Hyperparameters are parameters that are set before the learning process begins.

    • Hyperparameter tuning involves adjusting hyperparameters to optimize the model's performance.

    • Common techniques for hyperparameter tuning include grid search, random search, and Bayesian optimization.

  • Answered by AI
  • Q2. How do we train neural networks?
  • Ans. 

    Neural networks are trained using algorithms that adjust the weights and biases of the network based on the input data and desired output.

    • Neural networks are trained using a process called backpropagation, where the error between the predicted output and the actual output is used to adjust the weights and biases of the network.

    • Training data is fed into the neural network, and the network's output is compared to the des...

  • Answered by AI
  • Q3. What is overfitting?
  • Ans. 

    Overfitting occurs when a machine learning model learns the training data too well, including noise and outliers, leading to poor generalization on new data.

    • Overfitting happens when a model is too complex and captures noise in the training data.

    • It can be identified when a model performs well on training data but poorly on unseen data.

    • Techniques to prevent overfitting include cross-validation, regularization, and early ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join. Too much politics and racism. They only prefer regional candidates.

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

KLA Interview Questions
3.7
 • 44 Interviews
Odoo Interview Questions
3.2
 • 28 Interviews
GigDe Interview Questions
4.4
 • 22 Interviews
Fusion Interview Questions
3.3
 • 17 Interviews
Seagate Interview Questions
3.3
 • 17 Interviews
Anlage Infotech Interview Questions
3.5
 • 14 Interviews
Legend Footwear Interview Questions
3.7
 • 14 Interviews
TRIGO Group Interview Questions
2.7
 • 13 Interviews
View all
SME
5 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Manager
4 salaries
unlock blur

₹6 L/yr - ₹6 L/yr

Senior Manager
4 salaries
unlock blur

₹4 L/yr - ₹4.8 L/yr

Counsellor
4 salaries
unlock blur

₹0.1 L/yr - ₹0.2 L/yr

Senior Sales Manager
3 salaries
unlock blur

₹4.3 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Edudigm with

Baoiam Innovations

4.5
Compare

Plada Infotech Services

3.6
Compare

Fusion

3.2
Compare

Anlage Infotech

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