Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Rigel Networks Team. If you also belong to the team, you can get access from here

Rigel Networks Verified Tick

Compare button icon Compare button icon Compare
2.7

based on 73 Reviews

Filter interviews by

Rigel Networks Software Developer Interview Questions and Answers for Freshers

Updated 25 Sep 2024

Rigel Networks Software Developer Interview Experiences for Freshers

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Assignment 

Create a CRUD Application in.NET using ADO.NET showcasing Many to many relationship

Interview questions from similar companies

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 - Technical 

(2 Questions)

  • Q1. What is HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap allows quick access to values based on their keys

    • Keys must be unique and values can be duplicated

    • HashMap is not thread-safe and requires synchronization for concurrent access

    • Java's HashMap implementation uses hashing to distribute keys across buckets

  • Answered by AI
  • Q2. It’s a collection framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Reasoning and aptitude questions are given

Round 3 - HR 

(2 Questions)

  • Q1. Tell all concepts of Overloading
  • Ans. 

    Overloading is a concept in programming where multiple functions can have the same name but different parameters.

    • Functions with the same name but different parameters can be defined in a class

    • Overloading allows for flexibility in function usage

    • Example: void print(int num) and void print(string text) are overloaded functions

  • Answered by AI
  • Q2. Tell me about a live example of inheritance
  • Ans. 

    Inheritance in software development allows a class to inherit properties and behaviors from another class.

    • Inheritance allows a subclass to reuse code from a superclass

    • Subclass can also add new functionalities or override existing ones

    • Example: Animal class can be a superclass with properties like name and age, while Dog class can inherit from Animal and add a method bark()

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Tell about the your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare all basic concepts of oops, practice all the concepts

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is MVC architecture?, What is partial view in MVC , state purpose of it & how to define it? , Prepare SQL query
  • Ans. 

    MVC is a software architecture pattern that separates an application into three interconnected components: Model, View, and Controller.

    • MVC stands for Model-View-Controller

    • Model represents the data and business logic

    • View represents the user interface

    • Controller handles user input and updates the model and view accordingly

    • Partial view is a reusable view component that can be rendered within another view

    • It is used to reduc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic things, focus on concepts

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap allows quick access to values based on their keys

    • Keys must be unique and values can be duplicated

    • HashMap is not thread-safe and requires synchronization for concurrent access

    • Java's HashMap implementation uses hashing to distribute keys across buckets

  • Answered by AI
  • Q2. It’s a collection framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Coding Test 

It was online coding test having 3 questions:
- -----/
- -----
- -----

Round 2 - One-on-one 

(1 Question)

  • Q1. Resume, DSA, Cs fundamentals
Round 3 - One-on-one 

(1 Question)

  • Q1. DSA, coding Puzzles, Design Pattern
Round 4 - HR 

(1 Question)

  • Q1. Company & values question

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident while interview thy want to judge your problem solving not your answer of questions

I applied via Cocubes and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Most rounds were regarding English proficiency and 1 round regarding logical reasoning

Round 2 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, honest and humble in the interview. Prepare well for the interview and aptitude tests

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 135 minutes
Round difficulty - Medium

The test window was open from 2:00 p.m. to 05:30 PM IST on 28th of August 2020.We were also given a chance to take a practice test to know about working of the platform .It was a Proctored Assessment .The test platform was HackerEarth and there were around 28 MCQs, 1 programming question, and 2 SQL queries. MCQs majorly focused on OS, DBMS, C++, OOPS concepts.

  • Q1. Two Sum

    You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

    Note:

    We cannot use th...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered by CodingNinjas
  • Q2. SQL Questions

    Write a query to find names of the customers who have purchased less than or equal to one product. Order the output by customer name. Given customer table with customer id and customer name , ...

Round 2 - Video Call 

(3 Questions)

Round duration - 50 minutes
Round difficulty - Medium

It was basically a technical interview. It was conducted around 11:00 a.m. on 31st august 2020. There was only 1 person who was interviewing me though I expected a panel. It started off by the question regarding our college and infrastructure of it and what do I like the most about it etc. Later continued by few technical subjective questions and a code along with a basic query. Technical questions regarding data structures like linked list, Array List , HashMap were asked along with concepts like backtracking were also covered. More about technologies related to projects that I have done were asked which is machine learning. the ratings i earned in online judges were also asked about.

  • Q1. SQL Question

    Query to retrieve the employee name with second maximum salary from given table (there are 3 tables Employee(ID,name), Salary(Esalary,post) , Works For(ID,Salary)).

  • Q2. Sudoku

    You are given a 9x9 sudoku. Your task is to solve sudoku and return the solution.

    A sudoku is a puzzle in which players insert the numbers one to nine into a grid consisting of nine squares subdiv...

  • Ans. BACKTRACKING

    Our approach here will be to check for each empty slot that filling it with which number will not violate any constraint. We will start from the first block and keep on checking for each block using recursion. Consider a function SOLVESUDOKU for this, that accepts as a parameter an ArrayList ARR and  do:

    1. Check, if ARR[i][j] = 0 for each 1<=i<=9 and 1<=j<=9:
      1. Iterate for each 1<= VAL <=9 ...
  • Answered by CodingNinjas
  • Q3. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

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

  • Ans. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer-loop.
    2. For every node of the outer-loop, start the inner loop from head.
    3. If the inner-loop visits the node next to the outer-loop node, then return true, else repeat the process for the next iteration of outer-loop.
    4. If outer-loop reaches the end of list or null, then return false.
    Space ...
  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It is more of a Managerial round. This was not confined to any topic or a subject .It took place around 4:15 p.m. on 31st of August ,2020. 
 

  • Q1. Technical Questions

    How did you feel when you got to know that you were qualified to next round?
    Take me through your resume.
    What is your project about?
    Why did you wanted to do an ML project?
    Why do u choose ...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Software Engineer in HyderabadEligibility criteriaAbove 9 CGPA, female candidates only.Providence Global Center LLP interview preparation:Topics to prepare for the interview - Programming Languages: C,C++,Core JAVA, python(Beginner),Operating Systems, Data Structures and Algorithms , OOPs concepts, Dynamic programming, DBMS(queries), Computer Networks, Software development Methodologies.Time required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Try to get good grip on basics , never jump into advanced concepts unless you are clear with the basic subject.
Tip 2 : Always have every main concept that is included in your core curriculum ( for a cs student) covered, make sure you 
have idea about it and where you can apply it.
Tip 3 : Try to work on and know more about trending or booming technologies.
Tip 4 : Have short term goals when it comes to coding. Consider a topic for once ( like strings , pointers , dp etc.) and try to 
cover maximum variety of problems possible in a reasonable period of time.
Tip 5 : Try to search for tricky pseudo codes online and guess the outputs.
Tip 6 : Give mock interviews before hand and also gather information about the company you have applied to.

Application resume tips for other job seekers

Tip 1 : Do include only known and worked on concepts in your resume .Do not bluff or exaggerate.
Tip 2 : Our resume needs to show that we are flexible and have not just worked on a single domain. So try to do and add 
at least 2 projects to your resume that too of different domains.
Tip 3 : Resume needs to look professional do not include a lot of personal details.
Tip 4 : Career Objective is something that is unique and written on your own and not copied from any website or peers 
resume.
Tip 5 : A single page or 1 and a half page of resume would do good. Include certifications of any forefront technologies if possible

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Reasoning and aptitude questions are given

Round 3 - HR 

(2 Questions)

  • Q1. Tell all concepts of Overloading
  • Ans. 

    Overloading is a concept in programming where multiple functions can have the same name but different parameters.

    • Functions with the same name but different parameters can be defined in a class

    • Overloading allows for flexibility in function usage

    • Example: void print(int num) and void print(string text) are overloaded functions

  • Answered by AI
  • Q2. Tell me about a live example of inheritance
  • Ans. 

    Inheritance in software development allows a class to inherit properties and behaviors from another class.

    • Inheritance allows a subclass to reuse code from a superclass

    • Subclass can also add new functionalities or override existing ones

    • Example: Animal class can be a superclass with properties like name and age, while Dog class can inherit from Animal and add a method bark()

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Tell about the your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare all basic concepts of oops, practice all the concepts

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is MVC architecture?, What is partial view in MVC , state purpose of it & how to define it? , Prepare SQL query
  • Ans. 

    MVC is a software architecture pattern that separates an application into three interconnected components: Model, View, and Controller.

    • MVC stands for Model-View-Controller

    • Model represents the data and business logic

    • View represents the user interface

    • Controller handles user input and updates the model and view accordingly

    • Partial view is a reusable view component that can be rendered within another view

    • It is used to reduc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic things, focus on concepts

Skills evaluated in this interview

Rigel Networks Interview FAQs

How many rounds are there in Rigel Networks Software Developer interview for freshers?
Rigel Networks interview process for freshers usually has 1 rounds. The most common rounds in the Rigel Networks interview process for freshers are Assignment.
How to prepare for Rigel Networks Software Developer interview for freshers?
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 Rigel Networks. The most common topics and skills that interviewers at Rigel Networks expect are Kafka, Python, Activemq, Ansible and Apache Flink.

Tell us how to improve this page.

People are getting interviews through

based on 1 Rigel Networks interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Rigel Networks Software Developer Salary
based on 13 salaries
₹4 L/yr - ₹9 L/yr
6% less than the average Software Developer Salary in India
View more details

Rigel Networks Software Developer Reviews and Ratings

based on 5 reviews

3.3/5

Rating in categories

2.9

Skill development

2.9

Work-Life balance

2.9

Salary & Benefits

2.3

Job Security

2.9

Company culture

2.3

Promotions/Appraisal

2.9

Work Satisfaction

Explore 5 Reviews and Ratings
Talent Acquisition Executive
25 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Software Engineer
14 salaries
unlock blur

₹1.4 L/yr - ₹6.5 L/yr

Software Developer
13 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹4 L/yr - ₹9.8 L/yr

Senior Talent Acquisition Executive
11 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Explore more salaries
Compare Rigel Networks with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview