Upload Button Icon Add office photos

Filter interviews by

RSA Security Interview Questions and Answers

Updated 6 Aug 2024
Popular Designations

7 Interview questions

A Principal Software Engineer was asked 12mo ago
Q. How does Datafeed work?
Ans. 

Datafeed is a mechanism for transferring data from one system to another in real-time or near real-time.

  • Datafeed is used to transmit data from a source to a destination system.

  • It can be used for various purposes such as syncing data between systems, updating databases, or triggering actions based on incoming data.

  • Datafeed can be implemented using APIs, webhooks, messaging queues, or other communication protocols.

  • E...

View all Principal Software Engineer interview questions
A Security Guard was asked
Q. How many hours will a security guard be on duty?
Ans. 

The number of hours a security guard works depends on the specific job requirements and shifts.

  • Hours can vary from part-time positions with a few hours per week to full-time positions with 40+ hours per week.

  • Some security guards work night shifts, weekends, or holidays, which may require longer hours.

  • Overtime may be available depending on the employer and job responsibilities.

View all Security Guard interview questions
A Java Developer was asked
Q. Given a string like 'airtel:12345;jio:901;idea:1991;airtel:9000...', write a Java program to output the count of each company and their corresponding phone numbers. For example: airtel 2 12345 9000 jio 1 90...
Ans. 

The task is to parse a string of services and their associated numbers, counting occurrences and formatting the output.

  • Split the input string by ';' to separate each service entry.

  • Use a HashMap to count occurrences of each service name.

  • Store the numbers associated with each service in a List or another HashMap.

  • Iterate through the HashMap to format the output as required.

View all Java Developer interview questions
A Senior Operations Manager was asked
Q. Discuss how a new cloud architecture would look and how it can be implemented.
Ans. 

A new cloud architecture focuses on scalability, security, and integration for efficient operations management.

  • Adopt a microservices architecture for modularity and scalability, e.g., using AWS Lambda for serverless functions.

  • Implement a robust API gateway to manage communication between services, such as Amazon API Gateway.

  • Utilize container orchestration tools like Kubernetes for efficient deployment and manageme...

View all Senior Operations Manager interview questions
A Senior Software Engineer was asked 12mo ago
Q. Diff between GCD and Queue in depth
Ans. 

GCD is a low-level API for managing concurrent operations, while Queue is a high-level API for managing tasks in a FIFO order.

  • GCD stands for Grand Central Dispatch and is a low-level API for managing concurrent operations in iOS and macOS.

  • Queues are a high-level API in GCD used for managing tasks in a FIFO (First In, First Out) order.

  • GCD allows you to create and manage queues, while queues are used to execute task...

View all Senior Software Engineer interview questions
A Java Developer was asked
Q. What is static ? what is depency injection ? Give me 4 annotation in spring @Autowire how to use it
Ans. 

Static keyword is used in Java to create class-level variables and methods. Dependency injection is a design pattern used to inject dependencies into a class. @Autowired is a Spring annotation used for automatic dependency injection.

  • Static keyword is used to create variables and methods that belong to the class itself, rather than to instances of the class.

  • Dependency injection is a design pattern where the depende...

View all Java Developer interview questions
A Senior Consultant was asked
Q. Simple core Java and program to find the least produce able number in a given int array
Ans. 

Program to find the least producible number in a given int array using core Java

  • Iterate through the array and check if any two numbers can be multiplied to get a number in the array

  • If not, return the smallest number in the array

  • Handle edge cases such as negative numbers and zero

View all Senior Consultant interview questions
Are these interview questions helpful?

RSA Security Interview Experiences

19 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions on Java Core and Collections
  • Q2. Questions on multithreading
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics on Swift
  • Q2. Diff between GCD and Queue in depth
  • Ans. 

    GCD is a low-level API for managing concurrent operations, while Queue is a high-level API for managing tasks in a FIFO order.

    • GCD stands for Grand Central Dispatch and is a low-level API for managing concurrent operations in iOS and macOS.

    • Queues are a high-level API in GCD used for managing tasks in a FIFO (First In, First Out) order.

    • GCD allows you to create and manage queues, while queues are used to execute tasks con...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - there were 4 rounds of interview, I got selected in all and later they said they have budget issue there was miscommunication happened to you while screening. Don't waste your time on giving interview for this company.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How money salary par month security guard
  • Q2. How money hours duty security guard
  • Ans. 

    The number of hours a security guard works depends on the specific job requirements and shifts.

    • Hours can vary from part-time positions with a few hours per week to full-time positions with 40+ hours per week.

    • Some security guards work night shifts, weekends, or holidays, which may require longer hours.

    • Overtime may be available depending on the employer and job responsibilities.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Security guard

Interview Questions & Answers

user image Anonymous

posted on 4 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Code snippets for predicting output and compilation errors and explain the reason of errors
  • Q2. Data Security related question
Round 2 - Technical 

(1 Question)

  • Q1. System design question Class diagram for system design question Data security related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. DSA question given string "airtel:12345;jio:901;idea:1991;airtel:9000........" output should be in this formate airtel 2 12344 9000 jio 1 901..... (write in java)
  • Ans. 

    The task is to parse a string of services and their associated numbers, counting occurrences and formatting the output.

    • Split the input string by ';' to separate each service entry.

    • Use a HashMap to count occurrences of each service name.

    • Store the numbers associated with each service in a List or another HashMap.

    • Iterate through the HashMap to format the output as required.

  • Answered by AI
  • Q2. What is static ? what is depency injection ? Give me 4 annotation in spring @Autowire how to use it
  • Ans. 

    Static keyword is used in Java to create class-level variables and methods. Dependency injection is a design pattern used to inject dependencies into a class. @Autowired is a Spring annotation used for automatic dependency injection.

    • Static keyword is used to create variables and methods that belong to the class itself, rather than to instances of the class.

    • Dependency injection is a design pattern where the dependencies...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on java based questions.

Skills evaluated in this interview

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

How EGRC works in the Manufacturing Unit

Round 2 - One-on-one 

(1 Question)

  • Q1. How Datafeed works
  • Ans. 

    Datafeed is a mechanism for transferring data from one system to another in real-time or near real-time.

    • Datafeed is used to transmit data from a source to a destination system.

    • It can be used for various purposes such as syncing data between systems, updating databases, or triggering actions based on incoming data.

    • Datafeed can be implemented using APIs, webhooks, messaging queues, or other communication protocols.

    • Exampl...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data Structure, Hashing
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Yes aptitude test is good and joined the company

Round 3 - Coding Test 

Yes joined the company and its good

Round 4 - Group Discussion 

Yes joined the company and its good

Round 5 - Case Study 

Yes joined the company and its good

Round 6 - Technical 

(2 Questions)

  • Q1. Yes joined the company
  • Q2. Good company and ita profitable
Round 7 - Group Discussion 

Yes joined the company and its good

Round 8 - Salary discussion and placement 

(1 Question)

  • Q1. Yes joined the company

Interview Preparation Tips

Interview preparation tips for other job seekers - RSA is a very good company. Never miss an opportunity to join with RSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

String Manipulation and Trees Operations

Round 2 - Technical 

(1 Question)

  • Q1. Projects Discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked about networking

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about RSA Security?
Ask anonymously on communities.

RSA Security Interview FAQs

How many rounds are there in RSA Security interview?
RSA Security interview process usually has 2-3 rounds. The most common rounds in the RSA Security interview process are Technical, One-on-one Round and HR.
How to prepare for RSA Security 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 Security. The most common topics and skills that interviewers at RSA Security expect are Hibernate, Automation Testing, Linux, Python and Java.
What are the top questions asked in RSA Security interview?

Some of the top questions asked at the RSA Security interview -

  1. Discusaion on how a new cloud architecture would look like and how it can be im...read more
  2. DSA question given string "airtel:12345;jio:901;idea:1991;airtel:9000........" ...read more
  3. what is static ? what is depency injection ? Give me 4 annotation in spring @Au...read more
How long is the RSA Security interview process?

The duration of RSA Security interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 20 interview experiences

Difficulty level

Easy 25%
Moderate 25%
Hard 50%

Duration

Less than 2 weeks 38%
2-4 weeks 25%
4-6 weeks 13%
6-8 weeks 13%
More than 8 weeks 13%
View more

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 2k Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
FIS Interview Questions
3.9
 • 503 Interviews
Dell Interview Questions
3.9
 • 406 Interviews
Quest Global Interview Questions
3.6
 • 330 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Qualcomm Interview Questions
3.8
 • 271 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
FactSet Interview Questions
3.9
 • 216 Interviews
View all

RSA Security Reviews and Ratings

based on 74 reviews

3.8/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.6

Salary

2.9

Job security

3.8

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 74 Reviews and Ratings
Manager, Software Engineering

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

RSA G&L Consultant

Bangalore / Bengaluru

6-10 Yrs

Not Disclosed

RSA Corporate Secretary & Legal Counsel

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
113 salaries
unlock blur

₹13.5 L/yr - ₹39 L/yr

Principal Software Engineer
52 salaries
unlock blur

₹26 L/yr - ₹45 L/yr

Software Engineer2
52 salaries
unlock blur

₹10 L/yr - ₹19.7 L/yr

Software Engineer
51 salaries
unlock blur

₹9 L/yr - ₹14 L/yr

Software Developer
22 salaries
unlock blur

₹11.5 L/yr - ₹23 L/yr

Explore more salaries
Compare RSA Security with

Teleperformance

3.9
Compare

Optum Global Solutions

4.0
Compare

FIS

3.9
Compare

Nagarro

4.0
Compare
write
Share an Interview