i
e-Zest
Filter interviews by
Scrum Master is responsible for facilitating the Scrum process and ensuring the team follows Agile principles.
Facilitating Scrum ceremonies (daily stand-ups, sprint planning, sprint review, and retrospective)
Removing impediments that hinder the team's progress
Coaching the team on Agile principles and practices
Ensuring the team follows the Scrum framework
Facilitating communication and collaboration between team mem...
Agile Manifesto is a set of guiding values and principles for Agile software development.
Agile Manifesto emphasizes on individuals and interactions, working software, customer collaboration, and responding to change.
It values working software over comprehensive documentation.
It promotes adaptive planning and continuous improvement.
It encourages self-organizing teams and face-to-face communication.
Examples of Agile...
Implicit wait waits for a certain amount of time before throwing an exception while explicit wait waits for a certain condition to occur before proceeding.
Implicit wait is set globally and is applied to all elements in the script
Explicit wait is set for a specific element and waits for a certain condition to be met before proceeding
Examples of conditions for explicit wait include element to be clickable, visible, ...
Stub is a fake implementation of a module while driver is a software component that interacts with the system under test.
Stub is used to simulate the behavior of a module that is not yet implemented or is unavailable for testing.
Driver is used to provide input to the system under test and to capture the output generated by it.
Stub is used in top-down approach while driver is used in bottom-up approach.
Example of s...
FirefoxDriver is a class in Selenium WebDriver used to automate Firefox browser testing.
FirefoxDriver is a part of Selenium WebDriver library.
It is used to automate testing of web applications on Firefox browser.
It supports all the major functionalities of Firefox browser.
It can be used with different programming languages like Java, Python, etc.
Example: FirefoxDriver driver = new FirefoxDriver();
Performance testing is the process of evaluating the speed, responsiveness, stability, and scalability of a software application.
It involves simulating real-world scenarios to measure the application's performance under different loads and stress levels.
Performance testing helps identify bottlenecks, memory leaks, and other issues that can affect the application's performance.
Examples of performance testing tools ...
Performance testing scenario for uploading video to Youtube
Create a test plan with realistic user scenarios
Simulate multiple users uploading videos simultaneously
Measure response time, throughput, and resource utilization
Test with different file sizes and formats
Monitor server and network performance
Analyze results and identify bottlenecks
Retrieve the maximum salary from an employee table using SQL query.
Use the SQL MAX() function to find the highest salary.
Example query: SELECT MAX(salary) FROM employees;
You can also group by departments to find max salary per department.
Example: SELECT department, MAX(salary) FROM employees GROUP BY department;
Test scenarios for uploading videos to YouTube include various functional and non-functional tests to ensure a smooth user experience.
Verify file format compatibility (e.g., MP4, AVI).
Check maximum file size limit (e.g., 128GB).
Test upload speed with different internet connections.
Validate error messages for unsupported formats.
Ensure video metadata (title, description, tags) is saved correctly.
Test privacy settin...
Different roles in Agile include Product Owner, Scrum Master, and Development Team.
Product Owner is responsible for defining and prioritizing the product backlog.
Scrum Master facilitates the Scrum process and removes any impediments that may arise.
Development Team is responsible for delivering a potentially releasable product increment at the end of each sprint.
I applied via Company Website and was interviewed before Apr 2022. There were 2 interview rounds.
FirefoxDriver is a class in Selenium WebDriver used to automate Firefox browser testing.
FirefoxDriver is a part of Selenium WebDriver library.
It is used to automate testing of web applications on Firefox browser.
It supports all the major functionalities of Firefox browser.
It can be used with different programming languages like Java, Python, etc.
Example: FirefoxDriver driver = new FirefoxDriver();
Implicit wait waits for a certain amount of time before throwing an exception while explicit wait waits for a certain condition to occur before proceeding.
Implicit wait is set globally and is applied to all elements in the script
Explicit wait is set for a specific element and waits for a certain condition to be met before proceeding
Examples of conditions for explicit wait include element to be clickable, visible, or pr...
Performance testing is the process of evaluating the speed, responsiveness, stability, and scalability of a software application.
It involves simulating real-world scenarios to measure the application's performance under different loads and stress levels.
Performance testing helps identify bottlenecks, memory leaks, and other issues that can affect the application's performance.
Examples of performance testing tools inclu...
Different roles in Agile include Product Owner, Scrum Master, and Development Team.
Product Owner is responsible for defining and prioritizing the product backlog.
Scrum Master facilitates the Scrum process and removes any impediments that may arise.
Development Team is responsible for delivering a potentially releasable product increment at the end of each sprint.
Agile Manifesto is a set of guiding values and principles for Agile software development.
Agile Manifesto emphasizes on individuals and interactions, working software, customer collaboration, and responding to change.
It values working software over comprehensive documentation.
It promotes adaptive planning and continuous improvement.
It encourages self-organizing teams and face-to-face communication.
Examples of Agile meth...
Scrum Master is responsible for facilitating the Scrum process and ensuring the team follows Agile principles.
Facilitating Scrum ceremonies (daily stand-ups, sprint planning, sprint review, and retrospective)
Removing impediments that hinder the team's progress
Coaching the team on Agile principles and practices
Ensuring the team follows the Scrum framework
Facilitating communication and collaboration between team members ...
Test scenarios for uploading videos to YouTube include various functional and non-functional tests to ensure a smooth user experience.
Verify file format compatibility (e.g., MP4, AVI).
Check maximum file size limit (e.g., 128GB).
Test upload speed with different internet connections.
Validate error messages for unsupported formats.
Ensure video metadata (title, description, tags) is saved correctly.
Test privacy settings (p...
Performance testing scenario for uploading video to Youtube
Create a test plan with realistic user scenarios
Simulate multiple users uploading videos simultaneously
Measure response time, throughput, and resource utilization
Test with different file sizes and formats
Monitor server and network performance
Analyze results and identify bottlenecks
Stub is a fake implementation of a module while driver is a software component that interacts with the system under test.
Stub is used to simulate the behavior of a module that is not yet implemented or is unavailable for testing.
Driver is used to provide input to the system under test and to capture the output generated by it.
Stub is used in top-down approach while driver is used in bottom-up approach.
Example of stub i...
Retrieve the maximum salary from an employee table using SQL query.
Use the SQL MAX() function to find the highest salary.
Example query: SELECT MAX(salary) FROM employees;
You can also group by departments to find max salary per department.
Example: SELECT department, MAX(salary) FROM employees GROUP BY department;
Top trending discussions
I applied via Recruitment Consultant and was interviewed in Jul 2020. There were 3 interview rounds.
posted on 30 Sep 2021
I applied via Walk-in and was interviewed before Sep 2020. There were 4 interview rounds.
To compile all Java files inside a folder using Cmd, navigate to the folder and run 'javac *.java'
Open Command Prompt and navigate to the folder containing the Java files
Run the command 'javac *.java' to compile all Java files in the folder
Check for any errors or warnings in the output
Hashmap is a data structure that stores key-value pairs. Concurrent Hashmap is a thread-safe version of Hashmap.
Hashmap uses hashing to store and retrieve elements based on their keys.
Concurrent Hashmap allows multiple threads to access and modify the map concurrently.
Hashmap has a load factor that determines when the map needs to be resized.
Concurrent Hashmap uses a technique called lock striping to allow concurrent a...
posted on 3 Sep 2017
I appeared for an interview in Sep 2017.
Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource.
Deadlock occurs when two or more processes are stuck in a circular wait, where each process is waiting for a resource held by another process.
Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and circular wait.
Example: Process A holds resource X a...
I have experience with various technologies including Java, Python, HTML/CSS, JavaScript, and SQL.
Java
Python
HTML/CSS
JavaScript
SQL
I am looking for a change to explore new opportunities and challenges. My notice period is 30 days.
Seeking new opportunities and challenges
Want to learn and grow in a different environment
Exploring better career prospects
Seeking a company with a better work-life balance
Notice period is 30 days
I appeared for an interview in Sep 2017.
posted on 11 May 2021
I applied via Referral and was interviewed in Nov 2020. There were 3 interview rounds.
posted on 14 Nov 2021
I applied via Campus Placement and was interviewed before Nov 2020. There were 4 interview rounds.
Joins are used in SQL to combine data from two or more tables based on a related column.
Types of joins include inner join, left join, right join, and full outer join.
Inner join returns only the matching rows from both tables.
Left join returns all rows from the left table and matching rows from the right table.
Right join returns all rows from the right table and matching rows from the left table.
Full outer join returns ...
posted on 3 Mar 2022
I applied via Campus Placement and was interviewed before Mar 2021. There were 2 interview rounds.
It was easy with basic ques and then pymetrics tesy
Coding test had basic questions on Java core
posted on 20 Apr 2021
I applied via Walk-in and was interviewed before Apr 2020. There were 4 interview rounds.
posted on 3 Jun 2021
I applied via Naukri.com and was interviewed in Dec 2020. There were 5 interview rounds.
based on 1 interview experience
Difficulty level
Duration
Softwaretest Engineer
582
salaries
| ₹2.5 L/yr - ₹6.5 L/yr |
Software Engineer
286
salaries
| ₹2.4 L/yr - ₹14.9 L/yr |
Senior Software Engineer
207
salaries
| ₹14.9 L/yr - ₹27.8 L/yr |
Software Quality Analyst
137
salaries
| ₹3.4 L/yr - ₹5.8 L/yr |
Software Developer
102
salaries
| ₹7.4 L/yr - ₹16.1 L/yr |
ITC Infotech
3i Infotech
Sify Technologies
Microland