Upload Button Icon Add office photos

Filter interviews by

Playablo Interview Questions and Answers

Updated 15 Sep 2022

Playablo Interview Experiences

Popular Designations

2 interviews found

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Coding Test 

It's was SQL server
They give 20+ query based on different scenario of SQL
And SQL server theory questions like
Different between Store procedure
And functions
What is indexing types of indexing
How to optimise table
SQL jobs
SQL trigger
Deadlock handle
CTE
Temp table
Primary key, foregin key, unique key
How to get 50% of data from table

Round 2 - Technical 

(1 Question)

  • Q1. SQL trigger details Deadlock handle Cost of query Some managerial questions
Round 3 - HR 

(1 Question)

  • Q1. Discuss about salary and my documents

Interview Preparation Tips

Interview preparation tips for other job seekers - I Was selected after all three rounds
They want I will come to Bangalore
And I asked for relocation but they decided
He provided less salary as compared to industry

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I applied via Referral and was interviewed before Sep 2021. 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 - Technical 

(13 Questions)

  • Q1. Explain SDLC & types of SDLC models.
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process used to develop software applications.

    • SDLC is a systematic approach to software development.

    • It consists of several phases including requirements gathering, design, coding, testing, and maintenance.

    • There are various SDLC models such as Waterfall, Agile, Spiral, and V-Model.

    • Waterfall model follows a linear sequential approach where each phase is completed b...

  • Answered by AI
  • Q2. Explain defect life cycle.
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, and verifying defects in software.

    • Defect is identified by testers during testing

    • Defect is reported to development team

    • Development team fixes the defect

    • Fixed defect is verified by testers

    • If defect is not fixed, it goes back to development team

    • If defect is fixed, it is closed

  • Answered by AI
  • Q3. Explain STLC in detail.
  • Ans. 

    STLC stands for Software Testing Life Cycle which is a process of testing software from planning to deployment.

    • STLC involves several phases such as requirement analysis, test planning, test case development, test execution, and test closure.

    • Each phase has its own set of activities and deliverables.

    • STLC helps to ensure that the software is thoroughly tested and meets the quality standards.

    • STLC is an iterative process an...

  • Answered by AI
  • Q4. Write Sql query for displaying total number of students from child details table where child names starting with 'A'.
  • Ans. 

    SQL query to display the total number of students whose names start with 'A' from the child details table.

    • Use the SELECT statement to retrieve data from the table.

    • Use the COUNT function to count the number of rows that meet the condition.

    • Use the LIKE operator with the pattern 'A%' to match names starting with 'A'.

  • Answered by AI
  • Q5. Explain joins & its types with an example each.
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column.

    • Types of joins: Inner join, Left join, Right join, Full outer join

    • Inner join returns only the matching rows from both tables

    • Left join returns all the rows from the left table and matching rows from the right table

    • Right join returns all the rows from the right table and matching rows from the left table

    • Full outer join returns all the rows f...

  • Answered by AI
  • Q6. Difference between testcases & test scenarios.
  • Ans. 

    Test cases are specific inputs and expected outputs for a single functionality, while test scenarios are a collection of test cases that cover a broader functionality.

    • Test cases are detailed steps to verify a specific functionality

    • Test scenarios are a collection of test cases that cover a broader functionality

    • Test cases are usually written by testers

    • Test scenarios are usually written by business analysts or product own...

  • Answered by AI
  • Q7. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
  • Ans. 

    Boundary value analysis is a testing technique to identify errors at the boundaries of input values.

    • For User ID field, test with values just below the minimum limit, at the minimum limit, just above the maximum limit, and at the maximum limit

    • For Password field, test with values just below the minimum limit, at the minimum limit, just above the maximum limit, and at the maximum limit

    • Ensure that the system handles these ...

  • Answered by AI
  • Q8. What is API testing? Do u know how to perform Api testing in postman tool?
  • Ans. 

    API testing is a type of software testing that involves testing APIs directly and verifying their functionality, reliability, performance, and security.

    • API testing involves testing the communication between different software systems

    • It verifies the functionality, reliability, performance, and security of APIs

    • API testing can be performed using tools like Postman, SoapUI, and JMeter

    • API testing can be automated using scri

  • Answered by AI
  • Q9. What is performance testing & explain its types? & Do u know Apache Jmeter?
  • Ans. 

    Performance testing is the process of evaluating the speed, responsiveness, stability, and scalability of a software application.

    • Types of performance testing include load testing, stress testing, endurance testing, and spike testing.

    • Load testing checks the application's performance under normal and peak loads.

    • Stress testing evaluates the application's performance under extreme conditions.

    • Endurance testing checks the ap...

  • Answered by AI
  • Q10. Differentiate between functional & non- functional testing.
  • Ans. 

    Functional testing checks if the system meets requirements while non-functional testing checks system performance.

    • Functional testing checks if the system meets requirements while non-functional testing checks system performance.

    • Functional testing is concerned with what the system does while non-functional testing is concerned with how well the system does it.

    • Functional testing includes unit testing, integration testing...

  • Answered by AI
  • Q11. What is test planning?
  • Ans. 

    Test planning is the process of defining the scope, objectives, and approach for testing a software application.

    • Identifying the testing objectives

    • Defining the scope of testing

    • Determining the testing approach

    • Creating a test plan document

    • Assigning roles and responsibilities

    • Estimating the testing effort

    • Identifying test deliverables

    • Defining the test environment

    • Identifying test data requirements

  • Answered by AI
  • Q12. If u get a blocker defect just the previous day of ur release date. What will be ur approach? How will u convince the developer to fix this defect?
  • Ans. 

    Approach to handle a blocker defect just before release and convincing the developer to fix it.

    • Assess the impact of the defect on the release and prioritize it accordingly

    • Provide clear and concise information about the defect to the developer

    • Explain the potential risks and consequences of not fixing the defect

    • Collaborate with the developer to find a solution and provide support if needed

    • Highlight the importance of meet...

  • Answered by AI
  • Q13. Types of White box testing & black box testing.
  • Ans. 

    White box testing involves testing the internal structure of the software while black box testing involves testing the functionality without knowledge of the internal structure.

    • White box testing: unit testing, integration testing, code coverage testing

    • Black box testing: functional testing, system testing, acceptance testing

    • White box testing is also known as clear box testing or glass box testing

    • Black box testing is als...

  • Answered by AI
Round 3 - CTO round 

(1 Question)

  • Q1. Some behavioural questions.
Round 4 - HR 

(1 Question)

  • Q1. Just self introduction & salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - You can clear technical round of interview in this company if u r technically good at testing & sql concepts. Once the technical round is cleared, 90% of the chances that u r selected.

Skills evaluated in this interview

Top Playablo Softwaretest Engineer Interview Questions and Answers

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2019. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Question 1)Tell me about yourself and qualifications?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and experience in web development.

    • Recent graduate with a degree in Computer Science

    • Experience in web development

    • Strong problem-solving skills

    • Proficient in programming languages such as Java, JavaScript, and HTML/CSS

  • Answered by AI
  • Q2. Question 2)What are your hobbies?
  • Ans. 

    My hobbies include reading, hiking, and playing the guitar.

    • Reading: I enjoy reading fiction and non-fiction books in my free time.

    • Hiking: I love exploring nature trails and challenging myself with new hikes.

    • Playing the guitar: I have been playing the guitar for several years and enjoy learning new songs.

  • Answered by AI
  • Q3. Question 3)What do you know about our company?
  • Ans. 

    Our company is a leading tech startup specializing in AI-driven solutions for businesses.

    • Specializes in AI-driven solutions for businesses

    • Considered a leading tech startup in the industry

    • Known for innovative and cutting-edge technology

    • Has a strong focus on research and development

    • Provides services to a wide range of industries

  • Answered by AI
  • Q4. Question 4) Why do you want to join our company?
  • Ans. 

    I want to join your company because of its innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects that align with my interests and skills

    • Strong company culture that values collaboration and employee development

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q5. Question 5) Tell me about your training and projects you have done in college?
  • Ans. 

    I completed various training programs and projects during my college years, gaining hands-on experience in different areas.

    • Completed a training program in data analysis using Python and R

    • Developed a mobile application for a class project using Java and Android Studio

    • Participated in a research project on renewable energy sources

    • Completed an internship at a local software company, working on web development projects

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Start by researching about the company and job profile you applied for. Practice common interview questions. Be confident. Ask questions at the end of the interview. Remember your CV details. Arrive on time and stay relaxed.

I applied via LinkedIn and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were from SQL, Python, Statistics & Business Case Studies/Metrics in the form of 4-5 rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - So Key Takeaway is You have to be good with your Technical Knowledge (SQL Expert, Python, Overall Stats Knowledge) and That is not really enough. What differs a Business Analyst from other Developers/Statisticians etc. is Business acumen, Problem Solving Skills etc. To have a Business Knowledge and Understanding such that you find the problems/solutions/ Metrics and then solve them using the Technology.

I appeared for an interview in Nov 2020.

Interview Questionnaire 

1 Question

  • Q1. Mainly about sql, previous job role

I appeared for an interview before Sep 2021.

Round 1 - HR 

(1 Question)

  • Q1. Tell me something about your self and your previous organisation?
Round 2 - One-on-one 

(1 Question)

  • Q1. Why you want to join this organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Never say ‚ u left ur previous organisation for growth.

Interview Questionnaire 

1 Question

  • Q1. What certifications should a software developer have?
  • Ans. 

    Certifications are not mandatory for software developers, but can add value to their resume.

    • Certifications in programming languages like Java, Python, C++

    • Certifications in software development methodologies like Agile, Scrum

    • Certifications in cloud computing platforms like AWS, Azure

    • Certifications in security like CISSP, CEH

    • Certifications in project management like PMP

    • Certifications in mobile app development like Androi

  • Answered by AI

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I applied for an internship in your company through internshala.com . I got an email telling me that I was shortlisted it and now I have to fill this in order to move to the next round

I appeared for an interview in Jul 2017.

Interview Questionnaire 

1 Question

  • Q1. The first question was to introduce yourself and if have a past working experience then what was your profile in past internship?

Interview Preparation Tips

Round: Resume Shortlist
Experience: Hi, i applied from naukri.com for an internship in Ambition box and i got a mail that my resume got shortlisted and i have to revert them with my availability for an internship
Tips: always check your mail on time so that u don't miss it

Round: HR Interview
Experience: In the HR round u i was asked about my experience and learning about my previous internship and what do i know about digital marketing because that was my interest area.
Tips: Be confident and precise in your answers

Round: Test
Experience: i was asked to write about any topic in 15 minutes just to evaluate my writing skills and my idea of writing.
Tips: Be creative,quick and natural
Duration: 10 minutes
Total Questions: -3

Round: Group Activity
Experience: we have to present about in topic in front it can b any political or technical topic.so i present a technical topic
Tips: be confident,expressive and clear

Skills: Communication And Confidence, General Awareness, Inter Person Communication Skills, Interaction Skills
College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

I appeared for an interview in Jul 2017.

Interview Questionnaire 

3 Questions

  • Q1. Are You a Fresher? If not tell about your past working experience?
  • Ans. 

    Yes, I am a fresher with no past working experience.

    • I am a recent graduate looking to gain experience in the field.

    • I have completed internships or projects during my studies.

    • I am eager to learn and grow in a professional environment.

  • Answered by AI
  • Q2. What was your work profile in your past internship?
  • Ans. 

    I was responsible for conducting market research, creating social media content, and assisting with event planning.

    • Conducted market research to identify trends and opportunities

    • Created engaging social media content to increase brand awareness

    • Assisted in planning and executing events to promote company products/services

  • Answered by AI
  • Q3. Introduce yourself ?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Strong communication and teamwork skills

    • Experience with programming languages such as Java, Python, and C++

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Hi, i applied from naukri.com for internship in AmbitionBox.com..They checked my entire CV and checked about my eligibility criteria and then I got a mail stating .My resume has been shortlisted and i would get a call from Hr for the further steps.
Tips: Make your CV properly .

Round: HR Interview
Experience: In this round HR asked me about my working profile in my past internship..and about my likes ,dislikes and my skills and preffered working area.
Tips: Be cool ,be confident and be clear and interactive.

Round: Test
Experience: I was asked to read out my article...about the topic i chose to write..it can be any topic technical or political or anything ..i chose Movie reviews
Tips: write about the topic you know in details about. Be quick ,be clear
Duration: 10 minutes
Total Questions: -3

Round: Group Activity
Experience: In this round ,i was asked to prepare a presentation..about any topic you know in details about and share some news ideas
Tips: Be expressive and loud

Skills: Inter Person Communication Skills, Writing Skills, General Awareness, Self-Awareness
College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

Playablo Interview FAQs

How many rounds are there in Playablo interview?
Playablo interview process usually has 3-4 rounds. The most common rounds in the Playablo interview process are Technical, HR and Coding Test.
How to prepare for Playablo 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 Playablo. The most common topics and skills that interviewers at Playablo expect are API, Communication Skills, .Net Core, Html5 and Illustrator.
What are the top questions asked in Playablo interview?

Some of the top questions asked at the Playablo interview -

  1. What is boundary value analysis? How do u perform boundary value testing for Us...read more
  2. If u get a blocker defect just the previous day of ur release date. What will b...read more
  3. Write Sql query for displaying total number of students from child details tabl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
CARS24 Interview Questions
3.5
 • 337 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Meesho Interview Questions
3.7
 • 333 Interviews
Zepto Interview Questions
3.5
 • 240 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
AmbitionBox Interview Questions
4.9
 • 153 Interviews
Tata 1mg Interview Questions
3.6
 • 151 Interviews
Digit Insurance Interview Questions
3.9
 • 146 Interviews
Paisabazaar.com Interview Questions
3.4
 • 142 Interviews
View all

Playablo Reviews and Ratings

based on 13 reviews

4.0/5

Rating in categories

3.1

Skill development

3.7

Work-life balance

2.8

Salary

3.1

Job security

3.7

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 13 Reviews and Ratings
Softwaretest Engineer
12 salaries
unlock blur

₹3.5 L/yr - ₹6.2 L/yr

Web Developer
6 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Software Engineer
5 salaries
unlock blur

₹4.7 L/yr - ₹9.8 L/yr

Product Advisor
5 salaries
unlock blur

₹5 L/yr - ₹5.9 L/yr

Software Testing Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹3.8 L/yr

Explore more salaries
Compare Playablo with

Udaan

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

BlackBuck

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