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

I was interviewed in Aug 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

Round held at 12 noon. There were 2 interviewers

  • Q1. 

    Zig-Zag Array Rearrangement

    You are provided with an array of distinct elements, and your task is to rearrange the array elements in a zig-zag manner. Specifically, for every odd index i, the element ARR[...

  • Q2. 

    Sum Root to Leaf Path Problem

    You are given an arbitrary binary tree consisting of N nodes where each node is associated with an integer value from 1 to 9. Each root-to-leaf path in the tree represents a ...

Round 2 - Video Call 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

Round held at 4pm. There were 2 interviewers

  • Q1. 

    Reverse Linked List in Groups of K

    You are provided with a linked list containing 'N' nodes and an integer 'K'. The task is to reverse the linked list in groups of size K, which means reversing the nodes ...

  • Q2. 

    Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a specified node within the tree, and an integer 'K', find all nodes that are exactly 'K' distance away from the specified node. Retur...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from T John Institute of Technology. Eligibility criteriaAbove 7 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data structures, oops, algorithms, dynamic programming, trees, operating system, DBMSTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : For every topic of DSA do at least 30 question so that you get good grasp on each topic
Tip 2 : Must go through OOPS, DBMS in details as they are very much asked in interview
Tip 3 : Also you should have complete knowledge of the technology used in your personal projects.

Application resume tips for other job seekers

Tip 1 : Your resume must be of 1 page only
Tip 2 : You must have projects in your resume along with the practical impact it is making

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Josh Technology Group Software Developer Intern Interview Questions and Answers

Q1. Longest Alternating Subsequence Problem Given an array ARR of integers, determine the length of the longest alternating subsequence. Input: ARR = {Array elements} Output: Length of the longest alternating subsequence Example: Input: ARR = {... read more
Add answer

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)

Web Developer Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2021

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Online Coding Test on Calyxpod platform. There were 2 coding questions

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Q2. 

    Most Frequent Non-Banned Word Problem Statement

    Given a paragraph consisting of letters in both lowercase and uppercase, spaces, and punctuation, along with a list of banned words, your task is to find th...

Round 2 - Coding Test 

(1 Question)

Round duration - 70 minutes
Round difficulty - Easy

Advance Subjective Round on Calyxpod platform: 5 questions. One question was related to data structures and algorithms. Other 4 were related to Html, CSS and Javascript.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. Akhilesh Das Gupta Institute of Technology & Management. Eligibility criteria8 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Aptitude, DBMS, Web DevelopmentTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be good in aptitude and data structures as it is the 1st/2nd round in most companies.
Tip 2 : Be prepared to explain your projects mentioned in the resume
Tip 3 : Do atleast 2 good projects.

Application resume tips for other job seekers

Tip 1 : Do not write any false information on your resume.
Tip 2 : Keep your resume restricted to one page only.

Final outcome of the interviewRejected

Skills evaluated in this interview

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given Difference Problem Statement You are provided with an integer array ARR of size N along with two integers A and B. Your task is to determine if there exist two distinct indices in the array such that the absolute di... read more
View answer (1)

I was interviewed in Jul 2021.

Round 1 - Coding Test 

Round duration - 180 Minutes
Round difficulty - Medium

General Questions Like - Introduction & How all the round have gone so far

Round 2 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

One-to-One Interview based on DSA and Front-End Technologies including HTML, CSS & JS.

  • Q1. 

    Remove Duplicates Problem Statement

    You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

    ...

  • Ans. Brute Force

    We will traverse the whole array and check if that element previously occurred or not.

     

    The steps are as follows:

    • We initialize a vector ‘ans’ to store the final non-duplicate elements.
    • We will iterate over all the elements of the array, i.e., i = 0 to i = N - 1:
      • We will iterate over all the elements of the array excluding present element, i.e., j = 0 to j = N - 1:
        • If we get such positions such that arr[i] e...
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Hard

One-to-One Interview based on Front-End Technologies including HTML, CSS & JS.

In the last 10-20 minutes, some behavioral questions were asked:
1 How would you grade yourself in the interview so far?
2. You are present in a team and you have to convince your team members & client that your approach is better than the other team members.
3. You are the team leader & you have to point out & convey the negative points of a member of your team without getting him/her hurt.
- At last, they asked me if I have questions for them( I asked 2 questions ) & then the interview ended.

  • Q1. 

    Merge K Sorted Arrays Problem Statement

    Given 'K' different arrays that are individually sorted in ascending order, merge all these arrays into a single array that is also sorted in ascending order.

    Inpu...

  • Ans. Sorting

     

    1. Create an output array ‘RESULT’.
    2. Traverse all the given arrays from start to end and insert all the elements in the output array ‘RESULT’.
    3. Sort the ‘RESULT’ and return it.
    Space Complexity: O(2^n)Explanation:

    O(N * K), Where ‘K’ is the number of arrays and ‘N’ is the average number of elements in every array.

     

    We are using an array/list of size O(N * K) to store all the elements of the ‘K’ arrays/lists. T...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from HMR Institute of Technology and Management. I applied for the job as Frontend Developer in GurgaonEligibility criteriaNo CriteriaJosh Technology Group interview preparation:Topics to prepare for the interview - HTML, CSS, JS, FE-Dev Concepts, Data StructuresTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Make at least 1 full-stack project from scratch.
Tip 2 : Understand each & every concept & topic in depth.

Application resume tips for other job seekers

Tip 1 : Make it authentic.
Tip 2 : Sync your resume with company JD.

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)

I was interviewed before Jun 2021.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Medium

It was an online objective round held at 10:00AM. The platform had proctoring enabled for tab switches, refreshes, etc.

Round 2 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Easy

This round was help at 2pm after the first round. Each round had elimination. Only those who cleared a round were allowed in the next round. This was also a proctored round. It had question on arrays and linked list.

  • Q1. 

    Reverse Linked List in K-Groups

    Given a linked list consisting of 'N' nodes and an integer 'K', reverse the linked list in groups of size K. Specifically, reverse the nodes in each group starting from (1,...

Round 3 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

It was a technical interview round. It was held in the morning. We had to keep our camera on as it was video proctored. The interviewer did not turned on their camera. Initially I was asked for an introduction in which I told about myself and my projects and internships.
The interviewer gave me 2 coding problem. Although I was able to solve them easily, the interviewer seemed to be ready to help if stuck. The interviewer asked for extensive dry run on both the problems.

  • Q1. 

    Merge Two Binary Trees Problem Statement

    You are given the roots of two binary trees, root1 and root2. Merge these two trees into a new binary tree. If two nodes overlap, sum the node values as the new no...

  • Q2. 

    Covid Vaccination Distribution Problem

    As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is...

Round 4 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

It was a technical interview round. It was held in the morning. We had to keep our camera on as it was video proctored. The interviewer did not turned on their camera. Initially I was asked for an introduction in which I told about myself and my projects and internships. He also cross questioned on my projects.
The interviewer gave me 2 coding problem.. The interviewer gave hints whenever I got stuck.

  • Q1. 

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

  • Q2. 

    Divide Chocolates Problem Statement

    Ninja bought chocolate consisting of several chunks, and the sweetness of each chunk is represented in an array ARR. He wants to divide the chocolate into K + 1 parts (...

Round 5 - HR 

Round duration - 25 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaNo criteriaJosh Technology Group interview preparation:Topics to prepare for the interview - OOPS, Trees, Dynamic Programming, Linked List, Databases, Arrays.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice up to the level to able to solve medium level questions.
Tip 2 : Question might get focused on Trees, Linked List and Arrays in the initial rounds.
Tip 3 : If you are going to tell about your projects, make sure to you know what you have done and if done in a team what you have contributed individually.
Tip 4 : During round 3 or HR interviews make sure to highlight your soft skills like communication and leadership by relating to real life project if possible.

Application resume tips for other job seekers

Tip 1 : Have at least two projects in you resume and mention what you achieved.
Tip 2 : Write about your role and responsibilities if mentioning any internships.
Tip 3 : Also mention extra curriculars if any to highlight soft skills.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Josh Technology Group Software Developer Intern Interview Questions and Answers

Q1. Longest Alternating Subsequence Problem Given an array ARR of integers, determine the length of the longest alternating subsequence. Input: ARR = {Array elements} Output: Length of the longest alternating subsequence Example: Input: ARR = {... read more
Add answer

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)

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)

SQA Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Jun 2022

I applied via campus placement at Noida Institute of Engineering & Technology, Greater Noida and was interviewed before Jun 2021. 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 

High level of aptitute which will check ones ability to think in a pressureful env.

Round 3 - Coding Test 

Coding round will be the toughest round as coding questions should be 100% correct for selection towards the next round.
Coding contains all the questions related to DSA, Algorithm, linkedlist trees arrays, DP ques. etc.

Round 4 - HR 

(2 Questions)

  • Q1. How will you fit yourself in JTG's company values.
  • Q2. How will you tackle the problems, Basic background checks, your interest, achievements etc.

Interview Preparation Tips

Topics to prepare for Josh Technology Group SQA Engineer interview:
  • Oops concept
  • SQL
  • Testing
Interview preparation tips for other job seekers - Try to cover the Oops concept,sql queries and be honest while answering any question. If you don't know the answer try to think and push your mind beyond the bars so that your efforts and dedication should be visible to recruiter.

SQA Engineer Interview Questions asked at other Companies

Q1. How you justify customer if any bug is reproduced in production?
View answer (1)

Get interview-ready with Top Josh Technology Group Interview Questions

Front end Developer Interview Questions & Answers

user image Namit Varshney

posted on 17 Aug 2021

I applied via Campus Placement and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 20 questions from HTML and CSS which were basic and moderate in difficulty level.
  • Q2. 10 Questions from JavaScript which were basically from implementation point of view, means that, if we want a certain functionality in our website than what JS code will be required. Questions in JS sectio...

Interview Preparation Tips

Interview preparation tips for other job seekers - I would say prepare JavaScript more than HTML and CSS. Because they will ask more tough questions from JS.

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)

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

It was a coding round.

  • Q1. 

    Multiply Linked Lists Problem Statement

    Your task is to multiply two numbers represented as linked lists and return the resultant multiplied linked list.

    Explanation:

    The multiplied list should be a lin...

  • Q2. 

    Binary Tree Diameter Problem Statement

    Given a binary tree, determine the length of its diameter. The diameter is defined as the longest path between any two end nodes in the tree. The path's length is re...

Round 2 - Coding Test 

(3 Questions)

Round duration - 70 mintues
Round difficulty - Medium

It was an online coding round.

  • Q1. 

    Add Two Numbers Represented by Linked Lists

    Your task is to find the sum list of two numbers represented by linked lists and return the head of the sum list.

    Explanation:

    The sum list should be a linked...

  • Q2. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Q3. 

    Is Height Balanced Binary Tree Problem Statement

    Determine if the given binary tree is height-balanced. A tree is considered height-balanced when:

    1. The left subtree is balanced.
    2. The right subtree is bala...
Round 3 - Video Call 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

In this round, three questions were asked and all of them were based on DSA.

  • Q1. 

    Sum Root to Leaf Numbers

    You are given an arbitrary binary tree consisting of N nodes, each associated with an integer value from 1 to 9. Each root-to-leaf path can be considered a number formed by concat...

  • Q2. 

    Maximum Non-Adjacent Subsequence Sum

    Given an array of integers, determine the maximum sum of a subsequence without choosing adjacent elements in the original array.

    Input:

    The first line consists of an...
  • Q3. 

    Rearrange Linked List Problem Statement

    Given a singly linked list in the form 'L1' -> 'L2' -> 'L3' -> ... 'Ln', your task is to rearrange the nodes to the form 'L1' -> 'Ln' -> 'L2' -> '...

Round 4 - Video Call 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Medium

In this round, three questions were asked and all of them were based on DSA and a little bit about projects.

  • Q1. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Q2. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Q3. 

    Flatten Binary Tree to Linked List

    Transform a binary tree with integer values into a linked list by ensuring the linked list's nodes follow the pre-order traversal order of the binary tree.

    Explanation:

    ...
Round 5 - HR 

Round duration - 20 mintues
Round difficulty - Easy

It was on the next day of the last technical round, I was on the same site as the technical interview round.

Interview Preparation Tips

Eligibility criteriaNo criteriaJosh Technology Group interview preparation:Topics to prepare for the interview - OOPS, DSA, Project,Development, Programming LanguageTime required to prepare for the interview - 9 MonthsInterview preparation tips for other job seekers

Tip 1 : Be strong at your basics.
Tip 2 : Brush up fundamental concepts deeply
Tip 3 : Do at least 2 projects and ask to find answers like why are you choosing this tech stack? why did not you choose its alternatives Know your project in and out because they might ask you for a modification in your project?

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.
Tip 3 : Try to keep a single-page resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Josh Technology Group Software Developer Intern Interview Questions and Answers

Q1. Longest Alternating Subsequence Problem Given an array ARR of integers, determine the length of the longest alternating subsequence. Input: ARR = {Array elements} Output: Length of the longest alternating subsequence Example: Input: ARR = {... read more
Add answer

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Timing was late. Environment was good.

  • Q1. 

    Dijkstra's Shortest Path Problem

    Given an undirected graph with ‘V’ vertices (labeled 0, 1, ... , V-1) and ‘E’ edges, where each edge has a weight representing the distance between two connected nodes (X,...

  • Ans. Using Adjacency Matrix

    The idea is to maintain two arrays, one stores the visited nodes, and the other array stores the distance (element at index ‘i’ denotes the distance from node 0 to node ‘i’). We pick an unvisited minimum distance vertex, then update the distance of all its adjacent vertices considering the path from source to an adjacent vertex to pass through the picked minimum distance vertex. Repeat the process...

  • Answered Anonymously
  • Q2. 

    Spiral Matrix Path Problem Statement

    Given a N x M matrix of integers, print the spiral order of the matrix.

    Input:

    The input starts with an integer 'T' representing the number of test cases. Each test ...

  • Ans. Recursive

    For each boundary, we will use the 4 loops. Now the problem is reduced to print the remaining submatrix which is handled with the help of recursion. Keep track of new dimensions(rows and columns) of the current submatrix which are passed with the help of parameters in each recursion call.
     

    Algorithm:
     

    spiralPrint(matrix[][], startingRow, startingCol, endingRow, endingCol):

    • Check for base cases, i.e. if ...

  • Answered Anonymously
  • Q3. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. Dynamic Programming

    Approach: In the Dynamic programming we will work considering the same cases as mentioned in the recursive approach. In a DP[][] table let’s consider all the possible weights from ‘1’ to ‘W’ as the columns and weights that can be kept as the rows. 
    The state DP[i][j] will denote maximum value of ‘j-weight’ considering all values from ‘1 to ith’. So if we consider ‘wi’ (weight in ‘ith’ row) we can...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteria7 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice Data Structures and algorithms.
Tip 2 : Do 2 projects.
Tip 3 : Practice mcq too.

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Keep it short.

Final outcome of the interviewRejected

Skills evaluated in this interview

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)

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Timing was late. Environment was good.

  • Q1. 

    Dijkstra's Shortest Path Problem Statement

    You are given an undirected graph with V vertices (numbered from 0 to V-1) and E edges. Each edge connects two nodes u and v and has an associated weight represe...

  • Q2. 

    Spiral Matrix Problem Statement

    Given a two-dimensional matrix of integers, print the matrix in a spiral order.

    Input:

    The first line contains an integer 't' indicating the number of test cases. For eac...
  • Q3. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data Structures and algorithms.
Tip 2 : Do 2 projects.
Tip 3 : Practice mcq too.

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Keep it short.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Josh Technology Group Software Developer Intern Interview Questions and Answers

Q1. Longest Alternating Subsequence Problem Given an array ARR of integers, determine the length of the longest alternating subsequence. Input: ARR = {Array elements} Output: Length of the longest alternating subsequence Example: Input: ARR = {... read more
Add answer

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. 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 - Coding Test 

Duration 1 hour
Data structure and algorithms

Round 3 - Coding Test 

Duration 1.5 hour
Data structure and algorithms

Round 4 - One-on-one 

(1 Question)

  • Q1. Given a value find next sibling on right side of it without using global/heap variables
  • Ans. 

    Use a binary tree traversal algorithm to find the next sibling on the right side of a given value.

    • Implement an in-order traversal algorithm to traverse the binary tree

    • Keep track of the parent node and the direction of traversal to find the next sibling on the right side

    • If the given value is the right child of its parent, move up the tree until finding a node that is the left child of its parent

  • Answered by AI

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)

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