Upload Button Icon Add office photos

Filter interviews by

RKIT Software - Miracle Accounting Software Full Stack Developer Interview Questions and Answers

Updated 12 Aug 2022

RKIT Software - Miracle Accounting Software Full Stack Developer Interview Experiences

1 interview found

I applied via campus placement at Darshan Institute of Engineering and Technology, Hadala and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was quite easy aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. What is Group by Clouse and many more oops and sql questions
Round 3 - One-on-one 

(1 Question)

  • Q1. What is Truncate and many more like previous round...

Interview Preparation Tips

Topics to prepare for RKIT Software - Miracle Accounting Software Full Stack Developer interview:
  • OOPS
  • Database
Interview preparation tips for other job seekers - Please don't panic and don't rush to first company itself see many check background and review before confirmation or bond sign.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude test with technical and non technical question

Round 2 - Technical 

(1 Question)

  • Q1. What is event loop
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Delete nodes from linkedList if their value matches a certain condition

Round 2 - Technical 

(3 Questions)

  • Q1. Js advanced concepts
  • Q2. Java concurrency
  • Q3. Design patterns
Round 3 - Technical 

(3 Questions)

  • Q1. Implement few design patterns
  • Ans. 

    Implementing design patterns in software development

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it

    • Factory pattern creates objects without specifying the exact class of object that will be created

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated

  • Answered by AI
  • Q2. Questions of microservice architecture
  • Q3. Java 8 tricky coding questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Few coding tasks asked like palindrome number
Factorial
Basic concept tests based on DSA
Like prove that set is unordered

Round 2 - One-on-one 

(1 Question)

  • Q1. If a glass is started filling with water by 1ml at 0sec and gets doubled at every successive second, at what second the glass is half full
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy to crack ill rate 2/5

Round 2 - Coding Test 

It was a short coding round pretty easy

Round 3 - Coding Test 

It was a long coding round i couldn't crack it

Round 4 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Tell me what you know about zoho
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Project, Oops Concept, Java , which technology u have used ? Framework
  • Q2. Framework, Explain Long Polling ,
  • Ans. 

    Long polling is a web technique where the client sends a request to the server and the server holds the connection open until new data is available.

    • Long polling is a variation of the traditional polling technique where the client sends a request to the server and the server keeps the connection open until new data is available.

    • It is often used in web applications to simulate real-time updates without the need for const...

  • Answered by AI
  • Q3. GraphQL Vs Rest
  • Ans. 

    GraphQL is a query language for APIs that allows clients to request only the data they need, while REST is an architectural style for designing networked applications.

    • GraphQL allows clients to request specific data in a single request, reducing over-fetching and under-fetching of data.

    • REST uses multiple endpoints for different resources, leading to multiple requests for related data.

    • GraphQL provides a strongly typed sc...

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Hard

  • Q1. 

    Matrix Rank Calculation

    Given a matrix ARR of dimensions N * M, your task is to determine the rank of the matrix ARR.

    Explanation:

    The rank of a matrix is defined as:

    (a) The maximum number of linearly...
  • Ans. Row Echelon Form

    Approach:

    • The idea is based on converting the given input matrix ARR into row echelon form.
    • Since we know that the rank of the matrix can not be greater than min(N, M). So we will check if N > M then we will transpose the input matrix ARR since we are using row echelon form so the matrix has to be transformed in such a way that in each row all the elements to the left of the diagonal element must be ze...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

This is an elimination round. The interviewer will ask some technical questions and ask to solve some coding questions.
The interview was on Microsoft teams and coding was on codility.

  • Q1. 

    Check Permutation Problem Statement

    Determine if two given strings, 'str1' and 'str2', are permutations of each other.

    Explanation:

    Two strings are permutations of each other if one string's characters ...

  • Ans. Frequency Array Approach
    • The first and the foremost condition for two strings to be the permutations of each other is that the frequency of each element in both of them should be the same.
    • It can be proven by a very simple argument that we are only rearranging the letters, and not adding or deleting any character.
    • So we allocate an array of size 256 (that is the number of distinct ASCIIacharactersterst to store the freque...
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

Interviewers asked some questions regarding System design and then asked me to perform the task

  • Q1. Design a vending machine.
Round 4 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

There were 2 interviewers. This round was basically Distributed systems.

  • Q1. 

    Alternating Largest Problem Statement

    Given a list of numbers, rearrange them such that every second element is greater than its adjacent elements. Implement a function to achieve this rearrangement.

    Inp...

  • Ans. Brute forceSpace Complexity: O(1)Explanation: Time Complexity: O(n)Explanation:
  • Answered Anonymously
Round 5 - Video Call 

Round duration - 60 Minutes
Round difficulty - Hard

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from HMR Institute of Technology and Management. Eligibility criteriaNo criteriaMicrosoft interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, Distributed SystemsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Might ask you to write coding in System Design (Eg : Vending Machine)
Tip 2 : Use star methodology to answer.
Tip 3 : Interact as much as you can with the interviewer and discuss your approach to solve questions.
Tip 4: Start your preparation at least 6 months before application
Tip 5 : Practice Leetcode

Application resume tips for other job seekers

Tip 1 : Resume should match with job description
Tip 2 : Add a summary section and avoid sections like hobbies, strengths 
Tip 3 : Clearly mention your skills

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 110 Minutes
Round difficulty - Medium

Aptitude and coding and Ouput MCQ

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered Anonymously
Round 2 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

There were 2 interviewers. I was asked to make a presentation earlier which I had to present in the interview.

Questions on SQL, Javascript, Linux

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from HMR Institute of Technology and Management. Eligibility criteriaNo CriteriaAmdocs interview preparation:Topics to prepare for the interview - Projects should be good and engaging, Data base, SQL, LinuxTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Keep the conversation interesting
Tip 2 : Prepare thoroughly
Tip 3 : Look for interviewers on LinkedIn

Application resume tips for other job seekers

Tip 1 : Projects should be engaging
Tip 2 : Experiences should be on top

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

Binary tree fin the no of leaf node

  • Q1. System design on Netflix
  • Ans. 

    System design for Netflix

    • Use microservices architecture

    • Implement a distributed caching system

    • Utilize content delivery networks (CDNs)

    • Implement recommendation algorithms

    • Ensure high availability and fault tolerance

    • Implement user authentication and authorization

    • Handle large-scale data storage and processing

    • Implement efficient search functionality

  • Answered by AI
  • Q2. Talk about hld design
  • Ans. 

    HLD design refers to high-level design, which involves creating an architectural blueprint for a software system.

    • HLD design focuses on the overall structure and components of a system.

    • It includes defining the system's modules, interfaces, and interactions.

    • HLD design helps in understanding the system's functionality and how different components work together.

    • It provides a roadmap for the development process and helps in...

  • Answered by AI
  • Q3. Talk aboit lld design
  • Q4. Da algo for queue

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Assignment 

A piece of paper was given to me and I need to tell the some basics of computer languages

Round 2 - Group Discussion 

How can I lead my team

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient and answer like UPSC Aspirant

RKIT Software - Miracle Accounting Software Interview FAQs

How many rounds are there in RKIT Software - Miracle Accounting Software Full Stack Developer interview?
RKIT Software - Miracle Accounting Software interview process usually has 3 rounds. The most common rounds in the RKIT Software - Miracle Accounting Software interview process are Technical, One-on-one Round and Aptitude Test.
What are the top questions asked in RKIT Software - Miracle Accounting Software Full Stack Developer interview?

Some of the top questions asked at the RKIT Software - Miracle Accounting Software Full Stack Developer interview -

  1. What is Group by Clouse and many more oops and sql questi...read more
  2. What is Truncate and many more like previous round...read more

Tell us how to improve this page.

RKIT Software - Miracle Accounting Software Full Stack Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

5.0

Salary

5.0

Job security

3.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Compare RKIT Software - Miracle Accounting Software with

Bosch Global Software Technologies

4.0
Compare

Amdocs

3.8
Compare

Automatic Data Processing (ADP)

4.0
Compare

Carelon Global Solutions

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