Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Miles Education - CPA & CMA Review (Hyderabad) Team. If you also belong to the team, you can get access from here

Filter interviews by

Miles Education - CPA & CMA Review (Hyderabad) Internship Trainee Interview Questions and Answers

Updated 28 Jan 2025

Miles Education - CPA & CMA Review (Hyderabad) Internship Trainee Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Jul 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discussion about the roles and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be real and open to learn

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Interduce your self
  • Ans. 

    I am a dedicated and experienced consultant with a strong background in project management and strategic planning.

    • Over 10 years of experience in consulting roles

    • Specialize in project management and strategic planning

    • Proven track record of successful client engagements

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q2. Work experience
Round 2 - Behavioral 

(3 Questions)

  • Q1. Interduce your self
  • Ans. 

    I am a dedicated and experienced consultant with a strong background in project management and strategic planning.

    • Over 10 years of experience in consulting roles

    • Specialize in project management and strategic planning

    • Successfully led multiple projects resulting in increased efficiency and cost savings

  • Answered by AI
  • Q2. Work experience
  • Q3. Salary expectance

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

It was a mix of mathematical aptitude, logical ability, and puzzles along with 2 programming questions of easy and medium level. Time was enough and no sectional time was present. 1-2 MCQs on SQL were also present.

This round was immediately followed by an SHL aptitude test which was basically a quick limited time check of your verbal ability and math because many questions were to be done in 1 hour.

  • Q1. 

    Boolean Matrix Transformation Challenge

    Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specifi...

  • Ans. 

    Modify a boolean matrix such that if any element is 1, set its entire row and column to 1.

    • Iterate through the matrix and mark rows and columns to be modified

    • Use additional arrays to keep track of rows and columns to be modified

    • Update the matrix in-place based on the marked rows and columns

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Easy

It was an online video interview round on HackerEarth with simultaneous code option. It was mostly justifying your resume in the first 15 minutes. After that OOPS was majorly asked. Basics of programming including questions on STL were asked. A class which required inheritance was asked by the interviewer to write. I was helped by the interviewer if i got stuck somewhere, Some questions on implementation of hashmaps and priority queues were also asked. A puzzle was asked which luckily struct to me at that moment.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as Software Engineer in DelhiEligibility criteria7 CGPAToppr interview preparation:Topics to prepare for the interview - DBMS, OOPS, Data structures, Dynamic Programming, Graphs, Algorithms, Sorting searching, Compiler designTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Never give up
Tip 2 : When u start a topic, don't move on to next topic before you are 100% confident in previous topic
Tip 3 : Try to give maximum time on basics of a topic especially OOPS
Tip 4 - Practice Atleast 250 Questions
Tip 5 - Ex- Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Write only those things in resume in which you are 100% confident
Tip 2 : Write maximum projects you have and be ready to explain them thoroughly
Tip 3 : Don't make any silly spelling mistakes on resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. They ask about how you handle the pressure and why toppr. Are you really think to complete target on this sector.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are bold to answer without having any fear. They dont cut your head. Simply they reject you. So say what you think. How you handle the pressure. Be bold and be confident that's the only thing to get the job in marketing...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What makes you a suitable candidate for this position?
  • Q2. Where do you envision yourself in five years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly for the interview.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Normal Aptitute test with logical reasoning.

I appeared for an interview in Feb 2021.

Interview Questionnaire 

1 Question

  • Q1. Admin average question as well as with trigger event or aura component.

Interview Preparation Tips

Interview preparation tips for other job seekers - Average and got the offer... It nice company work environment is too good.....

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How you got to know about vedantu consultant jobs?
  • Q2. Do you know all the 42 sounds
  • Ans. 

    No, I don't know all the 42 sounds.

    • There are 44 sounds in the English language, not 42.

    • I am familiar with most of the sounds, but not all of them.

    • It's important to continue learning and practicing to improve my understanding of the sounds.

  • Answered by AI
  • Q3. Diagraphs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, strong communication. Friendly nature
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Q1 difference between let and const
  • Ans. 

    let is mutable and can be reassigned, const is immutable and cannot be reassigned

    • let allows reassignment of values, const does not

    • const must be initialized with a value, let can be declared without a value

    • const is block-scoped, let is function-scoped

  • Answered by AI
  • Q2. Q2 what are closures?
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the parent function has finished executing.

    • Closures allow functions to maintain access to variables from their parent scope

    • They are created when a function is defined within another function

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
  • Q3. Q3. What is typeof null
  • Ans. 

    typeof null returns 'object' in JavaScript.

    • typeof null is 'object' in JavaScript

    • This is a historical bug in JavaScript that has not been fixed for backward compatibility

    • Example: console.log(typeof null) will output 'object'

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Q1. Find palindrome strings in an array of strings.
  • Ans. 

    Finding palindrome strings in an array of strings.

    • Iterate through each string in the array.

    • For each string, check if it is equal to its reverse to determine if it is a palindrome.

    • Store palindrome strings in a separate array or print them out.

  • Answered by AI
  • Q2. Q2. Explain debouncing with example.
  • Ans. 

    Debouncing is a technique used to limit the rate at which a function is called.

    • Debouncing is used to prevent multiple rapid calls to a function, typically in response to user input.

    • It involves setting a delay before allowing the function to be called again.

    • Example: Debouncing a search input field to only trigger the search function after the user has stopped typing for a certain period.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For frontend round, you should know most frequently asked Javascript questions. One e.g. can be debouncing. You should also know basic coding questions like find palindrome.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to manage and configure postfix mail server.
  • Ans. 

    Postfix mail server can be managed and configured using configuration files and command line tools.

    • Edit the main configuration file /etc/postfix/main.cf to make changes to the server settings

    • Use postconf command to view or change configuration parameters

    • Restart the postfix service after making changes for them to take effect

    • Utilize tools like postmap to manage lookup tables for postfix

    • Monitor mail server logs for troub

  • Answered by AI
  • Q2. OS go to maintenance mode, how to fix it.
  • Ans. 

    To fix an OS in maintenance mode, reboot the system, check for any recent changes or updates, run diagnostics, and restore from a backup if necessary.

    • Reboot the system to see if it resolves the issue

    • Check for any recent changes or updates that may have caused the OS to go into maintenance mode

    • Run diagnostics to identify any hardware or software issues

    • Restore the OS from a backup if needed

  • Answered by AI

Skills evaluated in this interview

Miles Education - CPA & CMA Review (Hyderabad) Interview FAQs

How many rounds are there in Miles Education - CPA & CMA Review (Hyderabad) Internship Trainee interview?
Miles Education - CPA & CMA Review (Hyderabad) interview process usually has 1 rounds. The most common rounds in the Miles Education - CPA & CMA Review (Hyderabad) interview process are One-on-one Round.

Tell us how to improve this page.

Miles Education - CPA & CMA Review (Hyderabad) Internship Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Unacademy Interview Questions
3.0
 • 209 Interviews
NxtWave Interview Questions
3.8
 • 189 Interviews
Vedantu Interview Questions
3.3
 • 184 Interviews
Chegg Interview Questions
4.1
 • 158 Interviews
Simplilearn Interview Questions
3.2
 • 107 Interviews
Teachnook Interview Questions
3.1
 • 87 Interviews
Toppr Interview Questions
3.4
 • 65 Interviews
View all

Miles Education - CPA & CMA Review (Hyderabad) Internship Trainee Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
15 salaries
unlock blur

₹4.1 L/yr - ₹6 L/yr

Senior Program Manager
8 salaries
unlock blur

₹18 L/yr - ₹19.5 L/yr

Senior Associate
8 salaries
unlock blur

₹3 L/yr - ₹5.7 L/yr

General Manager Sales and Operations
6 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Program Manager
6 salaries
unlock blur

₹6 L/yr - ₹17.9 L/yr

Explore more salaries
Compare Miles Education - CPA & CMA Review (Hyderabad) with

Unacademy

3.0
Compare

Extramarks Education

3.4
Compare

Vedantu

3.3
Compare

Chegg

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