Upload Button Icon Add office photos

Josh Technology Group

Compare button icon Compare button icon Compare

Filter interviews by

Josh Technology Group Interview Questions and Answers for Freshers

Updated 25 Jun 2025
Popular Designations

67 Interview questions

A Software Developer Intern was asked 3mo ago
Q. Given a linked list, how do you ensure that it is in decreasing order?
Ans. 

Check if a linked list is sorted in decreasing order by comparing adjacent nodes.

  • Traverse the linked list from head to tail.

  • For each node, compare its value with the next node's value.

  • If any node's value is less than the next node's value, the list is not in decreasing order.

  • Example: For list 5 -> 3 -> 2, it is in decreasing order.

  • Example: For list 5 -> 6 -> 2, it is not in decreasing order.

View all Software Developer Intern interview questions
A Software Developer Intern was asked 3mo ago
Q. Given a random node in a BST, how do you check if a given element is part of the tree?
Ans. 

Check if a given element exists in a Binary Search Tree (BST) node using its properties.

  • A BST is structured such that for any node, left children are smaller and right children are larger.

  • To find an element, start at the given node and compare it with the node's value.

  • If the element is equal to the node's value, it exists in the tree.

  • If the element is less, recursively search the left subtree; if greater, search t...

View all Software Developer Intern interview questions
A Front end Developer was asked
Q. Implement a live coding round to build a small CRUD-based application.
Ans. 

Creating a simple CRUD app using HTML, CSS, and JavaScript to manage a list of items.

  • Set up a basic HTML structure with a form for input.

  • Use JavaScript to handle form submission and add items to an array.

  • Implement functions to read, update, and delete items from the array.

  • Display the list of items dynamically on the webpage.

  • Use local storage to persist data across page refreshes.

View all Front end Developer interview questions
A Software Developer Intern was asked
Q. 

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

Ans. 

Merge two binary trees by summing overlapping nodes and retaining non-null nodes.

  • Traverse both trees simultaneously in preorder fashion

  • If both nodes are not null, sum their values for the new node

  • If one node is null, use the non-null node as the new node

  • Recursively merge the left and right subtrees

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

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

Ans. 

The task is to maximize the total sweetness of the part that Ninja will get by dividing chocolates into K + 1 parts.

  • Iterate through the array of sweetness values to find the maximum sweetness value.

  • Use binary search to find the maximum sweetness that Ninja can obtain by making cuts.

  • Consider the constraints while implementing the solution.

  • Handle multiple test cases efficiently.

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

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

Ans. 

Reverse a linked list in groups of size K

  • Iterate through the linked list in groups of size K

  • Reverse each group of nodes

  • Handle cases where the last group has fewer nodes than K

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

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

Ans. 

Maximize vaccines administered on a specific day while following certain rules.

  • Distribute vaccines evenly over the given number of days.

  • Ensure the difference in vaccines administered between consecutive days is at most 1.

  • Maximize the number of vaccines administered on the specified day.

  • Keep track of the total number of vaccines administered to not exceed the maximum limit.

  • Implement a function to calculate the maxi...

View all Software Developer Intern interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. 

Matrix Chain Multiplication Problem

Given 'N' 2-dimensional matrices and an array ARR of length N + 1, where the first N integers denote the number of rows in each matrix and the last integer represents th...

Ans. 

Find the minimum number of multiplication operations required to multiply a series of matrices together.

  • Use dynamic programming to solve this problem efficiently.

  • Create a 2D array to store the minimum number of operations needed to multiply matrices.

  • Iterate through different combinations of matrices to find the optimal solution.

  • Consider the dimensions of the matrices to determine the number of operations required.

  • ...

View all Software Developer interview questions
A Software Developer was asked
Q. 

K Largest Elements Problem Statement

You are given an unsorted array containing 'N' integers. Your task is to find the 'K' largest elements from this array and return them in non-decreasing order.

Input:

Th...
Ans. 

Yes, the problem can be solved in less than O(N*log(N)) time complexity using the Quick Select algorithm.

  • Implement Quick Select algorithm to find the Kth largest element in O(N) time complexity.

  • Partition the array around a pivot element and recursively search in the left or right partition based on the position of the pivot.

  • Once you find the Kth largest element, return all elements greater than or equal to it in n...

View all Software Developer interview questions
🔥 Asked by recruiter 3 times
A Software Developer was asked
Q. 

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. 

Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

  • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

  • Iterate through each item and update the array based on whether including the item would increase the total value.

  • The final value in the array at index W will be the maximum value that can be stolen.

View all Software Developer interview questions

Josh Technology Group Interview Experiences for Freshers

24 interviews found

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 8 interview rounds.

Round 1 - Assignment 

**1st Round: Online Assessment**
The first elimination round consisted of an online assessment focused on HTML, CSS, and JavaScript. The questions ranged from basic to advanced, with a significant emphasis on JavaScript concepts like promises and async operations. This round included negative marking, so accuracy was key.

Round 2 - Coding Test 

**2nd Round: DSA Online Test**
The second elimination round tested Data Structures and Algorithms (DSA). It involved two compulsory problems: one focused on string manipulation and the other on array manipulation, both requiring solutions with O(1) space complexity.

Round 3 - Aptitude Test 

**3rd Round: Personality Test**
This non-elimination round assessed grammar and communication skills. It included:
- Fill-in-the-blank questions focused on subject-verb agreement.
- Sentence repetition tasks where we had to listen and repeat the given sentences.
- Audio-based tasks requiring us to repeat sentences after listening to them.

Round 4 - Assignment 

**4th Round: Home Assignment**
In this elimination round, we were tasked with cloning a webpage using only HTML, CSS, and JavaScript. The goal was to create a pixel-perfect design without the use of frameworks or libraries like Bootstrap.

Candidates who cleared this round invited to the JTG campus for further process.

Round 5 - Coding Test 

**5th Round: DSA **
This elimination round began with solving DSA problems focused on string and array manipulation.

Round 6 - Assignment 

**6th Round: Live Coding Assignment**
Round 5th was followed by a live coding task where we had to build a to-do application using only HTML, CSS, and JavaScript. The application needed to leverage local storage for data persistence. The technical interview in this round was based on the live coding task.

Round 7 - One-on-one 

(1 Question)

  • Q1. **6th and 7th Rounds: Technical Interviews** The next two elimination rounds were back-to-back technical interviews. They covered advanced concepts in HTML, CSS, and JavaScript, along with DSA problems.
Round 8 - HR 

(1 Question)

  • Q1. **9th Round: HR Interview** The final round was an HR interview, where the focus was on personality traits, career aspirations, and alignment with the company’s values. **Verdict: Selected**

Interview Preparation Tips

Interview preparation tips for other job seekers - **Outcome**
From our college, only two students were selected. We joined the company in September 2024 as Frontend Developer Interns, with a Pre-Placement Offer (PPO) of 12 LPA.

**Exciting News!**
I am also starting a YouTube channel where I will teach each concept in detail. The content will focus on helping candidates prepare for developer interviews by covering topics like HTML, CSS, JavaScript, and DSA. Do subscribe to my channel to stay updated and take your preparation to the next level!

Channel link - -----/@prathamsingh191?si=gE5UHeJcrq5mBDUI

Linkedin profile - -----/
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Sep 2024.

Round 1 - Aptitude Test 

It was relatively simple some language basics some cs basics and it was good togo

Round 2 - Coding Test 

This was a coding plus English plus math round the coding problems where easy

Round 3 - Coding Test 

This was 3rd round also a coding round the level of problems was medium

Round 4 - One-on-one 

(2 Questions)

  • Q1. You are provided with a linked list have to make sure that it is in decreasing order
  • Ans. 

    Check if a linked list is sorted in decreasing order by comparing adjacent nodes.

    • Traverse the linked list from head to tail.

    • For each node, compare its value with the next node's value.

    • If any node's value is less than the next node's value, the list is not in decreasing order.

    • Example: For list 5 -> 3 -> 2, it is in decreasing order.

    • Example: For list 5 -> 6 -> 2, it is not in decreasing order.

  • Answered by AI
  • Q2. You are given a random bst's node and you have to check whether a given element is part of the tree or not
  • Ans. 

    Check if a given element exists in a Binary Search Tree (BST) node using its properties.

    • A BST is structured such that for any node, left children are smaller and right children are larger.

    • To find an element, start at the given node and compare it with the node's value.

    • If the element is equal to the node's value, it exists in the tree.

    • If the element is less, recursively search the left subtree; if greater, search the ri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Linked list, recursion and BST traversal will help you alot
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Question directly come from the leetcode.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Data structure must be completed
  • Q2. From Tree and graphs.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more on leetcode platform.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was a test that had like basic c questions that one needs to practice, basic logical reasoning and Mathematics, a couple of English grammar questions

Round 2 - Coding Test 

There is a coding round with 4 questions 3 coding questions and one find the output of the c program question, one easy question, 2 medium questions one medium to hard level.Two linear data structure questions one array one linked list and one tree question.

Round 3 - Coding Test 

Another coding test with 3 questions medium to hard level questions from trees and linked lists, with optimisation required

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They have their own platform

Round 2 - Assignment 

Take home assignment

Round 3 - Technical 

(1 Question)

  • Q1. Live coding round of CRUD based small app.
  • Ans. 

    Creating a simple CRUD app using HTML, CSS, and JavaScript to manage a list of items.

    • Set up a basic HTML structure with a form for input.

    • Use JavaScript to handle form submission and add items to an array.

    • Implement functions to read, update, and delete items from the array.

    • Display the list of items dynamically on the webpage.

    • Use local storage to persist data across page refreshes.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. More on HTML, CSS, JS
Round 5 - Technical 

(1 Question)

  • Q1. Promises, async/await, settimeout etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep your core knowledge strong
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 question leetocde hard

Round 2 - HR 

(2 Questions)

  • Q1. Managemet quesion
  • Q2. Salery discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - company interview process is rigrious and not good for long term
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Feb 2024.

Round 1 - Aptitude Test 

It was quite basic including the basic understanding of front-end and the aptitude

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

I applied via Campus Placement 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
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 3 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 - Aptitude Test 

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

Round 3 - 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.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Asked DSA question about trees
  • Q2. Asked DSA question about linked list

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Josh Technology Group?
Ask anonymously on communities.

Josh Technology Group Interview FAQs

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

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

  1. You are given a random bst's node and you have to check whether a given element...read more
  2. You are provided with a linked list have to make sure that it is in decreasing ...read more
  3. Live coding round of CRUD based small a...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.

Overall Interview Experience Rating

3.9/5

based on 10 interview experiences

Difficulty level

Moderate 86%
Hard 14%

Duration

Less than 2 weeks 100%
View more

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

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
DotPe Interview Questions
3.1
 • 42 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
Argusoft Interview Questions
4.7
 • 38 Interviews
View all

Josh Technology Group Reviews and Ratings

based on 79 reviews

2.9/5

Rating in categories

3.7

Skill development

2.5

Work-life balance

3.1

Salary

3.1

Job security

2.9

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 79 Reviews and Ratings
Client Engagement Specialist

Gurgaon / Gurugram

0-3 Yrs

Not Disclosed

Software Developer ( PHP & Magento )

Gurgaon / Gurugram

1-3 Yrs

Not Disclosed

Senior Software Quality Analyst

Gurgaon / Gurugram

2-7 Yrs

Not Disclosed

Explore more jobs
Software Developer
102 salaries
unlock blur

₹6.8 L/yr - ₹19 L/yr

Front end Developer
55 salaries
unlock blur

₹8.4 L/yr - ₹16.7 L/yr

Senior Software Developer
32 salaries
unlock blur

₹8.5 L/yr - ₹22 L/yr

Software Quality Analyst
32 salaries
unlock blur

₹4.2 L/yr - ₹7.1 L/yr

Software Engineer
22 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Explore more salaries
Compare Josh Technology Group with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview