Upload Button Icon Add office photos
Engaged Employer

i

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

Relinns Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Relinns Technologies Software Developer Interview Questions and Answers

Updated 14 Jan 2025

Relinns Technologies Software Developer Interview Experiences

2 interviews found

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

I applied via Campus Placement

Round 1 - Coding Test 

3 hours coding test and majorly focus on javascript.

Interview Preparation Tips

Interview preparation tips for other job seekers - There should be more focus on Javascript and development. If you are good at DSA, then that is a cherry on top.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Coding questions from c, java and python
  • Q2. Basic Database related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They asked very basic questions and be confident

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

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 Relinns Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Ans. 

    This question involves creating a specific pattern using loops and conditional statements in programming.

    • Identify the desired pattern (e.g., asterisks, numbers).

    • Use nested loops: outer loop for rows, inner loop for columns.

    • Control the output format with conditional statements.

    • Example: For a pyramid pattern, increase spaces and asterisks in each row.

  • Answered by AI
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. What is the difference between a process and a Thread?
  • Ans. 

    Processes are independent execution units with their own memory, while threads are lightweight and share memory within a process.

    • A process is an independent program in execution, while a thread is a smaller unit of a process.

    • Processes have their own memory space; threads share the same memory space of their parent process.

    • Creating a process is more resource-intensive than creating a thread.

    • Example: A web browser (proce...

  • Answered by AI
  • Q2. What does rest stands?
  • Ans. 

    REST stands for Representational State Transfer, a software architectural style for designing networked applications.

    • REST is based on stateless communication between client and server.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE.

    • Resources are identified by URIs (Uniform Resource Identifiers).

    • Data is typically exchanged in formats like JSON or XML.

    • RESTful APIs are widely used in web services for their simpl...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(12 Questions)

  • Q1. Rate yourself in js, node js, react, MongoDB (separately)
  • Ans. 

    I have a solid understanding of JS, Node.js, React, and MongoDB, with practical experience in building full-stack applications.

    • JavaScript: Proficient in ES6+ features, asynchronous programming, and DOM manipulation. Example: Built a dynamic web app using vanilla JS.

    • Node.js: Experienced in building RESTful APIs and handling server-side logic. Example: Developed a Node.js API for a task management app.

    • React: Skilled in c...

  • Answered by AI
  • Q2. Typeof null, typeof undefined, typeof {}, typeof NaN
  • Q3. What changes came in es6
  • Q4. This keyword, closures, hoisting
  • Q5. Are let and cont variables hoisted?
  • Q6. What is global context
  • Q7. What is temporal deadzone
  • Q8. What is modules? types of modules in nodejs
  • Ans. 

    Modules in Node.js are reusable blocks of code that encapsulate related functionality.

    • Modules in Node.js can be built-in modules like fs (file system) or third-party modules like express.

    • Modules help in organizing code into separate files for better maintainability and reusability.

    • Modules can be imported using the require() function in Node.js.

  • Answered by AI
  • Q9. Index in mongodb, why we need index, is index good or bad?
  • Ans. 

    Indexes in MongoDB improve query performance by allowing the database to quickly locate and retrieve specific documents.

    • Indexes help to speed up query performance by allowing the database to quickly locate specific documents based on the indexed fields.

    • Without indexes, MongoDB would have to perform a collection scan, which can be slow and resource-intensive.

    • Indexes can be created on single fields or compound fields to ...

  • Answered by AI
  • Q10. What are hooks , use of useRef
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. useRef is a hook that allows you to create a mutable object that persists for the lifetime of the component.

    • Hooks are used to add state and lifecycle methods to functional components in React

    • useRef is used to create a mutable reference that persists between renders

    • useRef can be used to access DOM elements directl...

  • Answered by AI
  • Q11. Fs module, http module, worker thread?
  • Q12. Why we use mongoose not mongodb driver?

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Make a div, so when you hover on it a timer should start.
  • Ans. 

    Create a div that starts a timer when hovered over

    • Create a div element in HTML

    • Use CSS to style the div

    • Add JavaScript event listeners for hover

    • Start a timer using JavaScript when hover event is triggered

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Build an OTP component
  • Ans. 

    Build a secure OTP component for authentication purposes.

    • Generate random one-time passwords using a secure algorithm

    • Implement time-based expiration for OTPs

    • Provide a way for users to input and verify OTPs

    • Store OTPs securely to prevent unauthorized access

    • Consider using multi-factor authentication for added security

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Describe your process for writing unit tests.
  • Q2. How do you handle tight deadlines while maintaining code quality?
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Can you walk me through the complex software project you have worked on recently?
  • Q2. How do you design systems for scalability and resilience?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2023. There were 3 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 - Telephonic Call 

(3 Questions)

  • Q1. Introduction and technical questions.
  • Q2. What is the use of JAVA API?
  • Q3. Questions are picked from Leetcode.
Round 3 - Coding Test 

The duration of the test is one hour and four coding questions are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am not able to qualify for the coding round so I have no idea of further process.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Aptitude test question logical reasoning and cheking availablity.

Round 3 - Coding Test 

It's test last test and skill related to C ,Java, HTML

Interview Preparation Tips

Interview preparation tips for other job seekers - My opinion jobseeker is a best platform for developing a job portal and candidate registration for available company .

Relinns Technologies Interview FAQs

How many rounds are there in Relinns Technologies Software Developer interview?
Relinns Technologies interview process usually has 1 rounds. The most common rounds in the Relinns Technologies interview process are Technical and Coding Test.
What are the top questions asked in Relinns Technologies Software Developer interview?

Some of the top questions asked at the Relinns Technologies Software Developer interview -

  1. Coding questions from c, java and pyt...read more
  2. Basic Database related questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Relinns Technologies Software Developer Salary
based on 7 salaries
₹3 L/yr - ₹9 L/yr
39% less than the average Software Developer Salary in India
View more details

Relinns Technologies Software Developer Reviews and Ratings

based on 4 reviews

4.5/5

Rating in categories

4.7

Skill development

4.2

Work-life balance

4.2

Salary

4.0

Job security

4.9

Company culture

3.7

Promotions

4.5

Work satisfaction

Explore 4 Reviews and Ratings
Associate Software Engineer
8 salaries
unlock blur

₹2.8 L/yr - ₹4 L/yr

Software Developer
7 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Software Developer Intern
4 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Digital Marketing Executive
4 salaries
unlock blur

₹2 L/yr - ₹2.5 L/yr

Explore more salaries
Compare Relinns Technologies with

Zidio Development

4.5
Compare

NexTurn

4.1
Compare

Springbord Systems

3.6
Compare

Kanerika Software

4.4
Compare
write
Share an Interview