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

Updated 25 Jun 2025
Popular Designations

98 Interview questions

A Front end Developer was asked
Q. 

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

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

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

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

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

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

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

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

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

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.

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

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

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.

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked
Q. 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.

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked
Q. 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...

View all Frontend Developer Intern interview questions
Are these interview questions helpful?
A Frontend Developer Intern was asked
Q. 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'.

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked
Q. 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

View all Frontend Developer Intern interview questions
A Frontend Developer Intern was asked
Q. 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.

View all Frontend Developer Intern interview questions

Josh Technology Group Interview Experiences

71 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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Medium level questions asked

Round 2 - Coding Test 

Simple easy to medium 2 questions asked of string and array

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. JavaScript like fetch axios and others

Interview Questions & Answers

user image Anonymous

posted on 21 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Convert the Binary Search Tree (BST) to a Greater Tree.
  • Ans. 

    Convert a BST to a Greater Tree by replacing each node's value with the sum of all greater values.

    • Traverse the tree in reverse in-order (right, root, left) to accumulate values.

    • Start with a variable to keep track of the cumulative sum.

    • For each node, update its value to the cumulative sum and add its original value to the sum.

    • Example: For BST with values [4, 1, 6, 0, 2, 5, 7], the Greater Tree will have values [22, 27, ...

  • Answered by AI
  • Q2. Given a Binary Search Tree (BST), find if there exists a pair of nodes whose values sum up to a given target. The time complexity required for this solution is O(n), and the space complexity should be less...
  • Ans. 

    Check for a pair of nodes in a BST that sum to a target using O(n) time and O(1) space.

    • Use an in-order traversal to get sorted values from the BST.

    • Utilize two pointers: one at the start and one at the end of the sorted array.

    • If the sum of the values at the two pointers equals the target, return true.

    • If the sum is less than the target, move the left pointer right; if greater, move the right pointer left.

    • Example: For BST...

  • Answered by AI

Software Engineer Interview Questions & Answers

user image Aryan Srivastava

posted on 5 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. C language quizzes
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Consist of aptitude, logical reasoning and verbal ability questions. Debugging questions also there . Do specific questions bcz there is negative marking

Round 2 - Essay type on 2 topics 

(2 Questions)

  • Q1. About software quality assurance
  • Q2. Ai tools importance in sqa
  • Ans. 

    AI tools play a crucial role in Software Quality Assurance by automating testing processes, improving efficiency, and detecting defects early.

    • AI tools can automate repetitive testing tasks, saving time and effort.

    • AI tools can analyze large amounts of data quickly and accurately, helping to identify potential defects.

    • AI tools can improve test coverage by generating test cases based on historical data and patterns.

    • AI too...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Introduction test cases of various objects near you
  • Ans. 

    Introduction test cases for objects near me

    • Test case for testing a chair: verify stability, check for any damages, test weight capacity

    • Test case for testing a computer: check if it powers on, test functionality of keyboard and mouse, verify internet connectivity

    • Test case for testing a pen: check if it writes smoothly, test ink flow, verify if cap fits securely

  • Answered by AI
  • Q2. Testing related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and knowledge related to that field
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 Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration 60 min, topics: DBMS, computer networking, outputs, SQL queries

Round 2 - Coding Test 

Topics: Trees, DP, Greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good understanding of DSA, specially topics like Trees, DP, Graph and Greedy
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is very impressive work on Josh technology assessment because we learn many new skills.

Round 2 - Technical 

(2 Questions)

  • Q1. What is api and how it is work ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • APIs can be used to access services provided by other software applications, such as retrieving data from a database or sending notifications.

    • Examples of APIs ...

  • Answered by AI
  • Q2. What is software development life cycle and which steps are following?
  • Ans. 

    Software development life cycle (SDLC) is a process used by software developers to design, develop, and test software.

    • 1. Planning: Define the project scope, requirements, and objectives.

    • 2. Analysis: Gather and analyze user requirements.

    • 3. Design: Create a detailed design of the software.

    • 4. Implementation: Develop the software based on the design.

    • 5. Testing: Test the software for bugs and issues.

    • 6. Deployment: Release t...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Pointer i c++ and css
Round 2 - Coding Test 

Dsa round with medium tto hard level questions

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
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?
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 HTML, Gaming, 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. Given a Binary Search Tree (BST), find if there exists a pair of nodes whose va...read more
  2. What is software development life cycle and which steps are followi...read more
  3. Regression test cases for any applicat...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.8/5

based on 54 interview experiences

Difficulty level

Moderate 72%
Hard 28%

Duration

Less than 2 weeks 82%
2-4 weeks 7%
4-6 weeks 4%
6-8 weeks 7%
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
Software Developer
102 salaries
unlock blur

₹10 L/yr - ₹17.6 L/yr

Front end Developer
55 salaries
unlock blur

₹8.4 L/yr - ₹16.7 L/yr

Senior Software Developer
33 salaries
unlock blur

₹12 L/yr - ₹21.7 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.5
Compare

F1 Info Solutions and Services

3.8
Compare
write
Share an Interview