Josh Technology Group interview experience Real time questions & tips from candidates to crack your interview

Frontend Developer

Josh Technology Group
upvote
share-icon
7 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 Months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, Database
Tip
Tip

Tip 1 : Practice at least 150-200 Questions.
Tip 2 : Be aware of your resume and projects.
 

Application process
Where: Campus
Eligibility: 7.5 CGPA
Resume Tip
Resume tip

Tip 1 : Do not add anything too fancy to the resume.
Tip 2 : Try to add links to your project in your resume.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 Minutes
Interview date4 Aug 2021
Coding problem0

Questions from Aptitude, OS, DBMS, DSA (Easy-Medium)

02
Round
Easy
Online Coding Test
Duration60 Minutes
Interview date4 Aug 2021
Coding problem2

1. Intersection of Two Arrays II

Easy
0/40
Asked in companies
Expedia GroupMeeshoInfo Edge India (Naukri.com)

You have been given two integer arrays/list(ARR1 and ARR2) of size N and M, respectively. You need to print their intersection; An intersection for this problem can be defined when both the arrays/lists contain a particular value or to put it in other words, when there is a common value that exists in both the arrays/lists.

Note :
Input arrays/lists can contain duplicate elements.

The intersection elements printed would be in the order they appear in the first array/list(ARR1)


Problem approach

The following are simple algorithms to get union and intersection lists respectively.
Intersection (list1, list2)
Initialize the result list as NULL. Traverse list1 and look for every element in list2, if the element is present in list2, then add the element to the result.
Union (list1, list2):
Initialize a new list ans and store first and second list data to set to remove duplicate data
and then store it into our new list ans and return its head.

Try solving now

2. Find Non - Repeating Numbers

Easy
15m average time
85% success
0/40
Asked in companies
HCL TechnologiesSamsung R&D InstituteGoldman Sachs

You are given an array of integers ‘A’ having ‘N’ number of elements. It is given that all the numbers in the array occur twice except the two numbers that appear only one time. You need to find those two non-repeating numbers.

For Example:
If the given array is [ 4, 7, 3, 2, 7, 2 ], you have to find ‘4’ and ‘3’ as 4 and 3 occur one time, and the rest of the elements ( 7 and 2 ) are occurring twice.
Problem approach

The idea is simple, we initialize count as 0. We traverse the array in a linear fashion. For every element that matches with x, we increment count. Finally, we return count. 
Below is the implementation of the approach.

Try solving now
03
Round
Easy
Online Coding Test
Duration70 Minutes
Interview date4 Aug 2021
Coding problem1

5 questions (Easy-Medium)
JavaScript Snippet Given, write the correct output
Webpage look-a-like is given, to write HTML and CSS for the same.
Write code for JavaScript Form validation, including the functionality that is given.
JavaScript Snippet Given, write the correct output.

1. Balanced parentheses

Moderate
10m average time
90% success
0/80
Asked in companies
SalesforceAmazonMicrosoft

Given an integer ‘N’ representing the number of pairs of parentheses, Find all the possible combinations of balanced parentheses with the given number of pairs of parentheses.

Note :

Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.

2. Open brackets must be closed in the correct order.

For Example :

()()()() is a valid parentheses.
)()()( is not a valid parentheses.
Problem approach

Declare a character stack S.
Now traverse the expression string exp. 
If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
After complete traversal, if there is some starting bracket left in stack then “not balanced”

Try solving now
04
Round
Easy
Assignment
Duration30 Minutes
Interview date5 Aug 2021
Coding problem1

1. Assignment

Assignment to be completed in 1 Week time period, Use of any UI Framework, JS Library/framework is not allowed.

05
Round
Easy
Online Coding Interview
Duration60 Minutes
Interview date14 Aug 2021
Coding problem0

MCQs based on DSA, Frontend Technologies

06
Round
Easy
Assignment
Duration120 Minutes
Interview date17 Aug 2021
Coding problem1

1. Assignment

Again an assignment has been given to students and needs to be completed in less than 2 hr, Screen shared with the interviewer, the interview will ask you for the updates every 20 minutes.

07
Round
Easy
Telephonic
Duration60 Minutes
Interview date20 Aug 2021
Coding problem1

The interview started with an Introduction, Questions were asked about HTML, CSS, JavaScript, and Computer Networks. They mostly ask about CSS which is frustrating sometimes, interviewers will judge on the basis of your CSS skill for sure.

1. Web Development Questions

The interview started with an Introduction, Questions were asked about HTML, CSS, JavaScript, and Computer Networks. They mostly ask about CSS which is frustrating sometimes, interviewers will judge on the basis of your CSS skill for sure.

Problem approach

The interview started with an Introduction, Questions were asked about HTML, CSS, JavaScript, and Computer Networks. They mostly ask about CSS which is frustrating sometimes, interviewers will judge on the basis of your CSS skill for sure.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
Frontend Developer
7 rounds | 7 problems
Interviewed by Josh Technology Group
5169 views
0 comments
0 upvotes
company logo
Frontend Developer
8 rounds | 6 problems
Interviewed by Josh Technology Group
5684 views
0 comments
0 upvotes
company logo
Frontend Developer
3 rounds | 4 problems
Interviewed by Josh Technology Group
1781 views
0 comments
0 upvotes
company logo
Frontend Developer
7 rounds | 6 problems
Interviewed by Josh Technology Group
2504 views
0 comments
0 upvotes