Upload Button Icon Add office photos

Filter interviews by

RADCOM Interview Questions and Answers

Updated 9 Jan 2025

RADCOM Interview Experiences

2 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Jan 2025

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Linux command for finding difference between two files
  • Ans. 

    The Linux command for finding the difference between two files is 'diff'.

    • Use the 'diff' command followed by the two file names to compare them

    • The command will display the lines that differ between the two files

    • Add options like '-u' for unified format or '-y' for side-by-side comparison

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about binary search

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready for aptitude questions also

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Aug 2023

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

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 4 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Your current work scenario,technologies you have worked on..You fit for the vacancy or not
  • Q2. Explain on what you are working,how you are working.
Round 3 - One-on-one 

(1 Question)

  • Q1. This was with client about their expectation from role. Just checked that you know their technologies they are asking for also handson experience
Round 4 - HR 

(2 Questions)

  • Q1. Just about ctc & facilities they are providing
  • Q2. Joining date confirmation

Interview Preparation Tips

Topics to prepare for RADCOM QA Engineer interview:
  • Telecom IMS/VOLTE,SQL,Testing,
Interview preparation tips for other job seekers - Just be prepared with whatever you have worked on.You should be confident about technologies you have asked for

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Interview questions from similar companies

I appeared for an interview in Mar 2017.

Interview Questionnaire 

1 Question

  • Q1. Questions were from Manual testing,Automation testing,core java. Testing concepts need to be known in depth. Diff bw regression and sanity,examples for severity and priority,Can abstract class be instantia...

Interview Preparation Tips

Round: Test
Experience: In this round we were given with 20 questions,each carrying one mark.
Well surely scoring around 14+ would put you on a safer side.
The test was not tough it was easy.
Tips: Prepare from India bix(train,passage,psychometric,time and work,pipes and cistern).
Practice well guys,I believe in clearing first round will be like clearing 40% of our interview.
Duration: 30 minutes
Total Questions: 20

Skills: Quick Thinking, Confidence, Your Depth In Subject
College Name: NIE IT

QA Engineer Interview Questions & Answers

CARS24 user image baikunth shukla

posted on 14 Feb 2025

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Dont remember
  • Q2. Asked me about agile, which is mindset. She thinks, its a book. Bit funny.
Round 2 - One-on-one 

(1 Question)

  • Q1. Dont remember
Round 3 - HR 

(1 Question)

  • Q1. HR no question -HR was very bad.
Round 4 - One-on-one 

(1 Question)

  • Q1. It suppose to me, it must be CTO round but he never conducted that round.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

HackerRank, one graph question which I solved.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Discussed solutions and better approaches for coding round questions.
  • Q2. What work you did in previous company.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic QA question. Tope 50 qa question

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic question of API
  • Q2. BE testing questions
Round 2 - HR 

(2 Questions)

  • Q1. Sallary discussion
  • Q2. Notice period discussion

QA Engineer Interview Questions & Answers

Swiggy user image Kumar Mayank

posted on 25 Jul 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Binary Search questions were asked

Round 3 - Coding Test 

Peak in a mountain array question were asked

Round 4 - HR 

(2 Questions)

  • Q1. Salary Questions were asked
  • Q2. Salaryyy questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and dont loose hope at last you will get success

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It comprised of general aptitude questions and two coding questions. It was an offline test.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not attack each other.

    • Generate and print valid configurations where queens are placed safely.

    • Consider constraints and time limit for efficient solution.

    • Exam...

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Achieve sorting in a single scan over the array without using any extra space.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

After having a technical discussion about my CV. He gave me two questions to code.

  • Q1. 

    Ninja and Substrings Problem Statement

    Ninja has to determine all the distinct substrings of size two that can be formed from a given string 'STR' comprising only lowercase alphabetic characters. These su...

  • Ans. 

    Find all unique contiguous substrings of size two from a given string.

    • Iterate through the string and extract substrings of size two

    • Use a set to store unique substrings

    • Return the set as an array of strings

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code. 
After I approached this question with the right solution he just asked about my family. After that he said to wait. After half an hour the results were announced. A total of three students were hired and I was amongst one of them.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use recursion to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Return the valid combinations as an array of strings.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMagicbricks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

RADCOM Interview FAQs

How many rounds are there in RADCOM interview?
RADCOM interview process usually has 3 rounds. The most common rounds in the RADCOM interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for RADCOM 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 RADCOM. The most common topics and skills that interviewers at RADCOM expect are PGDCA, Program Management, Brs, Corba and Dreamweaver.
What are the top questions asked in RADCOM interview?

Some of the top questions asked at the RADCOM interview -

  1. Linux command for finding difference between two fi...read more
  2. Just about ctc & facilities they are provid...read more
  3. Asked about binary sea...read more

Tell us how to improve this page.

RADCOM Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 433 Interviews
BigBasket Interview Questions
3.9
 • 360 Interviews
CARS24 Interview Questions
3.5
 • 335 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 331 Interviews
Lenskart Interview Questions
3.2
 • 309 Interviews
Myntra Interview Questions
4.0
 • 217 Interviews
MagicBricks Interview Questions
4.4
 • 206 Interviews
Square Yards Interview Questions
3.7
 • 201 Interviews
Blinkit Interview Questions
3.7
 • 185 Interviews
View all

RADCOM Reviews and Ratings

based on 20 reviews

4.0/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

4.3

Salary

4.1

Job security

4.1

Company culture

3.3

Promotions

3.8

Work satisfaction

Explore 20 Reviews and Ratings
Advanced Support Engineer
19 salaries
unlock blur

₹5.5 L/yr - ₹15 L/yr

QA Engineer
16 salaries
unlock blur

₹7 L/yr - ₹9.6 L/yr

Devops Engineer
7 salaries
unlock blur

₹4.7 L/yr - ₹10.5 L/yr

Senior QA Engineer
7 salaries
unlock blur

₹9.4 L/yr - ₹14.6 L/yr

BI Developer
6 salaries
unlock blur

₹8 L/yr - ₹9.7 L/yr

Explore more salaries
Compare RADCOM with

Udaan

4.0
Compare

BigBasket

3.9
Compare

Swiggy

3.8
Compare

CARS24

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