Upload Button Icon Add office photos
Engaged Employer

i

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

iMocha Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

iMocha Internship Trainee Interview Questions and Answers

Updated 4 Apr 2024

iMocha Internship Trainee Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

15 min duration and communication skill assesment test

Round 2 - One-on-one 

(1 Question)

  • Q1. Ingenral question , about youself and company description

Interview Preparation Tips

Interview preparation tips for other job seekers - hope you do good

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions based or percentage, profit loss, ratio

Round 2 - Technical 

(2 Questions)

  • Q1. Explain about stacks
  • Ans. 

    Stacks are a data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added and removed from the top of the stack

    • Common operations include push (add element) and pop (remove element)

    • Stacks can be implemented using arrays or linked lists

    • Examples of stack usage include function call stack and undo/redo functionality in text editors

  • Answered by AI
  • Q2. To find middle number in the linked list
  • Ans. 

    To find the middle number in a linked list.

    • Traverse the linked list using two pointers, one moving twice as fast as the other.

    • When the fast pointer reaches the end, the slow pointer will be at the middle node.

    • If the linked list has even number of nodes, there will be two middle nodes. Return either one.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduction , hobbies, goals
  • Q2. Strength, weakness, short term and long term goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at data structures and oops concepts

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Feb 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 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself and your past experience if any
  • Q2. Introduce yourself and tell them briefly your achievements
Round 3 - HR 

(2 Questions)

  • Q1. Growth Opportunities and Last CTC
  • Q2. Wait them to pitch the salary then say your expectations as per market standards.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be active in market standards skillsets. Use technical knowledge such as Excel.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Dsa problems dp and tress problem

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about software engineering

  • Answered by AI
  • Q2. Projects and intership

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The test was in hackerrank platform, it was moderate level.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Dp, trees and basic time complexity

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. Projects and intership

Interview Preparation Tips

Topics to prepare for Junglee Games Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Learn DSA
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 - HR 

(3 Questions)

  • Q1. Are you good at decission making?
  • Q2. What is the importance of an HR in an organisation
  • Q3. Are you a good communicator

Interview Preparation Tips

Interview preparation tips for other job seekers - Being confident
Having through knowledge about the subject

Associate Interview Questions & Answers

MagicPin user image Neelesh Pandey

posted on 17 Jul 2024

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

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Some technical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. 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 - Assignment 

Implement login with Google SSO, show emails in a single place

Round 3 - One-on-one 

(4 Questions)

  • Q1. How to implement JWT
  • Ans. 

    JWT can be implemented by generating a token with user information and a secret key, then verifying the token using the same secret key.

    • Generate a JWT token with user information and a secret key

    • Include necessary claims like expiration time, issuer, etc.

    • Verify the JWT token using the same secret key

    • Handle token expiration and refresh if needed

  • Answered by AI
  • Q2. Please read about it on the internet, do take care of public and private key use
  • Q3. Middleware in express, how to create one?
  • Ans. 

    Middleware in Express is a function that has access to the request and response objects.

    • Create a middleware function using app.use() method in Express.

    • Middleware functions have access to the request object (req), the response object (res), and the next middleware function in the application's request-response cycle.

    • Example: app.use((req, res, next) => { console.log('This is a middleware function'); next(); });

  • Answered by AI
  • Q4. Read about it on the internet
Round 4 - One-on-one 

(6 Questions)

  • Q1. Discussed about guards in Angular
  • Q2. Read about it on the internet
  • Q3. How does lazy loading work in Angular
  • Ans. 

    Lazy loading in Angular delays loading of modules until they are needed

    • Lazy loading helps improve performance by only loading modules when they are required

    • It is achieved by using the loadChildren property in the route configuration

    • Lazy loaded modules are loaded asynchronously when the user navigates to the corresponding route

  • Answered by AI
  • Q4. Read about lazy loading in Angular
  • Q5. How to enable SSR in Angular
  • Ans. 

    Server-side rendering (SSR) in Angular can be enabled by using Angular Universal.

    • Install Angular Universal using Angular CLI

    • Create a new Angular Universal project

    • Update app.module.ts to include server-side rendering

    • Build and run the Angular Universal project

  • Answered by AI
  • Q6. Read about Angular Universal for this

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Angular concepts, DSA and Ruby on Rails concepts for the round

Skills evaluated in this interview

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

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

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Internship Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Research a little bit about the company, show go getter attitude & a passion for sales, you'll be hired.

iMocha Interview FAQs

How many rounds are there in iMocha Internship Trainee interview?
iMocha interview process usually has 2 rounds. The most common rounds in the iMocha interview process are Aptitude Test and One-on-one Round.

Tell us how to improve this page.

iMocha Internship Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Lido Learning Interview Questions
2.3
 • 55 Interviews
Pocket FM Interview Questions
2.8
 • 53 Interviews
MagicPin Interview Questions
2.6
 • 50 Interviews
Coding Ninjas Interview Questions
3.8
 • 49 Interviews
Expertrons Interview Questions
3.5
 • 38 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
View all

Fast track your campus placements

View all
Software Engineer
22 salaries
unlock blur

₹5 L/yr - ₹10.9 L/yr

Software Developer
13 salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

UI Developer
8 salaries
unlock blur

₹5 L/yr - ₹8.8 L/yr

Customer Success Specialist
8 salaries
unlock blur

₹6 L/yr - ₹16 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹7 L/yr - ₹14.4 L/yr

Explore more salaries
Compare iMocha with

JoulestoWatts Business Solutions

2.9
Compare

Kissht Finance

3.9
Compare

MagicPin

2.6
Compare

Nestaway

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