rsa security logo

Rsa Security Interviews

1 experience•45 reads
šŸ” RSA Security – Interview Experience (Backend Engineer | Java + Spring Boot)
rsa security logo
Rsa Security
backend engineerbangalore2.4 yearsRejected
November 23, 2025 • 45 reads

Summary

I interviewed with RSA Security for a Backend Engineer role, navigating through multiple technical and managerial rounds. The process involved discussions on my projects, backend fundamentals, DSA, Java specifics, and system design. Although I received an offer, I ultimately declined it for a more competitive opportunity.

Full Experience

Round 1 — Technical Screening (1 hour)

This round was a blend of project discussions, backend basics, and a quick DSA question. We talked about my previous projects and their architecture. Specific REST API questions included when to use certain HTTP actions for login validation and the differences between PUT and POST. Overall, it focused on conceptual understanding and basic backend knowledge.

Round 2 — Deep Technical (Java + Spring Boot + Microservices)

This round delved much deeper into backend architecture and Java fundamentals. We started with a detailed walkthrough of my projects. Topics covered included API Gateways, particularly APIGEE/APIM, the advantages of microservices, and various inter-service communication patterns (synchronous/asynchronous, REST, Kafka). We also discussed the internal workings of SpringApplication.run() and the reasons to choose Spring Boot over traditional Spring. I was given a coding question to validate an IPv4 address without regex, including requirements for four dot-separated groups, 0-255 range for each, and handling leading zeros. A follow-up asked for edge case fixes and logic optimization. Additionally, there was a Java question to determine the output of a specific code snippet involving an uninitialized String variable.

Round 3 — Hiring Manager Round (Project + System Knowledge)

This was a more conversational round, heavily focused on my project work at UBS. We discussed my day-to-day activities and the tech stack I used. The manager asked me to self-rate my skills in Java, React.js, AI/ML familiarity, and cloud experience. We also touched upon API versioning strategies, how to design idempotent REST APIs, and the inner workings of JWT, including how I've implemented it. My notice period and CTC expectations were also discussed, along with my motivation to move to Bangalore.

HR Round — Compensation + Fitment Discussion

This final round covered standard HR topics, including an introduction about myself, my expectations from RSA, reasons for moving to Bangalore, and why I was interested in RSA Security. We then discussed compensation. I was offered a base salary of ₹16.82 LPA and a total CTC of ~₹18.6 LPA for the Bangalore location.

Ultimately, I rejected the offer as I had secured another offer with a higher base salary of 23 LPA and a total CTC of 30.6 LPA.

Interview Questions (10)

Q1
REST API: HTTP for Login Validation
Other

Which HTTP action should be used for validating login details?

Q2
REST API: PUT vs. POST
Other

What is the difference between PUT and POST HTTP methods?

Q3
Microservices Advantages
Other

What are the advantages of using microservices architecture?

Q4
Spring Boot: SpringApplication.run() Internals
Other

Explain what happens internally when SpringApplication.run() is called in a Spring Boot application.

Q5
Spring vs. Spring Boot
Other

Why would one choose Spring Boot over traditional Spring Framework?

Q6
Validate IPv4 Address
Data Structures & AlgorithmsMedium

Implement a function to validate an IPv4 address without using regular expressions. Requirements include:

  • Must contain 4 groups separated by .
  • Each group must be between 0 and 255
  • No leading zeros (except for '0' itself). Examples: āœ… 10.0.12.35 → Valid āŒ 10.35.01.25 → Invalid Follow-up: Fix edge cases and optimize logic.
Q7
Java Code Output: Null String
Other

Analyze the following Java code snippet and determine its output or behavior:

String str;
if(false || str.equals("abc")) {
        return true;
}
return false;
Q8
API Versioning Strategies
Other

Discuss different strategies for API versioning.

Q9
Design Idempotent REST APIs
System Design

How would you design idempotent REST APIs?

Q10
JWT Mechanism and Implementation
System Design

Explain how JSON Web Tokens (JWT) work and how you have implemented them in your projects.

Have a Rsa Security Interview Experience to Share?

Help other candidates by sharing your interview experience. Your insights could make the difference for someone preparing for their dream job at Rsa Security.