Upload Button Icon Add office photos
Engaged Employer

i

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

Pratham Test Prep Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 30 Reviews

Filter interviews by

Pratham Test Prep Interview Questions and Answers

Updated 19 Oct 2023

Pratham Test Prep Interview Experiences

Popular Designations

2 interviews found

Sales Intern Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2023

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

I applied via campus placement at New Delhi Institute of Management (NDIM) and was interviewed in Apr 2023. 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 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. About Pratham Test Prep
  • Q3. About roles & responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Cold calling for sales intern, good for those who want to start their career in EdTech

Sales Intern Interview Questions asked at other Companies

Q1. Who is the competitor of Marie Gold (Biscuit not company)?
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Normal basic questions about myself, go through your cv and interest about previous job and work experience.
Round 3 - One-on-one 

(1 Question)

  • Q1. About my future goals, how i handle pressure and my past experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and simple improve your communication skills and be clear about your vision

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic logic based questions

Round 2 - Coding Test 

Basic coding questions

Round 3 - Technical 

(3 Questions)

  • Q1. Pattern based question
  • Q2. Reverse a string
  • Q3. Other technical question related to DBMS, MySQL, CN, Web Dev and AWS
Round 4 - HR 

(2 Questions)

  • Q1. Introduction, personal details
  • Q2. Strength and weakness
Round 5 - One-on-one 

(2 Questions)

  • Q1. This was a managerial round, where he went through my resume and open my github and asked me to explain the code from different projects
  • Q2. Pattern based question (difficulty : hard)

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your resume, practice DSA and upload your projects on github
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. Tell me about yourself ?
  • Ans. 

    Experienced inside sales executive with a proven track record of exceeding sales targets and building strong client relationships.

    • Over 5 years of experience in inside sales roles

    • Consistently met or exceeded sales targets by 20% each quarter

    • Built and maintained strong relationships with clients, resulting in a 90% client retention rate

    • Proficient in CRM software and sales analytics tools

  • Answered by AI
  • Q2. Why do you want to for internshala ?
  • Ans. 

    I want to work for Internshala because of its reputation for providing valuable learning opportunities and a platform to connect with industry professionals.

    • Internshala is known for offering internships that provide hands-on experience in various fields.

    • I am impressed by Internshala's commitment to helping students and young professionals enhance their skills and build their careers.

    • I believe working at Internshala wil...

  • Answered by AI
  • Q3. Why did you choose sales ?
  • Ans. 

    I chose sales because I enjoy building relationships, meeting new people, and helping customers find solutions to their needs.

    • Enjoy building relationships with clients

    • Thrives on meeting new people and networking

    • Enjoys problem-solving and finding solutions for customers

    • Passionate about helping others achieve their goals

  • Answered by AI
  • Q4. And few family and educational background question
Round 2 - One-on-one 

(5 Questions)

  • Q1. Second round was with an arrogant lady(sales team leader) I don't remember that stup...d girl name
  • Q2. Basically the round was all about pitching the products
  • Q3. When I startes to pitch with that stpd lady (she was a customer in that scenario) about digital marketing she started saying "I am not interested in this program and I have 3 years experience in this field...
  • Q4. May any one tell me that where I was wrong? As I was a fresher guy. And fortunately , before 1 day of interview, an inside sales executive from Internshala called me for same program ( digital marketing) ...
  • Q5. HR in first round was respectable and great.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Q1. Count occurence of character from a given string without using stream API.

Q2. Rotate given an array by given number

Round 2 - Technical 

(5 Questions)

  • Q1. Count vowels and consonants for the given string
  • Ans. 

    Count vowels and consonants in a given string

    • Iterate through each character in the string and check if it is a vowel or consonant

    • Keep separate counters for vowels and consonants

    • Consider both uppercase and lowercase characters

    • Exclude spaces and special characters from counting

  • Answered by AI
  • Q2. Find prime number between 1 to n
  • Ans. 

    Use Sieve of Eratosthenes algorithm to find prime numbers between 1 to n.

    • Implement Sieve of Eratosthenes algorithm

    • Iterate through numbers from 2 to n

    • Mark multiples of each number as non-prime

    • Remaining unmarked numbers are prime

  • Answered by AI
  • Q3. Arraylist vs linkedlist
  • Ans. 

    ArrayList is better for random access and LinkedList is better for frequent insertions and deletions.

    • ArrayList uses dynamic array to store elements, allowing fast random access but slower insertions and deletions.

    • LinkedList uses doubly linked list to store elements, allowing fast insertions and deletions but slower random access.

    • Example: Use ArrayList when you need to frequently access elements by index. Use LinkedList...

  • Answered by AI
  • Q4. List vs set vs Map
  • Ans. 

    List is an ordered collection, Set is a collection with no duplicates, Map is a key-value pair collection.

    • List maintains insertion order, Set does not allow duplicates, Map stores key-value pairs

    • List example: ArrayList, Set example: HashSet, Map example: HashMap

  • Answered by AI
  • Q5. Count average salary
  • Ans. 

    Calculate average salary of employees

    • Sum up all the salaries of employees

    • Divide the total sum by the number of employees to get the average

    • Example: salaries = [50000, 60000, 70000], average = (50000 + 60000 + 70000) / 3

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This is total time waste interview.
I cleared the first round which was coding round then she asked me for the face to face round next day.
I reached the office at the time but HR didn't meet me . Receptionist just give me piece of paper in which there are 10 coding questions , I asked would I attend these questions in laptop but she said no only on paper . I said ok 🤣 Before the start of test I went to the washroom and they just cut 5 minutes from 1 hr but I said this is 90 min test this is written onto the top of paper but they just said Hr was told me only 60 min. All the time she listens loud music where I was sit.
This is worst experience I have faced total waste of time.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain ngrx state management with one example
  • Ans. 

    ngrx is a state management library for Angular applications

    • ngrx uses a centralized store to manage the state of the application

    • Actions are dispatched to update the state in a predictable way

    • Selectors are used to retrieve specific pieces of state from the store

    • Effects are used to manage side effects such as API calls

    • Example: Dispatching an action to update the user's profile information in the store

  • Answered by AI
  • Q2. Coding questions on filters
Round 3 - One-on-one 

(3 Questions)

  • Q1. Count the repeating number in array program
  • Ans. 

    Count the repeating numbers in an array of strings

    • Iterate through the array and use a hashmap to store the count of each number

    • Return the numbers that have a count greater than 1

  • Answered by AI
  • Q2. Let str= 'welcome' output should be 'xfmfpnf' program
  • Q3. Basic questions on angular
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly focus on ngrx state management and coding questions

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Introduction, she gave overview of the role
Round 2 - One-on-one 

(1 Question)

  • Q1. Founder effect? Incomplete dominance? Mitochondria inheritance? Autoimmune disease?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 questions, 1 hour. Questions mostly on DP, Graphs and strings

Round 2 - Technical 

(2 Questions)

  • Q1. Pollfill for Promise Function
  • Ans. 

    Pollfill is a function that returns a promise which resolves when a condition is met.

    • Pollfill function should return a promise

    • The promise should resolve when a specific condition is met

    • Use polling mechanism to check the condition at regular intervals

  • Answered by AI
  • Q2. Difference between throttling and Debouncing
  • Ans. 

    Throttling limits the number of times a function can be called over time, while debouncing ensures a function is only called after a certain amount of time has passed without it being called.

    • Throttling limits the rate at which a function can be called, preventing it from being called more than once in a specified time frame.

    • Debouncing waits for a specified amount of time to pass after the last time a function was calle...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Basics well

Skills evaluated in this interview

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

(3 Questions)

  • Q1. How many years of experience ?
  • Ans. 

    I have 5 years of experience working as an Academic Counsellor.

    • I have 5 years of experience in providing academic guidance and support to students.

    • During my time as an Academic Counsellor, I have successfully helped students navigate their academic paths and achieve their goals.

    • I have experience in creating academic plans, conducting assessments, and providing resources to students.

    • My experience includes working with s...

  • Answered by AI
  • Q2. Tell us more about yourself.
  • Ans. 

    I am a dedicated academic counsellor with a passion for helping students achieve their academic and personal goals.

    • I have a background in education and psychology, which helps me understand the needs of students better.

    • I have experience in providing guidance on course selection, career planning, and study skills.

    • I am skilled in building rapport with students and creating a supportive environment for them to thrive.

    • I am...

  • Answered by AI
  • Q3. What is your expected salary
  • Ans. 

    My expected salary is negotiable and dependent on the responsibilities and opportunities offered by the position.

    • My expected salary is based on my qualifications, experience, and the market rate for similar positions.

    • I am open to discussing salary expectations during the interview process.

    • I am looking for a competitive salary that reflects my skills and contributions to the organization.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. You'll salary will be 18K
  • Q2. Start working from tomorrow.

Interview Preparation Tips

Interview preparation tips for other job seekers - if you are fresher please avoid IFAS at any cost. they don't have good management and they'll revise your offer letter within a month.

Bot Engineer 1 Interview Questions & Answers

Kaplan user image Anusha V

posted on 6 Dec 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I was interviewed in Jun 2024.

Round 1 - Coding Test 

Python Coding and dfcx technical questions one hour

Round 2 - Technical 

(4 Questions)

  • Q1. Again technical 30 min
  • Q2. About the company dfcx , llms, playbooks
  • Q3. What you know about dfcx playbooks llms rag
  • Q4. They’ll explain what they are doing
Round 3 - Case Study 

Use case to build chatbot and dfcx concepts and playbooks 30 min

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste your time on interviewing to this company, they'll waste your time ,all two rounds they told me you are the "Good Fit" after 3rd round they said we are not able to move forward.
Reason for not selecting is : 'second round was not cleared' he clearly said - I'm a good fit later this guy went on 2 weeks break ,when comes back they took me third round forgetting everything! after a week they announced 'Not moving forward'

Pratham Test Prep Interview FAQs

How many rounds are there in Pratham Test Prep interview?
Pratham Test Prep interview process usually has 2-3 rounds. The most common rounds in the Pratham Test Prep interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for Pratham Test Prep 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 Pratham Test Prep . The most common topics and skills that interviewers at Pratham Test Prep expect are Communication Skills, Sales, Analytical skills, Business Development and Excel.

Tell us how to improve this page.

People are getting interviews through

based on 2 Pratham Test Prep interviews
Referral
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Unacademy Interview Questions
3.0
 • 202 Interviews
upGrad Interview Questions
3.7
 • 202 Interviews
Simplilearn Interview Questions
3.2
 • 99 Interviews
Toppr Interview Questions
3.4
 • 74 Interviews
Embibe Interview Questions
3.6
 • 60 Interviews
MeritNation Interview Questions
3.6
 • 7 Interviews
Vedant Interview Questions
4.2
 • 1 Interview
View all

Pratham Test Prep Reviews and Ratings

based on 30 reviews

4.1/5

Rating in categories

3.8

Skill development

3.7

Work-Life balance

3.9

Salary & Benefits

4.2

Job Security

3.6

Company culture

3.1

Promotions/Appraisal

3.8

Work Satisfaction

Explore 30 Reviews and Ratings
Assistant Manager
20 salaries
unlock blur

₹4 L/yr - ₹6.2 L/yr

Senior Executive
7 salaries
unlock blur

₹2.4 L/yr - ₹4.5 L/yr

Deputy Manager
6 salaries
unlock blur

₹5.2 L/yr - ₹7 L/yr

Counsellor
6 salaries
unlock blur

₹2 L/yr - ₹2.3 L/yr

Assistant Manager Sales & Marketing
5 salaries
unlock blur

₹3.9 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Pratham Test Prep with

BYJU'S

3.1
Compare

MeritNation

3.6
Compare

Toppr

3.4
Compare

Embibe

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview