Faster and better experience!
Filter interviews by
I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 3 interview rounds.
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
I applied via Referral and was interviewed before Sep 2021. There were 4 interview rounds.
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...
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
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...
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'.
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...
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...
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 ...
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
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...
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...
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
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...
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...
Top trending discussions
I applied via Naukri.com and was interviewed in Jun 2019. There were 3 interview rounds.
I am a motivated and enthusiastic individual with a strong passion for learning and gaining practical experience in the field of [field].
I am currently pursuing a degree in [field] at [university].
I have completed internships at [company] and [company], where I gained valuable skills in [specific skills].
I am proficient in [programming languages/tools] and have experience in [relevant experience].
I am a quick learner a...
I plan to gain valuable experience and skills through this internship and use it as a stepping stone for my future career.
I plan to learn as much as possible during this internship and apply the knowledge in my future endeavors.
I aim to develop strong professional relationships and network with industry experts.
I intend to explore different areas within the company to gain a well-rounded understanding of the business.
I...
I applied via Internshala and was interviewed in Jun 2019. There were 4 interview rounds.
I want to work at Ambition Box because of its innovative work culture and opportunities for growth.
Innovative work culture
Opportunities for growth
Positive company reputation
I appeared for an interview before Apr 2021.
Round duration - 45 Minutes
Round difficulty - Medium
It was in the mid day and since I applied for a Frontend role the discussion was majorly around data structure and bit of Javascript.
The interviewer was helping and good listener.
You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.
...Merge two sorted linked lists into a single sorted linked list without using additional space.
Create a dummy node to start the merged list
Compare the values of the two linked lists and add the smaller value to the merged list
Move the pointer of the merged list and the pointer of the smaller value list
Continue this process until one of the lists is fully traversed
Append the remaining elements of the other list to the me
Given an integer array arr
of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.
The first line contains an integer 'T' representing the n...
Sort an array of 0s, 1s, and 2s in linear time complexity.
Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.
Swap elements based on the values encountered to sort the array in-place.
Time complexity should be O(N) and space complexity should be O(1).
Round duration - 60 Minutes
Round difficulty - Medium
It was more of a in depth round on the framework I'm working on and problem solving.
The event loop is a mechanism in programming that allows for asynchronous execution of code.
The event loop is a key component in JavaScript's runtime environment, responsible for handling asynchronous operations.
It continuously checks the call stack for any pending tasks and executes them in a non-blocking manner.
The event loop ensures that the program remains responsive by allowing other code to run while waiting for ...
Output-based questions in JavaScript using browser APIs
Example 1: Write a script that uses the Geolocation API to display the user's current location on a map
Example 2: Create a program that uses the Web Audio API to play a sound when a button is clicked
Example 3: Develop a web page that uses the Canvas API to draw a simple animation
Designing a system to support localization in a mobile app
Use resource files to store localized strings for different languages
Implement a language selection feature for users to choose their preferred language
Utilize localization libraries or frameworks to streamline the process
Consider cultural differences when localizing content, such as date formats and currency symbols
Round duration - 75 Minutes
Round difficulty - Hard
It was more of a fitment/managerial round.
Didn't had any coding questions, but was asked more on approaches and optimisations.
Discussions on the project you have worked on.
To find the fastest 3 horses out of a group with 5 horses racing at a time, we can use a tournament style approach.
Divide the horses into groups of 5 and race them against each other. This will give you the fastest horse in each group.
Take the winners from each group and race them against each other. The top 3 horses in this final race will be the fastest 3 overall.
Keep track of the results and compare the timings to d
To debug lag on a screen, analyze code, check for memory leaks, optimize rendering, and use profiling tools.
Analyze code to identify any inefficient algorithms or operations causing lag.
Check for memory leaks that could be impacting performance.
Optimize rendering by reducing the number of draw calls, optimizing shaders, and minimizing overdraw.
Use profiling tools like Xcode Instruments or Android Profiler to identify p
The app I recently worked on is a social media platform for sharing photos and connecting with friends.
The app follows a client-server architecture, with the client being the mobile app and the server handling data storage and processing.
The client side is built using React Native for cross-platform compatibility.
The server side is implemented using Node.js with a MongoDB database for storing user data and photos.
The a...
Tip 1 : Get your JS fundamentals right (if applying for a Frontend role, https://javascript.info/ is a good start)
Tip 2 : Apart from preparing data structures, practise on the communication skills as well (prepare your introduction, be a good listener and on spot improvisation plays key roles)
Tip 1 : highlight projects related to the job profile in your resume and mention what was your contribution in them precisely in 1/2 lines.
Tip 2 : Include URLs to applications/projects that you have build and your achievements/blog (if any)
I appeared for an interview in Jul 2017.
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.
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
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++
I applied via Approached by Company and was interviewed in Jul 2017. There were 5 interview rounds.
I applied via Other and was interviewed in Jan 2018. There were 5 interview rounds.
I applied via Other and was interviewed in Jan 2018. There were 5 interview rounds.
Some of the top questions asked at the Playablo interview -
based on 14 reviews
Rating in categories
Softwaretest Engineer
11
salaries
| ₹3.5 L/yr - ₹7.1 L/yr |
Web Developer
6
salaries
| ₹5 L/yr - ₹6 L/yr |
Software Engineer
5
salaries
| ₹4.7 L/yr - ₹9.8 L/yr |
Backend Developer
5
salaries
| ₹5 L/yr - ₹6 L/yr |
Senior Test Engineer
4
salaries
| ₹5.6 L/yr - ₹6 L/yr |
Udaan
Swiggy
CARS24
BlackBuck