i
RWS Group
Filter interviews by
I applied via Approached by Company and was interviewed in Apr 2024. There were 3 interview rounds.
Good exposure to face
Good exposure to face
Top trending discussions
Application Load Balancer and Network Load Balancer are two types of load balancers used in cloud computing.
Application Load Balancer operates at the application layer and is used to distribute traffic to multiple targets based on the content of the request.
Network Load Balancer operates at the transport layer and is used to distribute traffic to multiple targets based on IP protocol data.
Application Load Balancer supp...
Route 53 routing policies determine how traffic is routed to your resources.
There are several routing policies available in Route 53, including simple, weighted, latency-based, geolocation-based, and failover.
Simple routing policy sends traffic to a single resource.
Weighted routing policy distributes traffic based on weights assigned to each resource.
Latency-based routing policy sends traffic to the resource with the l...
Jenkins pipeline automates the software delivery process by defining a set of steps and actions to be executed.
Pipeline is defined using a Jenkinsfile
Pipeline stages define the steps to be executed
Pipeline can include parallel stages and conditional steps
Pipeline can integrate with other tools like Git, Docker, and Kubernetes
CMD and ENTRYPOINT are used to define the default command to run in a container. ADD and COPY are used to add files to a container.
CMD is used to specify the default command to run when a container is started. It can be overridden by passing a command to docker run.
ENTRYPOINT is similar to CMD, but it is not overridden by passing a command to docker run. It is used to define the main command that should be run in the c...
Git rebase modifies the commit history while Git merge creates a new merge commit.
Git rebase rewrites the commit history by moving the entire feature branch to the tip of the master branch
Git merge creates a new merge commit that combines the changes from both branches
Rebasing is useful for keeping a linear commit history while merging is useful for combining multiple branches
Rebasing can cause conflicts if multiple de...
I appeared for an interview in Nov 2021.
Round duration - 50 Minutes
Round difficulty - Medium
This round was primarily focused on AWS and its applications like why and how do we use its different features and all.
Different types of EC2 instances based on costs include On-Demand Instances, Reserved Instances, and Spot Instances.
On-Demand Instances: Pay for compute capacity by the hour or second with no long-term commitments.
Reserved Instances: Reserved capacity for 1 or 3 years, offering significant discounts compared to On-Demand pricing.
Spot Instances: Bid on spare Amazon EC2 computing capacity, often available at a fraction o
Auto Scaling in AWS is a feature that automatically adjusts the number of compute resources in response to changes in demand.
Automatically adjusts the number of EC2 instances based on traffic or performance metrics
Helps maintain application availability and reduce costs by scaling up or down as needed
Can be configured to scale based on CPU utilization, network traffic, or custom metrics
Example: Auto Scaling group can b...
Amazon EC2 is a web service that provides resizable compute capacity in the cloud.
Amazon EC2 stands for Elastic Compute Cloud
It allows users to rent virtual servers on which to run their own applications
Users can choose from a variety of instance types with different CPU, memory, storage, and networking capacities
EC2 instances can be easily scaled up or down based on demand
Users only pay for the compute capacity they a
Lifecycle hooks in Auto Scaling allow you to perform custom actions before instances launch or terminate.
Lifecycle hooks can be used to pause the instance launch process to perform custom actions, such as bootstrapping or configuration setup.
They can also be used to pause the instance termination process to allow for data backup or graceful shutdown.
By using lifecycle hooks, you can ensure that your instances are prope...
Round duration - 50 Minutes
Round difficulty - Medium
This round focused heavily on the fundamentals of Docker which was followed by some basic concepts from Git.
Docker images are lightweight, standalone, executable packages that contain everything needed to run a piece of software.
Docker images are built from Dockerfiles, which specify the environment and dependencies needed for the software to run.
Images can be stored in Docker registries like Docker Hub for easy sharing and distribution.
Containers are created from Docker images and run as isolated processes on a host machine...
The command to import a pre-exported Docker image into another Docker host is 'docker load'.
Use the 'docker load' command followed by the file path of the exported image to import it into the new Docker host.
For example, 'docker load < exported_image.tar' will import the image from the file 'exported_image.tar'.
Docker Namespaces are a feature in Docker that isolates containers from each other and the host system.
Namespaces provide a way to isolate processes, network, and filesystem for containers.
Examples of namespaces include PID (process IDs), NET (networking), and MNT (mount points).
Each container runs in its own set of namespaces, providing a level of isolation and security.
CMD specifies the default command to run when a container is started, while ENTRYPOINT specifies the executable to run when the container starts.
CMD can be overridden at runtime by passing arguments to docker run command
ENTRYPOINT cannot be overridden at runtime, but arguments can be passed to it using docker run command
CMD is often used for specifying the main application to run in the container
ENTRYPOINT is commonly ...
The lifecycle of a Docker container involves creation, running, pausing, stopping, and deletion.
Creation: Docker container is created from an image using 'docker run' command.
Running: Container is started and runs the specified application or service.
Pausing: Container can be paused using 'docker pause' command to temporarily stop its processes.
Stopping: Container can be stopped using 'docker stop' command, which halts...
Git rebase is used to maintain a linear project history, while Git merge is used to combine branches.
Use Git rebase when you want to maintain a clean and linear project history.
Use Git merge when you want to combine branches while preserving the commit history.
Rebasing is useful for keeping feature branches up to date with the main branch.
Merging is useful for integrating changes from multiple branches into a single br...
Git stash is a command in Git that temporarily shelves changes you've made to your working directory.
Git stash is used to save changes that are not ready to be committed yet.
It allows you to switch branches without committing changes.
You can apply the stashed changes later on using 'git stash apply'.
You can list all stashed changes with 'git stash list'.
You can remove stashed changes with 'git stash drop'.
Round duration - 30 Minutes
Round difficulty - Easy
This was a typical HR round with some standard Behavioral questions.
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.
I appeared for an interview in Sep 2024, where I was asked the following questions.
Blue-green deployment in Kubernetes allows seamless updates with minimal downtime by switching traffic between two identical environments.
Create two identical environments: 'blue' (current) and 'green' (new).
Deploy the new version of the application to the 'green' environment.
Use a Kubernetes Service to route traffic to the 'blue' environment initially.
Switch the Service to point to the 'green' environment once testing...
Dynamically creating volumes in Kubernetes involves using Persistent Volume Claims (PVCs) and Storage Classes.
Use a StorageClass to define the type of storage and its parameters.
Create a Persistent Volume Claim (PVC) that requests storage from the StorageClass.
Kubernetes will automatically provision a Persistent Volume (PV) based on the PVC.
Example of a StorageClass definition: ```yaml apiVersion: storage.k8s.io/v1 kin...
Load balancers distribute traffic across servers, while Ingress manages external access to services in Kubernetes.
Load balancers operate at Layer 4 (Transport) or Layer 7 (Application) of the OSI model.
Ingress is specific to Kubernetes and provides HTTP routing to services based on rules.
Load balancers can be hardware-based (like F5) or software-based (like HAProxy).
Ingress controllers can use various backends, such as...
I applied via Naukri.com and was interviewed in Sep 2020. There was 1 interview round.
posted on 6 Jan 2021
I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.
posted on 15 Sep 2021
I appeared for an interview before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
It happens in very friendly manner.
Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...
Print all possible paths from top-left to bottom-right in a matrix by moving only right or down.
Use backtracking to explore all possible paths from top-left to bottom-right in the matrix.
At each cell, recursively explore moving right and down until reaching the bottom-right corner.
Keep track of the current path and add it to the result when reaching the destination.
Yes, I can create 2 tables in SQL and perform operations like INSERT, SELECT, UPDATE, and DELETE.
Create Table 1: CREATE TABLE employees (id INT, name VARCHAR(50), salary DECIMAL(10,2));
Create Table 2: CREATE TABLE departments (dept_id INT, dept_name VARCHAR(50));
Insert Data: INSERT INTO employees VALUES (1, 'John Doe', 50000);
Select Data: SELECT * FROM employees WHERE salary > 40000;
Update Data: UPDATE employees SET...
Round duration - 90 minutes
Round difficulty - Medium
No problem occur very friendly environment.
Round duration - 90 minutes
Round difficulty - Hard
You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...
Find all possible paths for a rat in a maze from source to destination.
Use backtracking to explore all possible paths in the maze.
Keep track of visited cells to avoid revisiting them.
Explore all possible directions (up, down, left, right) from each cell.
Add the current direction to the path and recursively explore further.
If the destination is reached, add the path to the list of valid paths.
Tip 1 : Competitive programming plays a major role when you are appearing for coding rounds as a fresher. In the coding rounds, you won't get direct problems copied from Geeksforgeeks or Leetcode. You would be required to use your logical thinking to go ahead in the process. This is where competitive programming helps.
Tip 2 : Coding rounds are all about Coding + Timing. Most people fail to excel due to the pressure of a timer ticking on your head. So, instead of just solving problems, try to participate in timed contests. This will help you be used to the pressure of the timer.
Tip 3 : Many big companies like Microsoft, Amazon, and even Google expect you to be good at standard problems. So, once you are done with coding round by your logical skills and competitive programming, you must be well versed with some standard problems in order to excel.
Application resume tips for other job seekersTip 1 : Make it short, crisp, and simple. It is always good to have a 1 pager resume.
Tip 2 : Resume must comprise of the following: Educational Qualifications, Technical skills, Projects, Work experience (if any), Achievements. Other than this, you may include some extra co-curricular achievements.
posted on 2 Jun 2022
I appeared for an interview before Jun 2021.
Had DSA and aptitude questions
I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.
based on 1 interview
Interview experience
Software Engineer
143
salaries
| ₹3.5 L/yr - ₹14.4 L/yr |
Senior Software Engineer
108
salaries
| ₹6 L/yr - ₹22 L/yr |
Software Developer
105
salaries
| ₹3.5 L/yr - ₹12.6 L/yr |
Project Manager
87
salaries
| ₹5.1 L/yr - ₹14 L/yr |
Associate Project Manager
80
salaries
| ₹4.1 L/yr - ₹9 L/yr |
DXC Technology
Sutherland Global Services
Optum Global Solutions
FIS