Filter interviews by
I applied via LinkedIn and was interviewed before Apr 2022. There were 3 interview rounds.
It was leetcode based pretty normal leetcode medium question
Docker is a containerization platform that allows developers to package, deploy, and run applications in isolated environments.
Docker uses containerization technology to create isolated environments for applications to run in.
It allows developers to package an application and all its dependencies into a single container.
Containers can be easily deployed and run on any system that supports Docker.
Docker provides a way t...
Use memory-mapped files or stream the file in chunks.
Use memory-mapped files to access the file in chunks.
Stream the file in chunks using a buffer.
Use compression techniques to reduce the file size before opening.
posted on 2 Jan 2025
I applied via Referral
Print a specific pattern using any programming language.
A class in OOP is a blueprint for creating objects, defining their properties and behaviors.
Classes are templates for creating objects in OOP
They define the properties (attributes) and behaviors (methods) of objects
Objects are instances of classes, each with its own unique data
Inheritance allows classes to inherit properties and behaviors from other classes
Encapsulation ensures that the data is hidden and can only be a...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can only extend one abstract class, but can implement multiple interfaces.
Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...
Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.
Joining is used to combine data from multiple tables in a database.
Inner join query retrieves only the records that have matching values in both tables.
Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;
Example: SELECT orders.order_i...
posted on 10 Dec 2024
I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.
I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.
5 years of experience in software development
Proficient in Java, Spring Boot, and Angular
Strong problem-solving skills
Experience working in Agile development environment
Bachelor's degree in Computer Science from XYZ University
I come from a close-knit family of five, including my parents, older sister, and younger brother.
Close-knit family of five
Parents, older sister, and younger brother
We enjoy spending time together traveling and trying new restaurants
Seeking new challenges and opportunities for growth in a different environment.
Desire for new challenges and learning opportunities
Seeking a better work-life balance
Interested in working with new technologies or industries
Looking for a more collaborative team environment
I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.
CICD stands for Continuous Integration and Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.
Automates the process of integrating code changes into a shared repository
Automatically builds and tests the code to ensure it is functional
Automatically deploys the code to production or staging environments
Helps in detecting and fixing integration err
To create an image out of a running container, you can use the 'docker commit' command.
Use 'docker commit' command to create an image from a running container
Syntax: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]
Example: docker commit container_id repository_name:tag
Docker add command can fetch a file from a URL and add it to the image, while copy command copies files from the host machine to the image.
Docker add command can fetch files from URLs and add them to the image
Copy command copies files from the host machine to the image
Add command can also automatically extract compressed files during the build process
Copy command is more commonly used for copying local files
A freestyle project is a type of project in Jenkins that allows users to configure the build process in any way they want. A pipeline is a set of automated steps that define the process for building, testing, and deploying code.
Freestyle project in Jenkins allows users to configure build process manually
Pipeline in Jenkins is a set of automated steps for building, testing, and deploying code
Freestyle projects are more ...
Docker Swarm is used for orchestrating multiple Docker containers across multiple hosts, while Docker Compose is used for defining and running multi-container Docker applications.
Docker Swarm is a container orchestration tool that allows you to manage a cluster of Docker hosts.
Docker Compose is a tool for defining and running multi-container Docker applications.
Docker Swarm is used for scaling and managing a cluster of...
VPC stands for Virtual Private Cloud, a virtual network dedicated to a single organization's resources in the cloud.
Allows organizations to have control over their virtual network environment
Enables customization of network configuration
Provides security by allowing isolation of resources
Can connect to on-premises data centers or other VPCs using VPN or Direct Connect
CICD pipeline is a process that automates the building, testing, and deployment of software.
Continuous Integration (CI) - code changes are integrated into a shared repository multiple times a day.
Continuous Testing - automated tests are run to ensure code quality.
Continuous Deployment - code changes are automatically deployed to production.
Stages include: build, test, deploy, and monitor.
Tools like Jenkins, GitLab, and
VPC peering allows connecting two VPCs to communicate using private IP addresses.
VPC peering enables instances in different VPCs to communicate as if they are within the same network.
Traffic between peered VPCs stays within the private IP space and does not traverse the internet.
VPC peering does not involve a gateway, VPN, or direct connection.
Both VPCs must have non-overlapping IP ranges for successful peering.
Example...
VPC is a virtual private cloud that allows you to create isolated networks within the cloud environment. Subnets are subdivisions of a VPC, route tables define how traffic is directed within the VPC, and NAT gateway allows instances in a private subnet to access the internet.
VPC is a virtual private cloud that provides a logically isolated section of the AWS Cloud where you can launch resources.
Subnets are subdivisions...
posted on 15 Dec 2024
I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.
There were 30 questions on the aptitude test, all of which were part of the total count.
I have three questions: two related to data structures and algorithms, and one concerning SQL.
posted on 12 Dec 2024
Use thread pooling and asynchronous processing to handle multiple requests efficiently in Spring Boot.
Implement thread pooling to manage multiple requests concurrently.
Use asynchronous processing to handle requests without blocking the main thread.
Consider using reactive programming with Spring WebFlux for better scalability.
Optimize database queries and external API calls to reduce response times.
Implement caching mec...
posted on 14 Jul 2024
I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.
Yes, I have experience implementing server driven UIs.
Implemented server driven UIs using JSON responses to dynamically update UI elements
Worked with frameworks like React and Angular to handle server driven UI updates
Used server driven UIs to efficiently manage and display large amounts of data
Closure is a function that captures variables from its surrounding scope, allowing it to access those variables even after the scope has closed.
Closure allows a function to access variables from its lexical scope even after the function has finished executing.
Types of closures include lexical closures, which capture variables from the surrounding lexical scope, and function closures, which capture variables from the fu...
Core Data is a framework provided by Apple for managing the model layer objects in an iOS application.
Core Data is used for storing, retrieving, and managing data in an iOS app.
It provides an object-oriented interface to work with data.
Operations include creating, reading, updating, and deleting data.
Example: Creating a new record in Core Data for a user profile.
Example: Fetching a list of items from Core Data to displ
A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.
A server is a computer or software that provides services or resources to other computers or programs.
ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.
ABAP server handles requests from clients and executes A...
posted on 16 Aug 2024
Pagination in JPA allows for retrieving a subset of results from a query by specifying a limit and offset.
Use the setFirstResult() method to specify the starting index of the results to retrieve
Use the setMaxResults() method to specify the maximum number of results to retrieve
Combine setFirstResult() and setMaxResults() to implement pagination in JPA queries
To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.
Define endpoints for different resources (e.g. /users, /products)
Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations
Handle requests and responses in JSON format
Follow REST principles like statelessness, uniform interface, and client-server architecture
based on 7 reviews
Rating in categories
Staff Software Engineer
104
salaries
| ₹17.5 L/yr - ₹31.5 L/yr |
Software Engineer
97
salaries
| ₹13 L/yr - ₹26 L/yr |
Senior Software Engineer
57
salaries
| ₹21 L/yr - ₹55 L/yr |
Senior Staff Software Engineer
23
salaries
| ₹30 L/yr - ₹52 L/yr |
Technical Support Engineer
20
salaries
| ₹8.6 L/yr - ₹19 L/yr |
Zoho
Freshworks
InMobi
LTIMindtree