Upload Button Icon Add office photos

Filter interviews by

Josh Technology Group Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Josh Technology Group Interview Questions and Answers

View all 93 questions

Josh Technology Group Interview Experiences

Popular Designations

67 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Sep 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 - Aptitude Test 

It was aptitude + oops concpets mcqs

Round 3 - Coding Test 

This round had 3 dsa questions (tree, linked list, array) and 1 output based answer(bst)

Round 4 - Coding Test 

This was another coding round of higher difficulty (linked list, tree)

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA concepts like tree and linked list properly

Top Josh Technology Group Software Developer Intern Interview Questions and Answers

Q1. Longest Alternating SubsequenceYou are given an array ‘ARR’ of integers. Your task is to find the length of the longest alternating subsequence. Note: A sequence a1, a2, .... an is called an alternating sequence if its elements satisfy one ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - MCQ 

(1 Question)

  • Q1. IT WAS MCQ CODING OUTPUT BASED ROUND IN WHICH TOTAL 45 QUESTION
Round 2 - SUBJECTIVE ROUND 

(1 Question)

  • Q1. IT WAS SUBJECTIVE CODING ROUND IN WHICH 1 OUTPUT BASED AND 3 CODING ROUND
Round 3 - Coding Test 

IT WAS 3RD CODING ROUND IN WHICH 3 CODING QUESTIONS AND DURATION 75MIN

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPRARE FOR
LINKEDLIST
TREE
AND ADVANCE DSA

Top Josh Technology Group Software Developer Interview Questions and Answers

Q1. Validate Binary Tree NodesYou are given ‘N’ binary tree nodes numbered from 0 to N - 1 where node ‘i’ has two children LEFT_CHILD[i] and RIGHT_CODE[i]. Return ‘True’ if and only if all the given nodes form exactly one valid binary tree. If ... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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 

Questions related to input and output.

Round 3 - Coding Test 

Subjective Round:4 questions related to coding.

Round 4 - One-on-one 

(1 Question)

  • Q1. 3 Interview round and finally HR round

Top Josh Technology Group Software Developer Interview Questions and Answers

Q1. Validate Binary Tree Nodes Problem You are provided with 'N' binary tree nodes labeled from 0 to N-1, where node i has two potential children, recorded in the LEFT_CHILD[i] and RIGHT_CHILD[i] arrays. Determine whether all the nodes given co... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test consisted of around 45 MCQs from basic topics like C, C++, OOPS

Round 2 - Coding Test 

2nd round had 3 medium level (Leetcode) questions and 1 output question: 1. Level order traversal, 2. count zeros(not sure), 3. Linked List traversal related.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA topics like Linked List and Tree very thoroughly.

Top Josh Technology Group Software Developer Intern Interview Questions and Answers

Q1. Longest Alternating SubsequenceYou are given an array ‘ARR’ of integers. Your task is to find the length of the longest alternating subsequence. Note: A sequence a1, a2, .... an is called an alternating sequence if its elements satisfy one ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Josh Technology Group interview questions for popular designations

 Software Developer

 (16)

 Front end Developer

 (10)

 Software Developer Intern

 (9)

 Software Engineer

 (6)

 Frontend Developer Intern

 (3)

 Full Stack Developer

 (2)

 Software Development Engineer Intern

 (2)

 Web Developer

 (2)

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

I applied via campus placement at Guru Teg Bahadur Institute of Technology, Delhi and was interviewed in Oct 2022. There were 3 interview rounds.

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 - Coding Test 

They would ask searching sorting , binary search in first round

Round 3 - Technical 

(2 Questions)

  • Q1. Most of question were from Tree and DP
  • Q2. Delete a node from a binary tree.
  • Ans. 

    Delete a node from a binary tree.

    • Find the node to be deleted

    • If the node has no children, simply delete it

    • If the node has one child, replace it with its child

    • If the node has two children, find the minimum value in its right subtree, replace the node with that value, and delete the minimum value node

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have firm knowlege of time complexity and Data structure

Skills evaluated in this interview

Top Josh Technology Group Software Developer Interview Questions and Answers

Q1. Validate Binary Tree NodesYou are given ‘N’ binary tree nodes numbered from 0 to N - 1 where node ‘i’ has two children LEFT_CHILD[i] and RIGHT_CODE[i]. Return ‘True’ if and only if all the given nodes form exactly one valid binary tree. If ... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Get interview-ready with Top Josh Technology Group Interview Questions

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

Questions related to frontend developer

Round 3 - One-on-one 

(2 Questions)

  • Q1. Describe Yourself and share according to your college journey
  • Q2. Questions related to frontend and focus more on css and react

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare properly with frontend questions and mainly frontend react questions.

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic English Comprehension, EQL questions and writing an email to assess content.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic on the basis of CV
  • Q2. Experience from the past roles.
  • Ans. 

    I have over 5 years of experience in project management, client relations, and team leadership.

    • Managed multiple projects simultaneously, ensuring timely delivery and client satisfaction

    • Led cross-functional teams to achieve project goals and milestones

    • Developed and maintained strong relationships with clients, resulting in repeat business and referrals

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Josh Technology Group Engagement Manager interview:
  • Spoken English
  • Written Communication

Engagement Manager Interview Questions asked at other Companies

Q1. He laid out the problem. There’s an airport somewhere in London, which has 4 terminals and 2 runways. The airport authorities are planning to build a 5th terminal. Would it make sense?
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 19 May 2022

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

It was just after the first round in the morning

  • Q1. 

    Huffman Coding Challenge

    Given an array ARR of integers containing 'N' elements where each element denotes the frequency of a character in a message composed of 'N' alphabets of an alien language, your ta...

  • Ans. Optimized Solution

    We will be dividing our solution into three parts for better understanding. We will use a Min-Heap to build a binary tree and then traverse the binary tree to assign Huffman codes to each element.

     

     

    1. Understanding the need of using a Min-Heap 

    A basic idea would be to sort the frequency array and repeatedly give the smallest not used code to the character having maximum frequency. This ide...

  • Answered Anonymously
Round 2 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

1 hr after the second round got over and results were announced in the morning.

  • 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 3 - Face to Face 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

10 A.M in the morning.
The interviewers were very knowledgeable and humble

  • Q1. 

    Unique Element In Sorted Array

    Nobita wants to impress Shizuka by correctly guessing her lucky number. Shizuka provides a sorted list where every number appears twice, except for her lucky number, which a...

  • Ans. 

    Step 1 : I told them brute force approach.
    Step 2 : Told about bitmasking approach.
    Step 3 : I them them Binary Search approach(the most optiimsed one)
    Step 4 : They told me to code it and run test cases.

  • Answered Anonymously
  • Q2. 

    Find Nodes at Distance K in a Binary Tree

    Your task is to find all nodes that are exactly a distance K from a given node in an arbitrary binary tree. The distance is defined as the number of edges between ...

  • Ans. 

    Step 1 : I told them brute force approach.
    Step 2 : Told them about Binary tree approach
    Step 3 : They told me to code it and dry run and run test cases.

  • Answered Anonymously
Round 4 - Face to Face 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was after the first technical interview round.
Got a mail for the second interview round .
Timings approx 12 AM

  • Q1. 

    Remove BST Keys Outside Given Range

    Given a Binary Search Tree (BST) and a specified range [min, max], your task is to remove all keys from the BST that fall outside this range. The BST should remain vali...

  • Ans. 

    Step 1 : Brute force array conversion approach.
    Step 2 : Delete a node in a tree approach.
    Step 3 : Optimised the above approach to delete only specified nodes to achieve the answer
    Step 4 : Coded the approach and ran the test cases provided

  • Answered Anonymously
  • Q2. 

    Inorder Successor in a Binary Tree

    Given an arbitrary binary tree and a specific node within that tree, determine the inorder successor of this node.

    Explanation:

    The inorder successor of a node in a bi...

  • Ans. Inorder Traversal
    • The fact that all the data values are unique makes the solution look very intuitive.
    • We can simply store the inorder traversal of the given tree in some data structure, most probably arrays, and find the element present after the given node in the array.
    • For inorder traversal, we can write a simple recursion code, where for every node, its left subtree is visited recursively, and then the node is visited...
  • Answered Anonymously
Round 5 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

Got a call from Hr after clearance of the first 2 rounds.
Timing were 5:30 P.M

Interview Preparation Tips

Eligibility criteria7+ CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - DBMS, OS, OOPS, Data Structure, Array, String, Bit manipulation, BInary Search, Sorting, Number Theory Linked List, Trees, Graph, DPTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus the most on Data Structure topics and practice atleast 300 medium level ques (min 2 approaches for each qs)
Tip 2 : Have a strong grip on Core Subjects i.e OS, DBMS, OOPS, CN, System Design(for big mnc's)
Tip 3 : Learn any good development framework and make min 2 good projects with that and try to do any 1 or 2 min intern to put it in your resume.

Application resume tips for other job seekers

Tip 1 : Keep it short and to the point
Tip 2 : Have good knowledge of every single thing you mentioned there.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Josh Technology Group Intern Interview Questions and Answers

Q1. Huffman CodingYou are given an array 'ARR' of Integers having 'N' elements. The array contains an encoded message. For each index 'i', 'ARR[i]' denotes the frequency of the 'i'th' character in the message. The characters are of an alien lan... read more
View answer (2)

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Last Stone Weight Problem Explanation

    Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them toge...

  • Ans. 

    This question is about finding the weight of the last stone after repeatedly smashing the two heaviest stones together.

    • Sort the array of stone weights in descending order.

    • Repeatedly smash the two heaviest stones until there is at most 1 stone left.

    • If there is 1 stone left, return its weight. Otherwise, return 0.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Design a sign-in page using only HTML and CSS.
  • Ans. 

    Design a signin page using HTML and CSS only

    • Create a form element with input fields for username and password

    • Style the form using CSS to make it visually appealing

    • Add a submit button for users to sign in

    • Consider adding error messages or validation for user input

    • Use CSS to make the page responsive for different screen sizes

  • Answered by AI
Round 3 - Assignment 

(1 Question)

Round duration - 7 days
Round difficulty - Medium

  • Q1. How would you design and develop a to-do list application using local storage?
  • Ans. 

    A todo list application using localstorage.

    • Use HTML, CSS, and JavaScript to create the user interface.

    • Use the localstorage API to store and retrieve todo items.

    • Implement features like adding, editing, and deleting todo items.

    • Display the list of todo items and their status.

    • Allow users to mark todo items as completed or incomplete.

  • Answered by AI
Round 4 - Video Call 

Round duration - 120 Minutes
Round difficulty - Easy

Round 5 - Video Call 

(9 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Questions related to react and high level javascript?

  • Q1. What is hoisting in JavaScript?
  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope.

    • Hoisting applies to both variable and function declarations.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. What is memoization in JavaScript?
  • Ans. 

    Memoization is a technique in JavaScript to cache the results of expensive function calls for future use.

    • Memoization improves performance by avoiding redundant calculations

    • It is commonly used in recursive functions or functions with expensive computations

    • The cached results are stored in a data structure like an object or a map

    • Memoization can be implemented manually or using libraries like Lodash or Memoizee

  • Answered by AI
  • Q3. What is an IIFE (Immediately Invoked Function Expression) in JavaScript?
  • Ans. 

    IIFE stands for Immediately Invoked Function Expression. It is a JavaScript function that is executed as soon as it is defined.

    • IIFE is a way to create a function expression and immediately invoke it.

    • It helps in creating a private scope for variables and functions.

    • It is commonly used to avoid polluting the global namespace.

    • IIFE can be written using different syntaxes like using parentheses, function declaration, or arro

  • Answered by AI
  • Q4. What are promises in JavaScript?
  • Ans. 

    Promises in JavaScript are objects that represent the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations such as fetching data from a server or reading a file.

    • They simplify the process of writing asynchronous code by providing a more structured approach.

    • Promises have three states: pending, fulfilled, or rejected.

    • They can be chained together using methods like...

  • Answered by AI
  • Q5. What is the Temporal Dead Zone in JavaScript?
  • Ans. 

    Temporal Dead Zone is a behavior in JavaScript where variables are not accessible before they are declared.

    • Temporal Dead Zone occurs when accessing variables before they are declared

    • Variables in the Temporal Dead Zone cannot be accessed or assigned

    • The Temporal Dead Zone is a result of JavaScript's hoisting behavior

    • Example: accessing a variable before it is declared will throw a ReferenceError

  • Answered by AI
  • Q6. What are arrow functions in JavaScript?
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions have a shorter syntax compared to regular functions.

    • They do not have their own 'this' value.

    • They do not have the 'arguments' object.

    • They cannot be used as constructors with the 'new' keyword.

    • They are commonly used in functional programming and with array methods like 'map' and 'filter'.

  • Answered by AI
  • Q7. What is JSX?
  • Ans. 

    JSX is a syntax extension for JavaScript that allows you to write HTML-like code in your JavaScript files.

    • JSX stands for JavaScript XML

    • It is commonly used with React to define the structure and appearance of components

    • JSX elements are transpiled into regular JavaScript function calls

    • It allows you to write HTML-like code with JavaScript expressions embedded within curly braces

    • Example:

      Hello, {name}!

  • Answered by AI
  • Q8. What are higher-order functions in JavaScript?
  • Ans. 

    Higher order functions are functions that can take other functions as arguments or return functions as their results.

    • Higher order functions can be used to create more flexible and reusable code.

    • They enable functional programming paradigms.

    • Examples of higher order functions include map, filter, and reduce in JavaScript.

  • Answered by AI
  • Q9. What is the virtual DOM in JavaScript?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM that allows efficient updates and rendering in JavaScript frameworks.

    • Virtual DOM is a concept used in JavaScript frameworks like React.

    • It is a lightweight copy of the actual DOM tree.

    • Changes made to the virtual DOM are compared with the actual DOM to determine the minimal updates needed.

    • This helps in efficient rendering and improves performance.

    • Virtual DOM allows deve...

  • Answered by AI
Round 6 - HR 

Round duration - 35 Minutes
Round difficulty - Easy

Happend around 08:30 pm

Interview Preparation Tips

Eligibility criteriaNo criteria.Josh Technology Group interview preparation:Topics to prepare for the interview - HTML, CSS, Javascript, React, C/C++, DSATime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Internet fundamentals - HTTP, HTTPs, CDNs, DNS etc.
Tip 2 : Web Storage - localstorage and session storage. Know how the cookies work and what does HttpOnly, same-site, secure mean in the context of cookies.
Tip 3 : HTML - Get yourself familiar with semantic HTML elements, different types of attribute, HTML selectors and their precedence etc.
Tip 4 : Learn advance level Javascript.
Tip 5 : It will be better to have experience in any frontend frameworks/libraries, for example React.js.
Tip 6 : You should be able to solve easy level DSA(array and linked-list) and problem solving related questions.

Application resume tips for other job seekers

Tip 1 : Have some development projects on resume.
Tip 2 : Highlight your frontend development skills in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Josh Technology Group Frontend Developer Intern Interview Questions and Answers

Q1. Last Stone Weight Problem Explanation Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them together. Assume the stones have weights... read more
View answer (1)

Frontend Developer Intern Interview Questions asked at other Companies

Q1. Last Stone Weight Problem Explanation Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them together. Assume the stones have weights... read more
View answer (1)

I was interviewed in May 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

You are given three ds coding questions which you have to solve within 90 mins.
The questions are easy to medium level for this round

  • Q1. 

    Non-Decreasing Array Problem Statement

    Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element.

    An array is defined as non-de...

  • Ans. 

    The solution checks if an integer array can become non-decreasing by modifying at most one element.

    • Iterate through the array and check if there are more than one decreasing pairs of elements.

    • If there are more than one decreasing pairs, return false.

    • If there is only one decreasing pair, check if modifying one of the elements can make the array non-decreasing.

    • If modifying the element at index i-1 or i can make the array ...

  • Answered by AI
  • Q2. 

    Sort Linked List Based on Actual Values

    You are given a Singly Linked List of integers that is initially sorted according to the absolute values of its elements. Your task is to sort this Linked List base...

  • Ans. 

    The task is to sort a singly linked list based on actual values instead of absolute values.

    • Traverse the linked list and store the values in an array

    • Sort the array using any sorting algorithm

    • Create a new linked list using the sorted array

    • Return the new linked list

  • Answered by AI
  • Q3. 

    Diameter of a Binary Tree Problem Statement

    Given a binary tree, return the length of its diameter. The diameter of a binary tree is defined as the length of the longest path between any two nodes in the ...

  • Ans. 

    The diameter of a binary tree is the length of the longest path between any two end nodes in the tree.

    • The diameter of a binary tree can be calculated by finding the maximum of the following three values: 1) the diameter of the left subtree, 2) the diameter of the right subtree, and 3) the longest path that passes through the root node.

    • To find the diameter of a binary tree, we can use a recursive approach. We calculate ...

  • Answered by AI
Round 2 - Assignment 

Round duration - N/A
Round difficulty - Medium

Round 3 - Video Call 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Hard

This round focus on advanced Js concepts and the tech stack I used in my projects.

  • Q1. 

    Find Unique Element in Array

    You have been provided an integer array/list ARR of size N. Here, N is equivalent to 2M + 1 where each test case has M numbers appearing twice and one number appearing exactly...

  • Ans. 

    The task is to find the unique number in an array where all other numbers occur twice.

    • The array size is given by N = 2M + 1, where M is the number of elements occurring twice.

    • Loop through the array and use a hashmap to count the occurrences of each number.

    • Return the number with a count of 1, as it is the unique number.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

It was a late night round as i have already had the previous 3 rounds at the same day. The HR asked about my experience regarding the previous rounds and also some situation based questions.

Interview Preparation Tips

Eligibility criteria7 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Semantic HTML, Core concepts of CSS, SASS, JavaScriptTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Have your basics storing rather than focusing on react or any other similar frameworks
Tip 2 : Practice DOM manipulation using JS as in the assignment round you'll have to code an assignment with your screen shared
Tip 3 : Practice advance JS concepts like prototyping, promises, etc.
Tip 4 : Study your projects thoroughly, what tech you used where and why
Tip 5 : Don't think that if you are unable to answer some output based questions or to code some question so you will not get selected. I myself have multiple wrong answers to tricky js output based questions but then the interviewer asks you to execute the question and explain why this has happened. If you are able to explain the correct reason for the answer you are good to go.

Application resume tips for other job seekers

Tip 1 : Mention your best projects along with Tech stack used so the interviewer can see what all tech stack you have worked on
Tip 2 : Do not put false things on resume, as the interviewer will definitely ask cross questions and you will get tricked.
Tip 3 : Don't worry about the resume too much, you are the main focus of the interview and not the resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Josh Technology Group Front end Developer Interview Questions and Answers

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

Josh Technology Group Interview FAQs

How many rounds are there in Josh Technology Group interview?
Josh Technology Group interview process usually has 2-3 rounds. The most common rounds in the Josh Technology Group interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Josh Technology Group 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 Josh Technology Group. The most common topics and skills that interviewers at Josh Technology Group expect are Gaming, HTML, SDLC, JIRA and MySQL.
What are the top questions asked in Josh Technology Group interview?

Some of the top questions asked at the Josh Technology Group interview -

  1. Regression test cases for any applicat...read more
  2. What is software development life cycle and which steps are followi...read more
  3. Given a value find next sibling on right side of it without using global/heap v...read more
How long is the Josh Technology Group interview process?

The duration of Josh Technology Group interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Josh Technology Group Interview Process

based on 50 interviews

Interview experience

3.8
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Josh Technology Group

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Cyient Interview Questions
3.7
 • 284 Interviews
View all

Josh Technology Group Reviews and Ratings

based on 75 reviews

3.0/5

Rating in categories

3.8

Skill development

2.5

Work-life balance

3.2

Salary

3.0

Job security

3.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 75 Reviews and Ratings
Software Developer
98 salaries
unlock blur

₹6.8 L/yr - ₹19.5 L/yr

Front end Developer
50 salaries
unlock blur

₹6.3 L/yr - ₹16.2 L/yr

Senior Software Developer
41 salaries
unlock blur

₹8.2 L/yr - ₹24 L/yr

Software Quality Analyst
24 salaries
unlock blur

₹4.2 L/yr - ₹7.5 L/yr

Software Engineer
20 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Explore more salaries
Compare Josh Technology Group 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