i
Filter interviews by
I applied via LinkedIn and was interviewed in Nov 2023. There was 1 interview round.
Quality assurance focuses on processes to ensure quality, while testing involves executing tests to identify defects.
Quality assurance is a proactive process that focuses on preventing defects by establishing processes and standards.
Testing is a reactive process that involves executing tests to identify defects in the software.
Quality assurance is process-oriented, while testing is product-oriented.
Quality assurance in...
Different types of testing include functional testing, non-functional testing, manual testing, automated testing, regression testing, and performance testing.
Functional testing: Testing the functionality of the software against the requirements.
Non-functional testing: Testing aspects like performance, usability, and security.
Manual testing: Testing performed manually by testers.
Automated testing: Testing performed usin...
A test plan is a document that outlines the scope, approach, resources, and schedule of testing activities.
Defines the objectives and scope of testing
Outlines the test strategy and approach
Identifies resources and schedule for testing
Includes test cases, test scenarios, and test data
Describes the roles and responsibilities of team members
Bug release refers to the process of making a software bug fix available to users.
Bug release involves identifying and fixing a software bug
Testing the fix to ensure it resolves the issue
Deploying the fix to production for users to access
Communicating the bug release to users and stakeholders
Load testing is a type of performance testing that simulates real-life user load on a software application to measure its performance under normal and peak conditions.
Load testing helps identify the maximum operating capacity of an application.
It helps in determining whether the current infrastructure is sufficient to handle the expected user load.
Examples of load testing tools include JMeter, LoadRunner, and Apache Be
A test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements or works correctly.
Test cases are written based on requirements or user stories
Each test case includes a set of inputs, expected outputs, and execution steps
Test cases are used to validate the functionality of a system
Test cases can be automated or executed manually
Bug leakage refers to bugs that are not identified during testing and are released to production.
Bug leakage occurs when bugs are missed during testing and are found by users after the software is released.
It can happen due to inadequate test coverage, lack of proper testing techniques, or miscommunication between teams.
Examples include critical bugs in a mobile app that were not caught during testing and are discovere
QA should start as early as possible in the software development lifecycle.
QA should start at the beginning of the project to ensure quality is built in from the start.
QA should be involved in requirements gathering to prevent misunderstandings and defects.
QA should start testing as soon as there is a deliverable, even if it's just a prototype.
QA should collaborate with developers to identify and fix issues early on.
QA...
Negative testing involves testing the system with invalid inputs or unexpected actions to ensure it handles errors properly.
Testing the system with incorrect data
Testing boundary conditions
Testing error handling
Ensuring the system fails gracefully
Examples: entering letters in a number field, entering a future date for a past date field
I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.
Performance Testing includes Load Testing, Stress Testing, Endurance Testing, and Spike Testing.
Load Testing: Evaluates system performance under expected load levels.
Stress Testing: Tests system performance beyond normal capacity to identify breaking points.
Endurance Testing: Checks system performance over an extended period to ensure stability.
Spike Testing: Tests system's response to sudden spikes in load or traffic.
Common Performance Testing tools include JMeter, LoadRunner, Gatling, and Apache Bench.
JMeter: Open-source tool for load and performance testing
LoadRunner: Enterprise tool by Micro Focus for performance testing
Gatling: Open-source tool for load testing
Apache Bench: Command-line tool for benchmarking web servers
Parameters considered for Performance Testing
Response time
Throughput
Concurrency
Load
Stress
Factors for selecting Performance Testing tools include compatibility, scalability, ease of use, cost, and support.
Compatibility with the technology stack being used
Scalability to handle the expected load
Ease of use for testers to create and execute tests
Cost of the tool compared to the budget
Availability of support and documentation
Integration capabilities with other testing tools
Reporting and analysis features
Communi
Performance testing focuses on speed, scalability, and stability of the system, while functional testing checks if the system meets specified requirements.
Performance testing evaluates the system's speed, scalability, and stability under various load conditions.
Functional testing verifies if the system meets specified requirements and functions correctly.
Performance testing helps identify bottlenecks and optimize syste...
LoadRunner is a performance testing tool used to simulate user traffic on a system to measure its performance under load.
Allows for performance testing of applications under various load conditions
Helps identify bottlenecks and performance issues in the system
Provides detailed reports and analysis of system performance
Supports a wide range of protocols for testing different types of applications
Endurance testing involves testing the system under sustained load to ensure stability, while spike testing involves testing the system's ability to handle sudden spikes in load.
Endurance testing is performed to evaluate the system's performance over an extended period of time.
Spike testing is conducted to assess how the system handles sudden increases in load or traffic.
Endurance testing helps identify memory leaks, p...
I applied via Company Website and was interviewed before May 2023. There were 2 interview rounds.
DevOps focuses on collaboration between development and operations teams, while agile methodology is a software development approach.
DevOps is a cultural shift that emphasizes collaboration, communication, and integration between software development and IT operations teams.
Agile methodology is a software development approach that focuses on iterative development, customer feedback, and flexibility in responding to cha...
Some popular DevOps tools include Jenkins, Docker, Ansible, Kubernetes, and Git.
Jenkins
Docker
Ansible
Kubernetes
Git
Continuous delivery focuses on automating the software delivery process up to the production environment, while continuous deployment goes a step further by automatically deploying every change to production.
Continuous delivery ensures that code changes are always in a deployable state, ready to be released to production at any time.
Continuous deployment takes the automation further by actually deploying every change t...
Configuration management in DevOps involves automating the setup and maintenance of infrastructure and applications.
Ensures consistency in infrastructure and application configurations across different environments
Automates the process of provisioning, configuring, and managing servers and applications
Helps in tracking changes made to configurations and rolling back to previous versions if needed
Facilitates collaborati...
Some important DevOps KPIs include deployment frequency, lead time for changes, mean time to recover, and change failure rate.
Deployment frequency: How often code is deployed to production
Lead time for changes: How long it takes for code changes to go from commit to production
Mean time to recover: How quickly the system can recover from failures
Change failure rate: Percentage of changes that result in failure
IaC is implemented using AWS through tools like CloudFormation, Terraform, and AWS CDK.
Use AWS CloudFormation to define infrastructure as code using JSON or YAML templates
Utilize Terraform to provision and manage infrastructure using declarative configuration files
Leverage AWS CDK to define cloud infrastructure using familiar programming languages like Python or TypeScript
Version control allows for tracking changes, collaboration, reverting to previous versions, and maintaining code integrity.
Facilitates tracking changes made to code over time
Enables collaboration among team members by providing a centralized repository
Allows for reverting to previous versions of code in case of errors or bugs
Helps maintain code integrity and consistency across different environments
Facilitates code rev...
Anti-patterns of DevOps are common practices that hinder the successful implementation of DevOps principles and practices.
Lack of collaboration between development and operations teams
Manual and error-prone deployment processes
Silos within the organization leading to lack of communication and sharing
Failure to automate repetitive tasks
Ignoring monitoring and feedback loops
Focusing solely on tools rather than culture an
I applied via LinkedIn and was interviewed in Nov 2023. There were 3 interview rounds.
- Java and Springboot
Extio Technology and Consulting LLP interview questions for popular designations
I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.
Lambda expression is a concise way to represent an anonymous function in programming languages.
Lambda expressions are used to create functions without a name.
They are often used in functional programming languages like Python and Java.
Lambda expressions can be passed as arguments to higher-order functions.
They are commonly used for short, one-off functions.
Example: (x) => x * x is a lambda expression that squares a num
Functional interfaces in Java 8 are interfaces with only one abstract method, used for lambda expressions.
Functional interfaces can have multiple default or static methods, but only one abstract method.
They are used for lambda expressions and method references.
Examples include Runnable, Callable, Comparator, etc.
Default method in Java 8 allows interfaces to have method implementations.
Introduced in Java 8 to provide backward compatibility for interfaces
Default methods can be overridden by implementing classes
Used to add new methods to interfaces without breaking existing implementations
To create a Spring Boot application, you can use Spring Initializr to generate a project with necessary dependencies and configurations.
Go to https://start.spring.io/
Select the project metadata like group, artifact, dependencies, etc.
Click on 'Generate' to download the project zip file.
Extract the zip file and import the project into your IDE.
Start coding your Spring Boot application.
Annotation used in Spring framework to indicate that a class is a RESTful controller
Used in Spring framework to define RESTful web services
Eliminates the need for annotating every method with @ResponseBody
Combines @Controller and @ResponseBody annotations
Spring Boot dependency management is a feature that simplifies managing dependencies in a Spring Boot project.
Spring Boot uses Maven or Gradle for dependency management
Dependencies are declared in the pom.xml file for Maven or build.gradle file for Gradle
Spring Boot provides a 'starter' dependencies that include commonly used libraries and frameworks
Version conflicts are resolved automatically by Spring Boot
I applied via LinkedIn and was interviewed before May 2023. There were 2 interview rounds.
Top trending discussions
Palindrome code should be designed to check if a given string is the same forwards and backwards.
Create a function that takes a string as input
Remove any spaces and punctuation from the string
Reverse the string and compare it to the original string to check if it is a palindrome
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
I am passionate about driving organizational effectiveness and employee engagement through strategic HR initiatives.
I have a strong background in HR strategy and business partnering
I enjoy collaborating with cross-functional teams to drive positive change
I am excited about the opportunity to make a meaningful impact on the organization's culture and performance
I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.
4 easy level questions will be asked basically from arrays and strings.
Assignment will be given after clearing coding round. In my case ELearning Platform project was given and 7 days time was given to complete.
posted on 17 Dec 2024
I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.
Utilize AWS or Azure services for scalable web applications
Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling
Leverage AWS Lambda or Azure Functions for serverless computing
Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic
Store data in AWS RDS or Azure SQL Database for scalable database solutions
Use AWS CloudFront or Azure CDN for content delivery
I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.
Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks
Review the code to ensure proper memory allocation and deallocation practices are being followed
Implement smart pointers or garbage collection to automatically manage memory
Use static co...
Yes, I have experience working on legacy systems.
I have successfully maintained and upgraded legacy systems to meet current business needs.
I have refactored legacy code to improve performance and scalability.
I have integrated new technologies with legacy systems to enhance functionality.
I have experience troubleshooting and debugging issues in legacy systems.
Yes, I have experience working with cross functional teams and resolving disputes effectively.
I have successfully collaborated with team members from different departments to achieve project goals.
I am skilled at mediating conflicts and finding mutually beneficial solutions.
I prioritize open communication and actively listen to all team members' perspectives.
I have experience using conflict resolution techniques such a
Interview experience
based on 15 reviews
Rating in categories
Devops Engineer
5
salaries
| ₹3.6 L/yr - ₹6 L/yr |
Software Engineer II
4
salaries
| ₹6 L/yr - ₹12 L/yr |
Analyst
3
salaries
| ₹0.2 L/yr - ₹0.2 L/yr |
IT Business Analyst
3
salaries
| ₹3.6 L/yr - ₹10 L/yr |
Infosys
TCS
Wipro
HCLTech