Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Josh Technology Group Frontend Developer Intern Interview Questions, Process, and Tips

Updated 12 Jan 2025

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 ...read more
  • Q2. What are higher-order functions in JavaScript?
  • Q3. How would you design and develop a to-do list application using local storage?
View all 12 questions

Josh Technology Group Frontend Developer Intern Interview Experiences

3 interviews found

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

I applied via campus placement at Pranveer Singh Institute of Technology, Kanpur 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 - -----/

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Feb 2024.

Round 1 - Aptitude Test 

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

Frontend Developer Intern Interview Questions Asked at Other Companies

Q1. Last Stone Weight Problem Explanation Given a collection of stone ... read more
asked in Samsung
Q2. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Samsung
Q3. Cousins of a Given Node in a Binary Tree Given a binary tree with ... read more
asked in Trell
Q4. Find the Second Largest Element Given an array or list of integer ... read more
asked in Samsung
Q5. Maximum Sum Path in a Binary Tree Your task is to determine the m ... read more

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

Interview questions from similar companies

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

Given the task to complete page design.

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. React Hooks and Project experience
Round 2 - Technical 

(2 Questions)

  • Q1. Performance Optimization Techniques
  • Ans. 

    Performance optimization techniques for React JS frontend development

    • Use React.memo for optimizing functional components

    • Avoid unnecessary re-renders by using shouldComponentUpdate or PureComponent for class components

    • Implement code splitting to reduce initial load time

    • Use lazy loading for components that are not immediately needed

    • Optimize images and assets for faster loading times

    • Minimize the use of inline styles and u...

  • Answered by AI
  • Q2. Lazy Loading and other ques related to that
Round 3 - HR 

(1 Question)

  • Q1. General HR Interview
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Decent questions asked in the online mcq test

Round 2 - Technical 

(1 Question)

  • Q1. Redux vs context API
  • Ans. 

    Redux is a predictable state container for JavaScript apps, while Context API is a feature in React for passing data through the component tree.

    • Redux is more suitable for larger applications with complex state management needs.

    • Context API is simpler to use and is built into React, reducing the need for additional libraries.

    • Redux provides a single source of truth for the application state, making it easier to debug and ...

  • Answered by AI

Skills evaluated in this interview

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

Given the task to complete page design.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

Focused on JS questions

Round 2 - Technical 

(1 Question)

  • Q1. React concept explain
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React is a declarative, efficient, and flexible JavaScript library for building user interfaces.

    • It allows developers to create reusable UI components.

    • React uses a virtual DOM to improve performance by only updating the necessary parts of the actual DOM.

    • React follows a unidirectional data flow, making it easier to understand how data changes over time.

    • React can ...

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Josh Technology Group Interview FAQs

How many rounds are there in Josh Technology Group Frontend Developer Intern interview?
Josh Technology Group interview process usually has 4-5 rounds. The most common rounds in the Josh Technology Group interview process are Assignment, Aptitude Test and Coding Test.
What are the top questions asked in Josh Technology Group Frontend Developer Intern interview?

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

  1. **6th and 7th Rounds: Technical Interviews** The next two elimination rounds ...read more
  2. **9th Round: HR Interview** The final round was an HR interview, where the fo...read more

Recently Viewed

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

INTERVIEWS

Oracle

No Interviews

INTERVIEWS

Capgemini Engineering

No Interviews

INTERVIEWS

Career Empower

No Interviews

INTERVIEWS

Amunra Infratech And Agritech

No Interviews

INTERVIEWS

Stark Interio

No Interviews

Tell us how to improve this page.

Josh Technology Group Frontend Developer Intern Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

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.6
 • 285 Interviews
View all
Josh Technology Group Frontend Developer Intern Salary
based on 5 salaries
₹8.8 L/yr - ₹15 L/yr
152% more than the average Frontend Developer Intern Salary in India
View more details

Josh Technology Group Frontend Developer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
98 salaries
unlock blur

₹6.8 L/yr - ₹19.5 L/yr

Front end Developer
49 salaries
unlock blur

₹6.3 L/yr - ₹17 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent