Upload Button Icon Add office photos

Filter interviews by

Clear (1)

RSA Security Java Developer Interview Questions and Answers

Updated 24 Feb 2024

RSA Security Java Developer Interview Experiences

1 interview found

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.

Interview Preparation Tips

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

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

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

I applied via Company Website and was interviewed in Feb 2024. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well practice on dsa question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep transparency and give more real life examples

I applied via Recruitment Consultant and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why you want to join this industry i.e BPO
  • Q2. Because it's a fast growing industry, and it's good to start your career with such industry in which you can use your skills for personal growth as well as for company productivity. Moreover I have seen ma...
  • Q3. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic or get nervous, interviewer is also human. Be honest and smart.

Interview Questionnaire 

6 Questions

  • Q1. INPUT : "HI MY NAME IS : ANIRUDDHA , CALL ME MAYBE :)" OUTPUT : "MAYBE ME CALL ANIRUDDHA IS NAME MY HI
  • Q2. Reverse a linked list (iterative AND Recursive)
  • Ans. 

    Reverse a linked list using iterative and recursive methods.

    • Iterative method involves traversing the list and changing the pointers to reverse the order.

    • Recursive method involves calling the function recursively on the next node and changing the pointers.

    • Both methods have O(n) time complexity and O(1) space complexity.

    • Example: 1->2->3->4->5 becomes 5->4->3->2->1.

  • Answered by AI
  • Q3. Clone a FULL linked list given a pointer and a random pointer
  • Ans. 

    Clone a linked list with a random pointer.

    • Create a new node for each node in the original list.

    • Use a hash table to map the original nodes to their clones.

    • Iterate through the original list again and update the random pointers of the clone nodes.

  • Answered by AI
  • Q4. TELL ME ABOUT YOURSELF
  • Q5. QUOTE YOUR STRENGHTS AND WEAKNESS
  • Q6. WHY SHOULD I HIRE YOU?

Interview Preparation Tips

Round: Test
Experience: 50 QUANTITATIVE APTITUDE QUESTIONS CUTOFF 30 out of 50
Total Questions: 50

Round: Test
Experience: WRITTEN ON PAPER CODING QUESTIONS
1) Given a string like
INPUT : ( ( TRUE OR FALSE ) AND ( FALSE OR TRUE ) ) OR FLASE
OUTPUT: TRUE
EVALUATE THE GIVEN EXPRESSION
2) Print all sub strings of maximum length having 2 unique characters
e.g:
INPUT : "hellomorning"
OUTPUT : "ell","llo","omo","nin"
3) Find the max length of subarray having ZERO SUM
INPUT : {3,2,1,1,0,-2,1,3,-5,1,2,1,4} OUTPUT: 7

Round: Test
Experience: 1) An array has 2N elements with N elements are same and another n are mutually different.
So find this repeating element in O(N) time with O(1) space
INPUT : {1,2,3,1}
OUTPUT: 1

2) Print the common words from given two sentences
AND YOU HAVE TO CONSIDER ALL CASES LIKE Colon, Hyphen, Dash, and Semicolons may be EMBEDDED IN BOTH SENTENCES
INPUT: sentence:1:: "HI ALL,RAMESH is mt brother,he has topped in the exam AND MY NAME IS NOT IN THE LIST"

sentence:2:: "all students are advised to READ THE LIST and say hi to RAMESH"

OUTPUT: "HI","ALL","RAMESH","THE","AND","LIST"

3) Sort the give dates collection given in special format like 10-04-2013,10-05-2005,29-02-2000 IN ASCENDING ORDER

OUTPUT: 29-02-2000,10-05-2005,10-04-2013

Round: Technical Interview
Experience: Then he started talking about my projects,Again jumped into coding questions
1. INPUT : "HI MY NAME IS : ANIRUDDHA , CALL ME MAYBE :)"
OUTPUT : "MAYBE ME CALL ANIRUDDHA IS NAME MY HI"
2. Reverse a linked list (iterative AND Recursive)
3. Clone a FULL linked list given a pointer and a random pointer

Round: HR Interview
Experience: TELL ME ABOUT YOURSELF.

QUOTE YOUR STRENGHTS AND WEAKNESS

WHY SHOULD I HIRE YOU?

College Name: NA

Skills evaluated in this interview

Interview Preparation Tips

Round: HR Interview
Experience: This interview is meant to check candidate's background and candidates's interest towards the company.

College Name: NIT BHOPAL

Interview Questionnaire 

9 Questions

  • Q1. Input an array and then print the repeating characters?? Example: Input:1,3,23,11,44,3,23,2,3. Output:3,23
  • Ans. 

    The question asks to input an array and print the repeating characters.

    • Iterate through the array and store each element in a hash table or dictionary.

    • If an element already exists in the hash table, it is a repeating character.

    • Print all the repeating characters found.

  • Answered by AI
  • Q2. Input an array and prints the second minimum in an array?? Example Input:34,45,21,12,54,67,15 Output:15
  • Ans. 

    Program to find the second minimum in an array.

    • Sort the array and return the second element.

    • Initialize two variables to store minimum and second minimum values.

    • Loop through the array and update the variables accordingly.

  • Answered by AI
  • Q3. Find the longest palendrom in a string? Example Input: abfgerccdedccfgfer Output: ccdedcc
  • Ans. 

    To find the longest palindrome in a given string.

    • Iterate through the string and check for palindromes of odd and even lengths.

    • Keep track of the longest palindrome found so far.

    • Use two pointers to check if the substring is a palindrome.

    • If the substring is a palindrome and its length is greater than the current longest palindrome, update the longest palindrome.

  • Answered by AI
  • Q4. Input a number and then find the next higher number such that for both the number (inputted and the next higher number) in binary representation contains equal number os ones. Example: Input:3(000000000000...
  • Ans. 

    Find the next higher number with equal number of ones in binary representation.

    • Convert input number to binary

    • Count number of ones in binary representation

    • Increment input number until binary representation has equal number of ones

    • Convert incremented number to decimal

  • Answered by AI
  • Q5. An array contain 6 different numbers, only 1 number is repeated for 5 times. So now total 10 numbers in array, Find that duplicate number in 2 steps only?
  • Ans. 

    Find the duplicate number in an array of 10 numbers with only 2 steps.

    • Use a hash set to keep track of visited numbers.

    • Iterate through the array and check if the number is already in the set.

    • If it is, then it is the duplicate number.

    • If not, add it to the set.

    • At the end, the duplicate number will be found.

  • Answered by AI
  • Q6. Write a program to print elements of a linked list in reverse order by using same single linked list?
  • Ans. 

    Program to print elements of a linked list in reverse order using same single linked list

    • Traverse the linked list and push each element onto a stack

    • Pop elements from the stack and print them in reverse order

  • Answered by AI
  • Q7. Questions on improving complexity of questions given in coding round
  • Q8. Html tags & ct their no of occurance of each tag & also check whether it correct or not?
  • Ans. 

    To check the occurrence and correctness of HTML tags, we can use various tools and techniques.

    • One way is to use a browser's developer tools to inspect the HTML code and see the tags and their frequency.

    • Another way is to use an online HTML validator tool that checks for correct syntax and tag usage.

    • We can also use programming languages like Python to parse HTML and count the occurrence of each tag.

    • Regular expressions ca...

  • Answered by AI
  • Q9. Few questions were on database tables and sql queries?

Interview Preparation Tips

Skills: Algorithm, data structures
College Name: na

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

RSA Security Interview FAQs

How many rounds are there in RSA Security Java Developer interview?
RSA Security interview process usually has 1 rounds. The most common rounds in the RSA Security interview process are Technical.
How to prepare for RSA Security Java Developer 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 Angular, Hibernate, J2Ee, Java and Javascript.
What are the top questions asked in RSA Security Java Developer interview?

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

  1. what is static ? what is depency injection ? Give me 4 annotation in spring @Au...read more
  2. DSA question given string "airtel:12345;jio:901;idea:1991;airtel:9000........" ...read more

Recently Viewed

INTERVIEWS

RSA Security

5.6k top interview questions

SALARIES

Finastra

SALARIES

RapidData

SALARIES

Finastra

SALARIES

Securonix

INTERVIEWS

Finastra

No Interviews

INTERVIEWS

Finastra

No Interviews

SALARIES

RapidData

INTERVIEWS

Finastra

No Interviews

INTERVIEWS

Finastra

No Interviews

Tell us how to improve this page.

RSA Security Java Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Senior Software Engineer
109 salaries
unlock blur

₹16 L/yr - ₹30.5 L/yr

Software Engineer2
54 salaries
unlock blur

₹10 L/yr - ₹19 L/yr

Principal Software Engineer
46 salaries
unlock blur

₹19.9 L/yr - ₹45 L/yr

Software Engineer
43 salaries
unlock blur

₹9 L/yr - ₹14 L/yr

Senior Software Quality Engineer
23 salaries
unlock blur

₹12.5 L/yr - ₹22 L/yr

Explore more salaries
Compare RSA Security with

Gen

4.0
Compare

McAfee

4.0
Compare

Check Point Software Technologies

3.8
Compare

Palo Alto Networks

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview