Upload Button Icon Add office photos
Premium Employer

i

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

Intellect Design Arena Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Intellect Design Arena Full Stack Developer Interview Questions and Answers

Updated 22 Apr 2024

Intellect Design Arena Full Stack Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between == and .equals in java
  • Ans. 

    In Java, == is used for comparing reference equality, while .equals() is used for comparing object equality.

    • == compares memory addresses of two objects

    • .equals() compares the actual contents of the objects

    • For primitive data types, == compares values, while for objects, it compares references

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) wi

  • Answered by AI
  • Q2. What is difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and one null key, while HashTable does not allow null keys or values.

    • HashMap is faster than HashTable as it is non-synchronized, but HashTable is safer for use in multi-threaded environments.

    • HashMap is part of the Java Collections Framework, while HashTable is a legacy class.

  • Answered by AI
  • Q3. HashMap is not synchronized so its allow the null values and one null key on other hand hash table not null values
  • Ans. 

    HashMap allows null values and one null key, while HashTable does not allow null values.

    • HashMap allows null values and one null key, while HashTable does not allow null values.

    • HashMap is not synchronized, while HashTable is synchronized.

    • HashMap is faster than HashTable.

    • Example: HashMap map = new HashMap<>(); map.put(null, "value");

    • Example: HashTable table = new HashTable<>(); table.put("

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Questions about Nestjs, React and AI
  • Q2. Singlet pattern of NestJS
  • Ans. 

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

    • Use the @Injectable() decorator to mark a class as a singleton in NestJS.

    • Inject the singleton class into other classes using the constructor.

    • The instance of the singleton class will be shared across the application.

  • Answered by AI

Skills evaluated in this interview

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 LinkedIn and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is the difference between aim, ambition, goal
  • Q2. Who is chairman of isro
  • Ans. 

    The current chairman of ISRO is K. Sivan.

    • K. Sivan is an Indian space scientist and the current chairman of ISRO.

    • He has been associated with ISRO for over three decades and has contributed to several missions.

    • Under his leadership, ISRO has achieved several milestones, including the successful launch of Chandrayaan-2.

    • He is also known as the 'Rocket Man' of India.

  • Answered by AI
  • Q3. Who is the founder of iiit 's in andra and telangana
  • Q4. Full form of unesco
  • Ans. 

    UNESCO stands for United Nations Educational, Scientific and Cultural Organization.

    • UNESCO is a specialized agency of the United Nations.

    • It was established in 1945 with the aim of promoting peace and security through international cooperation in education, science, and culture.

    • UNESCO is responsible for designating and preserving World Heritage Sites, promoting literacy and education, and supporting cultural diversity.

    • So...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fell free and enjoy the interactions with interview panel and interviewers

I applied via Company Website and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is LinkedList ?
  • Ans. 

    LinkedList is a linear data structure where each element is a separate object with a pointer to the next element.

    • LinkedList is a collection of nodes that contain data and a reference to the next node.

    • It allows dynamic memory allocation and efficient insertion/deletion of elements.

    • Traversal in LinkedList is slower than arrays as it requires sequential access.

    • Examples include Singly LinkedList, Doubly LinkedList, and Cir

  • Answered by AI
  • Q2. Explain stack and queue
  • Ans. 

    Stack is a data structure that follows LIFO (Last In First Out) principle. Queue is a data structure that follows FIFO (First In First Out) principle.

    • Stack is like a stack of plates where the last plate added is the first one to be removed

    • Push and pop operations are used to add and remove elements from the stack

    • Examples of stack include browser history, undo-redo operations

    • Queue is like a queue of people waiting in lin...

  • Answered by AI
  • Q3. Binary tree

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare Ds Algo & System design

Skills evaluated in this interview

Intellect Design Arena Interview FAQs

How many rounds are there in Intellect Design Arena Full Stack Developer interview?
Intellect Design Arena interview process usually has 1 rounds. The most common rounds in the Intellect Design Arena interview process are Technical.
How to prepare for Intellect Design Arena Full Stack 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 Intellect Design Arena. The most common topics and skills that interviewers at Intellect Design Arena expect are Java, Javascript, Hibernate, J2Ee and Spring.
What are the top questions asked in Intellect Design Arena Full Stack Developer interview?

Some of the top questions asked at the Intellect Design Arena Full Stack Developer interview -

  1. HashMap is not synchronized so its allow the null values and one null key on ot...read more
  2. what is difference between == and .equals in j...read more
  3. What is difference between hash map and hash ta...read more

Tell us how to improve this page.

Intellect Design Arena Full Stack Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Intellect Design Arena Full Stack Developer Salary
based on 33 salaries
₹3 L/yr - ₹8.8 L/yr
30% less than the average Full Stack Developer Salary in India
View more details

Intellect Design Arena Full Stack Developer Reviews and Ratings

based on 13 reviews

4.5/5

Rating in categories

4.4

Skill development

4.3

Work-life balance

4.5

Salary

4.9

Job security

4.4

Company culture

4.5

Promotions

4.3

Work satisfaction

Explore 13 Reviews and Ratings
Consultant
1.5k salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Associate Consultant
1k salaries
unlock blur

₹1.8 L/yr - ₹11 L/yr

Team Lead
502 salaries
unlock blur

₹7.2 L/yr - ₹24 L/yr

Senior Project Leader
425 salaries
unlock blur

₹8.9 L/yr - ₹28 L/yr

Product Engineer
341 salaries
unlock blur

₹2.8 L/yr - ₹9.7 L/yr

Explore more salaries
Compare Intellect Design Arena with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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