Filter interviews by
Element is a singular object, while elements refer to multiple objects.
Element is a single item in a collection or array.
Elements are multiple items in a collection or array.
Example: 'apple' is an element in the array ['apple', 'banana', 'orange'].
Example: 'banana' and 'orange' are elements in the same array.
ACID properties in SQL refer to a set of properties that ensure database transactions are processed reliably.
ACID stands for Atomicity, Consistency, Isolation, and Durability
Atomicity ensures that either all operations in a transaction are completed successfully or none are
Consistency ensures that the database remains in a consistent state before and after the transaction
Isolation ensures that multiple transaction...
Schema testing focuses on the structure of the database, while database testing focuses on the data within the database.
Schema testing ensures that the database tables, columns, relationships, and constraints are correctly defined.
Database testing involves verifying the data stored in the database, such as data integrity, accuracy, and consistency.
Schema testing is more focused on the design and structure of the d...
Boundary Value Analysis (BVA) is a testing technique used to identify errors at boundaries of input ranges.
BVA involves testing at the boundaries of valid and invalid input ranges
It helps in identifying errors that occur at the edges of input values
Examples include testing a login form with minimum and maximum character limits for password
BVA is used to ensure that the software behaves correctly at the boundaries ...
Our company's revenue model is based on subscription fees and advertising revenue.
Subscription fees from users who want access to premium features
Advertising revenue from companies who want to reach our user base
Possible revenue from partnerships and collaborations
Revenue may also come from data analysis and insights
Examples: Spotify, YouTube, LinkedIn
In Selenium, element refers to a single web element while elements refer to a collection of web elements. Basic SQL query retrieves data from a database. ACID properties ensure database transactions are reliable.
Element in Selenium refers to a single web element like a button or input field
Elements in Selenium refer to a collection of web elements, like a list of links or buttons
Basic SQL query retrieves data from...
In Selenium, element refers to a single web element while elements refer to a collection of web elements. Basic SQL query retrieves data from a database. ACID properties ensure database transactions are reliable.
Element in Selenium refers to a single web element like a button or input field
Elements in Selenium refer to a collection of web elements, like a list of links or buttons
Basic SQL query retrieves data from a da...
Element is a singular object, while elements refer to multiple objects.
Element is a single item in a collection or array.
Elements are multiple items in a collection or array.
Example: 'apple' is an element in the array ['apple', 'banana', 'orange'].
Example: 'banana' and 'orange' are elements in the same array.
Boundary Value Analysis (BVA) is a testing technique used to identify errors at boundaries of input ranges.
BVA involves testing at the boundaries of valid and invalid input ranges
It helps in identifying errors that occur at the edges of input values
Examples include testing a login form with minimum and maximum character limits for password
BVA is used to ensure that the software behaves correctly at the boundaries of in...
ACID properties in SQL refer to a set of properties that ensure database transactions are processed reliably.
ACID stands for Atomicity, Consistency, Isolation, and Durability
Atomicity ensures that either all operations in a transaction are completed successfully or none are
Consistency ensures that the database remains in a consistent state before and after the transaction
Isolation ensures that multiple transactions can...
Schema testing focuses on the structure of the database, while database testing focuses on the data within the database.
Schema testing ensures that the database tables, columns, relationships, and constraints are correctly defined.
Database testing involves verifying the data stored in the database, such as data integrity, accuracy, and consistency.
Schema testing is more focused on the design and structure of the databa...
I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.
Writing test cases, basic sql
I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.
I applied via Recruitment Consulltant and was interviewed before Jul 2023. There was 1 interview round.
Hacker rank based test
I applied via Referral and was interviewed in Jan 2021. There were 4 interview rounds.
Our company's revenue model is based on subscription fees and advertising revenue.
Subscription fees from users who want access to premium features
Advertising revenue from companies who want to reach our user base
Possible revenue from partnerships and collaborations
Revenue may also come from data analysis and insights
Examples: Spotify, YouTube, LinkedIn
Top trending discussions
Take away home - coding task
Queue can be implemented using two stacks by maintaining the order of elements in the stacks.
Create two stacks, let's call them stack1 and stack2
When an element is enqueued, push it to stack1
When an element is dequeued, pop all elements from stack1 and push them to stack2
Pop the top element from stack2 and return it as the dequeued element
If stack2 is empty, repeat step 3
To get the front element of the queue, peek the ...
Retrieve the 2nd highest and nth highest marks from a student table using SQL queries.
Use the DISTINCT keyword to avoid duplicate marks.
For the 2nd highest marks: SELECT DISTINCT Marks FROM student ORDER BY Marks DESC LIMIT 1 OFFSET 1;
For nth highest marks: SELECT DISTINCT Marks FROM student ORDER BY Marks DESC LIMIT 1 OFFSET n-1; (replace n with the desired number)
Example for 2nd highest: If Marks are 90, 85, 90, 80, ...
Left join returns all records from left table and matching records from right table. Full outer join returns all records from both tables.
Left join is used to combine two tables based on a common column.
In left join, all records from the left table are returned along with matching records from the right table.
If there is no match in the right table, NULL values are returned.
Example: SELECT * FROM table1 LEFT JOIN table...
Magic functions are special methods in PHP that start with __. Autoloading is a way to automatically load classes.
Magic functions are used to handle certain events in PHP, such as object creation or property access.
Autoloading allows PHP to automatically load classes when they are needed, without requiring manual includes.
Magic functions can be used in conjunction with autoloading to dynamically load classes or handle ...
Given three sorted arrays, find common elements.
Create three pointers to traverse each array
Compare the elements at the pointers and move the pointer of the smallest element
If all pointers point to the same element, add it to the result and move all pointers
Repeat until any pointer reaches the end of its array
Check if a number is a power of 2 or not.
A power of 2 has only one bit set in its binary representation.
Use bitwise AND operator to check if the number is a power of 2.
If n is a power of 2, then n & (n-1) will be 0.
I applied via Referral
I haven't contributed to open source due to time constraints and focusing on personal projects and learning new technologies.
Time Constraints: Balancing work, personal projects, and learning new technologies has limited my availability.
Focus on Personal Projects: I've been dedicated to developing my own applications, such as a task management tool.
Learning New Technologies: I prioritized mastering frameworks like React...
I appeared for an interview before Feb 2021.
Round duration - 60 minutes
Round difficulty - Easy
It comprised of general aptitude questions and two coding questions. It was an offline test.
Given an integer N
, find all possible placements of N
queens on an N x N
chessboard such that no two queens threaten each other.
A queen can attack another queen if they ar...
The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.
Use backtracking algorithm to explore all possible configurations.
Keep track of rows, columns, and diagonals to ensure queens do not attack each other.
Generate and print valid configurations where queens are placed safely.
Consider constraints and time limit for efficient solution.
Exam...
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 integer array containing only 0s, 1s, and 2s in linear time complexity.
Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.
Iterate through the array and swap elements based on the values encountered.
Achieve sorting in a single scan over the array without using any extra space.
Round duration - 60 minutes
Round difficulty - Easy
After having a technical discussion about my CV. He gave me two questions to code.
Ninja has to determine all the distinct substrings of size two that can be formed from a given string 'STR' comprising only lowercase alphabetic characters. These su...
Find all unique contiguous substrings of size two from a given string.
Iterate through the string and extract substrings of size two
Use a set to store unique substrings
Return the set as an array of strings
Determine if a given singly linked list of integers forms a cycle or not.
A cycle in a linked list occurs when a node's next
points back to a previous node in the ...
Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.
Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.
If the two pointers meet at any point, there is a cycle in the linked list.
If one of the pointers reaches the end of the list (null), there is no cycle.
Round duration - 30 minutes
Round difficulty - Easy
This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code.
After I approached this question with the right solution he just asked about my family. After that he said to wait. After half an hour the results were announced. A total of three students were hired and I was amongst one of them.
Given an integer N
representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.
Generate all possible combinations of balanced parentheses for a given number of pairs.
Use recursion to generate all possible combinations of balanced parentheses.
Keep track of the number of open and close parentheses used in each combination.
Return the valid combinations as an array of strings.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
based on 3 interview experiences
Difficulty level
Duration
Senior Consultant
21
salaries
| ₹11 L/yr - ₹15 L/yr |
Senior Associate
21
salaries
| ₹5 L/yr - ₹16.5 L/yr |
Software Developer
11
salaries
| ₹9 L/yr - ₹15 L/yr |
Data Analyst
10
salaries
| ₹4.2 L/yr - ₹14 L/yr |
Team Manager
8
salaries
| ₹10.2 L/yr - ₹40 L/yr |
MagicBricks
Netmeds.com
Practo
MagicPin