Upload Button Icon Add office photos

RSA

Compare button icon Compare button icon Compare

Filter interviews by

RSA Interview Questions and Answers

Updated 17 Jun 2025
Popular Designations

14 Interview questions

A Software Engineer was asked
Q. In your real-world examples, why was Kubernetes used instead of Docker Swarm?
Ans. 

Kubernetes was chosen due to its superior orchestration capabilities and larger community support.

  • Kubernetes has better load balancing and scaling features

  • Kubernetes has a larger community and more resources available

  • Docker Swarm is simpler and easier to use for smaller projects

  • Kubernetes is more suitable for complex, large-scale applications

View all Software Engineer interview questions
A Software Engineer was asked
Q. What happens if a file does not exist and we try to execute it?
Ans. 

Execution of non-existent file

  • An error message is displayed indicating the file does not exist

  • The program may crash or terminate abruptly

  • The operating system may throw an exception

  • The program may prompt the user to create the file

View all Software Engineer interview questions
A Software Engineer was asked
Q. How would you sort numbers represented as strings using Python?
Ans. 

Sort numbers in string format using Python

  • Convert the array of strings to an array of integers using map()

  • Sort the array of integers using sorted()

  • Convert the sorted array of integers back to an array of strings using map()

View all Software Engineer interview questions
A Software Engineer was asked
Q. How do you manage group and user permissions in Linux?
Ans. 

To give group and user permissions in Linux, use the chmod command.

  • Use the chmod command followed by the permission code (e.g. 755) and the file or directory name.

  • To give permissions to a specific user, use the chown command followed by the username and file or directory name.

  • To give permissions to a specific group, use the chgrp command followed by the group name and file or directory name.

View all Software Engineer interview questions
A Software Engineer was asked
Q. How do you swap two numbers without using a third variable?
Ans. 

Swap two numbers without using third variable

  • Use arithmetic operators to swap values

  • Addition and subtraction can be used to swap values

  • XOR operator can also be used to swap values

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is Maven and why is it used?
Ans. 

Maven is a build automation tool used primarily for Java projects.

  • Maven manages dependencies and builds the project using a pom.xml file

  • It simplifies the build process by providing a standard way of building and packaging projects

  • Maven can also generate reports and documentation for the project

  • Example: mvn clean install - compiles, tests, and packages the project

View all Software Engineer interview questions
Be interview-ready. Browse the most asked HR questions.
illustration image
A Software Engineer was asked
Q. How can you reverse a string without using an array?
Ans. 

Reverse a string without using array

  • Use two pointers, one at the start and one at the end of the string

  • Swap the characters at the two pointers and move the pointers towards each other

  • Repeat until the pointers meet in the middle of the string

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. What is Docker?
Ans. 

Docker is a platform for developing, shipping, and running applications using containerization technology.

  • Docker allows developers to package their applications and dependencies into a container that can run on any system

  • Containers are lightweight and provide isolation, making it easy to deploy and scale applications

  • Docker Hub is a repository of pre-built images that can be used to quickly deploy applications

  • Docke...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is the difference between git clone and git fork?
Ans. 

git clone copies a repository to local machine while git fork creates a copy on GitHub.

  • git clone downloads the entire repository to local machine

  • git fork creates a copy of the repository on GitHub

  • git clone is used to work on an existing repository

  • git fork is used to contribute to someone else's repository

  • git clone creates a local copy of the repository

  • git fork creates a remote copy of the repository

View all Software Engineer interview questions
A Software Engineer was asked
Q. How do you push code to GitHub?
Ans. 

Code is pushed to Github using Git commands through the terminal or a Git client.

  • Create a new repository on Github

  • Clone the repository to your local machine

  • Make changes to the code and commit them using Git commands

  • Push the changes to Github using Git commands

View all Software Engineer interview questions

RSA Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Online test on mettl

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about projects
  • Q2. Merge sort

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume carefully.

Interview Questions & Answers

user image Anonymous

posted on 5 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. VLSI related questions from both digital and analog
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. What is Dependency Injection
  • Q2. How to improve performance of a page which taking lobg time to load data
  • Ans. 

    Optimize page performance by reducing load times through various strategies like caching, lazy loading, and efficient queries.

    • Implement caching strategies (e.g., Redis or Memcached) to store frequently accessed data.

    • Use lazy loading for images and other resources to load them only when they are in the viewport.

    • Optimize database queries by using indexing and avoiding N+1 query problems.

    • Minimize HTTP requests by combinin...

  • Answered by AI

I applied via Referral and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

17 Questions

  • Q1. Swap two numbers without using third variable
  • Ans. 

    Swap two numbers without using third variable

    • Use arithmetic operators to swap values

    • Addition and subtraction can be used to swap values

    • XOR operator can also be used to swap values

  • Answered by AI
  • Q2. Reverse a string without using array
  • Q3. Largest Palindrome substring
  • Q4. Sort the numbers written in string format using python
  • Ans. 

    Sort numbers in string format using Python

    • Convert the array of strings to an array of integers using map()

    • Sort the array of integers using sorted()

    • Convert the sorted array of integers back to an array of strings using map()

  • Answered by AI
  • Q5. What happens if there does not exist a particular file and we are trying to execute the file
  • Ans. 

    Execution of non-existent file

    • An error message is displayed indicating the file does not exist

    • The program may crash or terminate abruptly

    • The operating system may throw an exception

    • The program may prompt the user to create the file

  • Answered by AI
  • Q6. How will you give group and user permissions in linux
  • Ans. 

    To give group and user permissions in Linux, use the chmod command.

    • Use the chmod command followed by the permission code (e.g. 755) and the file or directory name.

    • To give permissions to a specific user, use the chown command followed by the username and file or directory name.

    • To give permissions to a specific group, use the chgrp command followed by the group name and file or directory name.

  • Answered by AI
  • Q7. What is Docker
  • Q8. What is Kubernetes
  • Q9. Why Kubernetes was used in your real life example why not docker swarm
  • Ans. 

    Kubernetes was chosen due to its superior orchestration capabilities and larger community support.

    • Kubernetes has better load balancing and scaling features

    • Kubernetes has a larger community and more resources available

    • Docker Swarm is simpler and easier to use for smaller projects

    • Kubernetes is more suitable for complex, large-scale applications

  • Answered by AI
  • Q10. Basic Questions on IAM of AWS
  • Q11. How you push code to Github
  • Q12. What is the difference between git clone and git fork
  • Ans. 

    git clone copies a repository to local machine while git fork creates a copy on GitHub.

    • git clone downloads the entire repository to local machine

    • git fork creates a copy of the repository on GitHub

    • git clone is used to work on an existing repository

    • git fork is used to contribute to someone else's repository

    • git clone creates a local copy of the repository

    • git fork creates a remote copy of the repository

  • Answered by AI
  • Q13. What is Maven and Why it is used
  • Ans. 

    Maven is a build automation tool used primarily for Java projects.

    • Maven manages dependencies and builds the project using a pom.xml file

    • It simplifies the build process by providing a standard way of building and packaging projects

    • Maven can also generate reports and documentation for the project

    • Example: mvn clean install - compiles, tests, and packages the project

  • Answered by AI
  • Q14. How can you change the owner of a file in linux
  • Ans. 

    To change the owner of a file in Linux, use the chown command.

    • Use the chown command followed by the new owner's username and the file name.

    • To change the owner and group, use chown followed by the new owner's username, a colon, the new group's name, and the file name.

    • To change the owner of a directory and its contents, use the -R option with chown.

    • Example: chown newowner myfile.txt

    • Example: chown newowner:newgroup myfile...

  • Answered by AI
  • Q15. How to run a cron job
  • Q16. Questions on my projects
  • Q17. Questions based on docker pull docker push docker run commands

Interview Preparation Tips

Interview preparation tips for other job seekers - I gave two technical rounds both lasted for more than a hour , where they tested my basic problem solving skills, python,unix,docker,kubernetes,Git,AWS,shell scripting It was kind of a stress interview because with every answer of mine they wanted to give me proper reasons and were forming questions from my answers itself. I would advise that one should prepare their basics and projects whatever they have mentioned in their resume I tried to give real life examples in my answers that added a plus point to my answers. Stay calm during the interview, and Prepare well as per your resume and Job description
Best of Luck

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
6d
a client servicing executive
FeedCard Image
Got a question about RSA?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. DSA question on Array
  • Q2. Calender based DSA question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions on maths related parts and analysis skills

Round 2 - Coding Test 

Coding questions from various Data Structure parts like linkedList stack queue

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of iOS, Design Patterns , Memory leaks etc

Interview Preparation Tips

Interview preparation tips for other job seekers - I would recommend not to apply for any position in this company as they would reject you after hearing salary expectations & all the efforts that you did for clearing 5 rounds would be in vain.

All the feedbacks shared on every review platform regarding poor recruitment process is correct.
Some of the person who were involved in this kind of process are poonam mandhava, neha kumari, prakash balaraman.

Neha Kumari would try to manipulate you psychologically in making you feel that you have done well in interviews & do not consider going for other companies.

Poonam mandhava would behave as if she is reading some script & the decision is already been made earlier.

Guys beware of these persons & don't waste your time in investing in this company.

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All about basics of Android and Kotlin as deep as you can go from understanding point of view , no need to learn or mug syntaxes before interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Just study basic data structures and all about the tech stack for which you are applying. Anything new which is in the Field should be known to prove that you are not left behind .
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Print the largest string from the given 5 strings
  • Q2. Check if the required dropdown option is displayed or not
  • Ans. 

    Use Selenium WebDriver to locate the dropdown element and check if the required option is displayed

    • Locate the dropdown element using Selenium WebDriver

    • Use the Select class to interact with the dropdown

    • Verify if the required option is displayed using isSelected() method

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Basic coding questions that are available with just one google search

Interview Preparation Tips

Topics to prepare for Allegion Senior Software Engineer interview:
  • Inteviewbit
  • Google search
Interview preparation tips for other job seekers - Please don't consider this company unless you are casually looking for a job change, because even they are just casually looking for candidates and have no intentions of hiring.

Firstly the questions they asked for not suitable for a senior level role, the questions were very basic and more suited for a fresher or intern. And of course anybody can pass their technical rounds with ease.

Once that is done they'll call you to office for next 2 rounds, which a heavt waste of time for the candidates.

And finally they reject you saying you are suitable for a entry level role but not senior level.

If they don't ask questions that are suitable for senior role how will they be able to judge my expertise?

I requested them to evaluate me for one more round before taking that decision, they said we have other candidates in line, and they'll approach me if they don't find anyone.

3 months after the interview the role is still open on all the job portals, and they aren't even bothered to fill the position

RSA Interview FAQs

How many rounds are there in RSA interview?
RSA interview process usually has 1-2 rounds. The most common rounds in the RSA interview process are Technical and Aptitude Test.
How to prepare for RSA interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at RSA. The most common topics and skills that interviewers at RSA expect are Recruitment and Talent Acquisition.
What are the top questions asked in RSA interview?

Some of the top questions asked at the RSA interview -

  1. What happens if there does not exist a particular file and we are trying to exe...read more
  2. Why Kubernetes was used in your real life example why not docker sw...read more
  3. How can you change the owner of a file in li...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Interview Questions from other companies in Law Enforcement & Security Industry

myGate Interview Questions
3.1
 • 30 Interviews
CISB Interview Questions
3.7
 • 4 Interviews
Sagtaur Systems Interview Questions
4.2
 • 1 Interview
ADTECH Systems Interview Questions
4.4
 • 1 Interview
View all

RSA Reviews and Ratings

based on 20 reviews

4.1/5

Rating in categories

3.5

Skill development

4.2

Work-life balance

3.3

Salary

4.2

Job security

3.4

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 20 Reviews and Ratings
RSA - Recruitment Lead (10-12 yrs)

10-12 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
19 salaries
unlock blur

₹19.4 L/yr - ₹33.3 L/yr

Consultant
12 salaries
unlock blur

₹13.6 L/yr - ₹26.3 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹18 L/yr - ₹30 L/yr

Software Engineer2
7 salaries
unlock blur

₹13.2 L/yr - ₹18 L/yr

Software Engineer Level 1
7 salaries
unlock blur

₹7.7 L/yr - ₹11.2 L/yr

Explore more salaries
Compare RSA with other companies in Law Enforcement & Security Industry

Trig Detective

3.6
Compare

Singh Intelligence Security

2.8
Compare

Secret Watch Detectives

4.8
Compare

PAK Arab Refinery

4.7
Compare
write
Share an Interview