Upload Button Icon Add office photos

Josh Technology Group

Compare button icon Compare button icon Compare

Filter interviews by

Josh Technology Group Frontend Developer Intern Interview Questions and Answers

Updated 12 Jan 2025

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

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.

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

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

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

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.

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

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

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

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

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

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Last Stone Weight Problem Explanation

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

  • Ans. 

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

    • Sort the array of stone weights in descending order.

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

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

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

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

    Design a signin page using HTML and CSS only

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

    • Style the form using CSS to make it visually appealing

    • Add a submit button for users to sign in

    • Consider adding error messages or validation for user input

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

  • Answered by AI
Round 3 - Assignment 

(1 Question)

Round duration - 7 days
Round difficulty - Medium

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

    A todo list application using localstorage.

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

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

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

    • Display the list of todo items and their status.

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

  • Answered by AI
Round 4 - Video Call 

Round duration - 120 Minutes
Round difficulty - Easy

Round 5 - Video Call 

(9 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Questions related to react and high level javascript?

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

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

    • Hoisting applies to both variable and function declarations.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

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

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

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

    • Memoization improves performance by avoiding redundant calculations

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    • They do not have the 'arguments' object.

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

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

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

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

    • JSX stands for JavaScript XML

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

    • JSX elements are transpiled into regular JavaScript function calls

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

    • Example:

      Hello, {name}!

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

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

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

    • They enable functional programming paradigms.

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

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

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

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

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

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

    • This helps in efficient rendering and improves performance.

    • Virtual DOM allows deve...

  • Answered by AI
Round 6 - HR 

Round duration - 35 Minutes
Round difficulty - Easy

Happend around 08:30 pm

Interview Preparation Tips

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

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

Application resume tips for other job seekers

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

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

One hour aptitude test, after clearing that, some basic coding questions were unlocked.

Round 2 - Aptitude Test 

This one was face to face. Basically, the approach to the question was seeked by the HRs rather than the correct answer only.

Round 3 - HR 

(3 Questions)

  • Q1. This included two rounds, one with HR and one with CEO. Questions were based on real life logics and basic mathematics
  • Q2. Based on real life and quants with some HR Questions.
  • Q3. Like: What salary do you expect
  • Ans. 

    I expect a competitive salary based on my skills, experience, and the market rate for software developers.

    • Research the average salary range for software developers in your location and industry.

    • Consider your level of experience, education, and any specialized skills you possess.

    • Factor in the company's size, reputation, and financial stability.

    • Be prepared to negotiate and discuss benefits and perks in addition to salary...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on logical knowledge. And keep good hands on basic programming at least.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2023. There were 3 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 

Topics- APTITUDE, reasoning

Round 3 - Assignment 

Topic- reasoning and mathematical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepare with your verbal and non verbal reasoning.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quantitative arithmetic,verbal reasoning,non-verbal reasoning,etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice.

I applied via Job Fair and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - MCQ test 

(1 Question)

  • Q1. MCQ test. 20 questions were asked and attempted in 30 minutes.
Round 2 - Coding Test 

1hr duration, test can be attempted in any language. I have attempted in python.

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Developer interview:
  • Java
  • Python
Interview preparation tips for other job seekers - MCQ test based on loops and string, asked in java I think. I attempted and cleared. 20 questions/30 mins.

coding test was 1 hour and 5 questions were given. medium level questions.
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Basic coding question on array and string.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do coding practices as much you can

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.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

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

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview