Upload Button Icon Add office photos

Filter interviews by

Noon Academy Interview Questions and Answers

Updated 11 Nov 2021

Noon Academy Interview Experiences

Popular Designations

2 interviews found

Sdet 2 Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2021

I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Design rounds and cloud based Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and good with technicals

Sdet 2 Interview Questions asked at other Companies

Q1. Validity of a string as a password , testing concepts
View answer (1)

I was interviewed before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Problem Solving and coding interview. Friendly interviewer.

  • Q1. 

    Merge Two Binary Max Heaps Problem Statement

    You are given two integer arrays Arr1 and Arr2 of sizes N and M respectively. Both Arr1 and Arr2 represent Max-Heaps. Your task is to merge these two arrays wh...

  • Ans. 

    Merge two Max-Heap arrays while retaining order and construct the merged Max-Heap.

    • Merge the two arrays while maintaining their respective order.

    • Construct the Max-Heap obtained after merging the arrays.

    • Ensure the final Max-Heap is valid based on the given heaps.

  • Answered by AI
  • Q2. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Determine if two strings are anagrams of each other.

    • Create character frequency maps for both strings

    • Compare the frequency of characters in both maps

    • Return True if the frequency maps are equal, else False

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

General round of interview. Questions based on resume (very few).
Behavioural Round

  • Q1. 

    Log Cutting Minimum Moves Calculation

    Ninja, the log cutter, has 'K' axes and an infinite amount of logs. Using a log cutting stand with a capacity 'N', he can attempt to cut at most 'N' logs at a time. A...

  • Ans. 

    Yes, this problem can be solved with a worst-case time complexity of N^1/3.

    • Use binary search to find the maximum number of logs an axe can cut without breaking.

    • Divide the search space into three parts: low, mid, and high.

    • Check if the mid value is feasible, if yes, move to the left half, else move to the right half.

    • Repeat the process until the optimal value is found.

    • Example: For K=2 and N=6, the minimum number of moves

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Delhi Technological University. I applied for the job as SDE - Intern in GurgaonEligibility criteria8.5 cgpaNoon Academy interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP , Puzzles, OSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume

Application resume tips for other job seekers

Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview questions from similar companies

I applied via Job Fair and was interviewed before Feb 2021. There were 5 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 - Aptitude Test 

What is aptitude test?

Round 3 - Group Discussion 

Online study and off-line which one is better?

Round 4 - Case Study 

Someone not interested in assignments.

Round 5 - One-on-one 

(2 Questions)

  • Q1. Why you choice to join with us
  • Ans. Because write now Indias largest and most trusted education system is BYJU'S. thats why not one me everyone want to join his/her children in BYJU'S.
  • Answered Anonymously
  • Q2. What is more important to you education or money?
  • Ans. Obviously is education because educated person make money so easily and how to hold the mobey they know very well
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand what they needs to us

I applied via Job lever and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Easy leetcode code 2 questions , HTML5 css javascript simple screen design

Round 2 - One-on-one 

(1 Question)

  • Q1. Oop, Simple coding javascript, react basic, sql basic

Interview Preparation Tips

Interview preparation tips for other job seekers - Take it easy and go with confidence which matters most

Assistant Manager Interview Questions & Answers

BYJU'S user image prashant kumar saxena

posted on 14 Sep 2022

I applied via Approached by Company and was interviewed before Sep 2021. 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 - HR 

(2 Questions)

  • Q1. Tell me about your self - what you know about Byjus
  • Q2. What's your weakness

Interview Preparation Tips

Topics to prepare for BYJU'S Assistant Manager interview:
  • Sales
  • IT
  • Educational Sales
  • Education Counseling
Interview preparation tips for other job seekers - Company now created the poltics so my opinion please don't give interviews in byjus

I applied via Company Website and was interviewed before Mar 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Write a program on bubble sort ?
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the first element is greater than the next element, swap them

    • Repeat this process for all elements in the list

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Define Turing Machine ?
  • Ans. 

    A Turing Machine is a theoretical device that can simulate any algorithmic computation.

    • It was proposed by Alan Turing in 1936 as a model for computation.

    • It consists of a tape, a head that can read and write symbols on the tape, and a set of rules for transitioning between states.

    • It can simulate any algorithmic computation, making it a powerful tool for theoretical computer science.

    • It is often used as a theoretical basi...

  • Answered by AI
  • Q3. Explain hash function
  • Ans. 

    A hash function is a mathematical function that converts input data of arbitrary size into a fixed-size output.

    • Hash functions are used to index data in hash tables.

    • They are also used in cryptography to securely store passwords.

    • Examples of hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was lengthy process some questions were difficult to answer and i tried to amswer a few questions but i didnt clear interview process

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself.
  • Q2. How will you take the pressure related to sales
  • Ans. 

    I thrive under pressure and use it as motivation to exceed sales targets.

    • I prioritize tasks and set achievable goals to manage pressure

    • I stay organized and focused on the end goal

    • I communicate effectively with team members to ensure everyone is on the same page

    • I use positive self-talk and visualization techniques to stay motivated

    • I continuously learn and adapt to new sales strategies to improve performance

  • Answered by AI
  • Q3. Sited few examples in the old organization and explained how did I handle it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was moderate.

I applied via Referral and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. They check your deep understanding about google sheets with various formulas and complex problems
  • Q2. Pareto Analysis, complex google sheets formulas
  • Q3. Sql basic understanding like to be able to write basic queries to little complex queries to fetch data
Round 2 - One-on-one 

(1 Question)

  • Q1. They check your proficiency to tackle complex problems with ease

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, even if you stuck on a particular question atleast give a try and you should be ready with a generic solution with deep understanding of the concept. Google sheets in itself is enough to crack the interview at byjus

Interview Questionnaire 

1 Question

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sales related questions

Intern Interview Questions & Answers

BYJU'S user image Anonymous

posted on 23 Jul 2021

I applied via Indeed and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are okay with traveling
  • Q2. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was a discussion with the manager

Noon Academy Interview FAQs

How to prepare for Noon Academy interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Noon Academy. The most common topics and skills that interviewers at Noon Academy expect are Python, Backend, Social Media, Machine Learning and Wellness.

Tell us how to improve this page.

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Unacademy Interview Questions
3.0
 • 206 Interviews
upGrad Interview Questions
3.7
 • 198 Interviews
Simplilearn Interview Questions
3.2
 • 101 Interviews
Testbook.com Interview Questions
3.6
 • 99 Interviews
Toppr Interview Questions
3.4
 • 64 Interviews
Great Learning Interview Questions
3.7
 • 56 Interviews
Z X Learning Interview Questions
4.5
 • 44 Interviews
MeritNation Interview Questions
3.6
 • 7 Interviews
Vedant Interview Questions
4.2
 • 1 Interview
View all

Noon Academy Reviews and Ratings

based on 23 reviews

4.2/5

Rating in categories

3.8

Skill development

4.3

Work-life balance

4.2

Salary

3.6

Job security

4.1

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 23 Reviews and Ratings
Sales Consultant
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Associate
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Associate
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Associate
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Noon Academy 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