Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Mobile Tutor Software Developer Interview Questions and Answers

Updated 8 Apr 2024

Mobile Tutor Software Developer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Describe Box model
  • Ans. 

    Box model is a fundamental concept in CSS design, consisting of content, padding, border, and margin.

    • Content: actual content of the box (text, images, etc.)

    • Padding: space between the content and the border

    • Border: the border around the padding

    • Margin: space outside the border, separating it from other elements

    • Example: div { content: 100px; padding: 10px; border: 1px solid black; margin: 20px; }

  • Answered by AI
  • Q2. Php MySQL basic
Round 2 - Coding Test 

Php coding and MySQL queries

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be strong in basics

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sdlc lifecycle of components and architecture.
  • Ans. 

    SDLC lifecycle involves planning, designing, developing, testing, deploying, and maintaining software components and architecture.

    • SDLC (Software Development Life Cycle) includes phases like planning, designing, coding, testing, and maintenance.

    • Components are designed, developed, tested, and integrated into the overall architecture.

    • Architecture involves defining the structure, behavior, and interactions of software comp...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Role and responsibility my tasks and questions on project

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain about Android lifecycle
  • Ans. 

    Android lifecycle refers to the series of states that an activity or fragment goes through from creation to destruction.

    • Android lifecycle includes states like onCreate, onStart, onResume, onPause, onStop, onDestroy, etc.

    • Activities and fragments transition between these states based on user interactions and system events.

    • Understanding Android lifecycle is crucial for managing resources, saving state, and handling config...

  • Answered by AI
  • Q2. Explain about fragment lifecycle
  • Ans. 

    Fragment lifecycle refers to the series of events that occur in the lifespan of a fragment in an Android app.

    • Fragments go through various states like created, started, resumed, paused, stopped, and destroyed.

    • Fragment lifecycle methods include onCreate(), onCreateView(), onResume(), onPause(), onStop(), onDestroy(), etc.

    • Fragment lifecycle is closely tied to the hosting activity's lifecycle.

    • Understanding fragment lifecyc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look into basics

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 coding question around prime number arrays and strings

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce youself
  • Q2. Question around project and skill in the resume and one coding question to solve
Round 3 - Technical 

(2 Questions)

  • Q1. Question on project and skill in resume
  • Q2. 2 question arouond data structer and algorithm
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 2023. There were 6 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Data structures
Round 3 - Technical 

(1 Question)

  • Q1. System Design fundamentals
Round 4 - Technical 

(1 Question)

  • Q1. System Design questions
Round 5 - Behavioral 

(1 Question)

  • Q1. What do you think about the negative news going around the company
Round 6 - HR 

(1 Question)

  • Q1. Why join this company

Interview Preparation Tips

Interview preparation tips for other job seekers - They took 5 rounds of interview. 3 of them were technical and had easy to moderate level of questions. Rest 2 were more of HR rounds.
After taking 5 rounds, they have the audacity of not even calling back, picking up the calls or providing us with any information. If you are not interested in taking the candidate then why waste their time?

Funniest part is that they are fully aware of what a rubbish organization it is. In the later rounds they talked about cost cutting, negative news around the company, and employee complaints for work life balance. However, they are great at gaslighting as well because they make these sound like employee problems not employer problems.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic question of javascript like temporal dead zone, hoisting
  • Q2. Basic of sql and mongo
Round 2 - Technical 

(2 Questions)

  • Q1. Logic bluiding question
  • Q2. 2 leet code quesztion
Round 3 - HR 

(1 Question)

  • Q1. Slaray negotiation
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Given two questions on personal round

Round 2 - Technical 

(2 Questions)

  • Q1. Technical 1 to 1
  • Q2. On dsa
Round 3 - HR 

(1 Question)

  • Q1. Final and friendly round

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic questions related to java 8 and features(functional interface, lambda, stream Api), Question on collections(hashmap,hashset), multi threading etc.
  • Q2. Questions related to SpringBoot , why to use, what is bean scope, why are annotations used, diffrence b/w @Component,@Repository, Write controller class?
  • Q3. Sql Related Questions, How you can optimize query, 2nd highest rank from table.
  • Q4. 2 Coding Questions with time and space complexity, how we can optimize soln.

Interview Preparation Tips

Interview preparation tips for other job seekers - First round will be assessment and second round will be interview. Be confident with your answers and if you find something new try to guess it right, Practice interview questions

I was interviewed in Aug 2022.

Round 1 - Coding Test 

2 hrs duration with 2 easy level dsa questions and 15 around mcqs based on core cs concepts.

Round 2 - Technical 

(2 Questions)

  • Q1. Implement stack using linked list.
  • Ans. 

    Implementing stack using linked list

    • Create a Node class with data and next pointer

    • Create a Stack class with top pointer

    • Implement push() method to add element to top of stack

    • Implement pop() method to remove element from top of stack

    • Implement peek() method to return top element without removing it

  • Answered by AI
  • Q2. Print first duplicate value in a string.
  • Ans. 

    Find the first duplicate value in an array of strings.

    • Create a hash table to store the frequency of each string.

    • Iterate through the array and check if the string already exists in the hash table.

    • If it does, return the string. If not, add it to the hash table.

    • If no duplicates are found, return null or an appropriate message.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise basic dsa and cs core concepts.
Can do Blind 75 for practice.

Skills evaluated in this interview

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

45 mins, Amcat , Basic to advance question

Contribute & help others!
anonymous
You can choose to be anonymous

Mobile Tutor Interview FAQs

How many rounds are there in Mobile Tutor Software Developer interview?
Mobile Tutor interview process usually has 3 rounds. The most common rounds in the Mobile Tutor interview process are Technical, Coding Test and HR.
What are the top questions asked in Mobile Tutor Software Developer interview?

Some of the top questions asked at the Mobile Tutor Software Developer interview -

  1. Describe Box mo...read more
  2. Php MySQL ba...read more

Recently Viewed

INTERVIEWS

BytesView Analytics

No Interviews

INTERVIEWS

Hi Tech Projects

30 top interview questions

INTERVIEWS

Ecom Express

No Interviews

INTERVIEWS

BytesView Analytics

No Interviews

INTERVIEWS

Ecom Express

No Interviews

INTERVIEWS

Zee Entertainment Enterprises

No Interviews

SALARIES

BytesView Analytics

INTERVIEWS

Ecom Express

No Interviews

SALARIES

Bi3 Technologies

DESIGNATION

Tell us how to improve this page.

Mobile Tutor Software Developer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Fast track your campus placements

View all
Mobile Tutor Software Developer Salary
based on 7 salaries
₹4 L/yr - ₹14.4 L/yr
17% more than the average Software Developer Salary in India
View more details

Mobile Tutor Software Developer Reviews and Ratings

based on 3 reviews

2.4/5

Rating in categories

3.1

Skill development

3.8

Work-life balance

2.4

Salary

3.1

Job security

2.4

Company culture

2.4

Promotions

3.1

Work satisfaction

Explore 3 Reviews and Ratings
Instructional Designer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graphic Designer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior 2D Animator
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QC Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mobile Tutor with

BYJU'S

3.1
Compare

Unacademy

3.0
Compare

Toppr

3.4
Compare

Vedant

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