Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Josh Software Team. If you also belong to the team, you can get access from here

Josh Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Josh Software Interview Questions and Answers

Updated 20 May 2025
Popular Designations

14 Interview questions

A Software Developer was asked 6mo ago
Q. What is runtime polymorphism?
Ans. 

Runtime polymorphism is the ability of a function to behave differently based on the object it is called with.

  • Runtime polymorphism is achieved through method overriding in object-oriented programming.

  • It allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

  • The actual method that gets called is determined at runtime based on the type of object.

  • Example: Animal ...

View all Software Developer interview questions
A Software Developer was asked 6mo ago
Q. What is polymorphism?
Ans. 

Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • It enables a single interface to represent multiple data types.

  • Examples include method overloading and method overriding in object-oriented programming.

View all Software Developer interview questions
A Software Developer was asked 8mo ago
Q. What is the difference between authentication and authorization?
Ans. 

Authentication verifies the identity of a user, while authorization determines what actions a user is allowed to perform.

  • Authentication confirms the user's identity through credentials like username and password

  • Authorization controls access to resources based on the authenticated user's permissions

  • Example: Logging into a system (authentication) vs. accessing specific files or features within the system (authorizat...

View all Software Developer interview questions
A Software Developer was asked 8mo ago
Q. Explain merge sort with code.
Ans. 

Merge sort is a divide and conquer algorithm that recursively splits an array into halves, sorts them, and then merges them back together.

  • Divide the array into two halves

  • Recursively sort each half

  • Merge the sorted halves back together

View all Software Developer interview questions
A Software Developer was asked 9mo ago
Q. What are the differences between C and C++?
Ans. 

C is a procedural programming language while C++ is a multi-paradigm programming language with object-oriented features.

  • C is a procedural programming language, while C++ supports both procedural and object-oriented programming.

  • C does not support classes and objects, while C++ does.

  • C does not have features like inheritance, polymorphism, and encapsulation, which are supported in C++.

  • C++ has additional features like...

View all Software Developer interview questions
A Software Developer was asked 10mo ago
Q. What are promises?
Ans. 

Promises are objects representing the eventual completion or failure of an asynchronous operation.

  • Promises are used to handle asynchronous operations in JavaScript.

  • They can be in one of three states: pending, fulfilled, or rejected.

  • Promises can be chained together using .then() to handle success and failure.

  • Example: new Promise((resolve, reject) => { ... }).then(result => { ... }).catch(error => { ... });

View all Software Developer interview questions
A Software Developer was asked 10mo ago
Q. What are async functions?
Ans. 

Async functions in JavaScript allow for asynchronous programming using the async/await syntax.

  • Async functions are defined using the 'async' keyword before the function declaration.

  • They allow for the use of the 'await' keyword within the function to pause execution until a promise is settled.

  • Async functions always return a promise.

  • Example: async function fetchData() { await fetch('https://api.example.com/data'); }

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked 10mo ago
Q. What are node modules?
Ans. 

Node modules are reusable code packages that can be easily imported and used in Node.js applications.

  • Node modules are JavaScript libraries that can be easily installed using npm (Node Package Manager).

  • They help in organizing code, improving code reusability, and managing dependencies.

  • Examples of popular node modules include Express.js for web applications, Lodash for utility functions, and Mongoose for MongoDB int...

View all Software Developer interview questions
A Software Engineer was asked
Q. Write code to remove all whitespace from a string.
Ans. 

Code to remove all white space from a string.

  • Use built-in string functions like replace() or regex to remove white spaces.

  • Example: str.replace(/\s/g, '') will remove all white spaces from the string.

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is the difference between a linked list and an ArrayList?
Ans. 

Linked list is a data structure where elements are stored in nodes with pointers to the next node. ArrayList is a resizable array implementation.

  • Linked list allows for efficient insertion and deletion of elements, while ArrayList is faster for random access.

  • Linked list uses more memory due to storing pointers, while ArrayList uses contiguous memory for elements.

  • Example: LinkedList<Integer> linkedList = new L...

View all Software Engineer interview questions

Josh Software Interview Experiences

19 interviews found

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

Just practise time and work and appitude question

Round 2 - Aptitude Test 

Just practise time and work and missing number question

Round 3 - Coding Test 

Leetcode,and practise striver sheet as wel

Round 4 - Technical 

(2 Questions)

  • Q1. What is polymorphism
  • Q2. What is runtime polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - just practise to write sratch code from beginning related to oops concept
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 hours test of 3 questions and we have to solve it in time and get maximum points

Round 2 - Technical 

(3 Questions)

  • Q1. Basic fundamentals of computer engineering
  • Q2. Project-based questions for students
  • Q3. Difference between c and cpp
  • Ans. 

    C is a procedural programming language while C++ is a multi-paradigm programming language with object-oriented features.

    • C is a procedural programming language, while C++ supports both procedural and object-oriented programming.

    • C does not support classes and objects, while C++ does.

    • C does not have features like inheritance, polymorphism, and encapsulation, which are supported in C++.

    • C++ has additional features like temp...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. What is inheritance, bindings, static, final, exception handling, collections.
  • Ans. 

    Inheritance, bindings, static, final, exception handling, collections are key concepts in software engineering.

    • Inheritance allows a class to inherit properties and behaviors from another class.

    • Bindings refer to the process of connecting data to a user interface element.

    • Static keyword is used to create class-level variables and methods.

    • Final keyword is used to make a variable, method, or class immutable.

    • Exception handli...

  • Answered by AI
  • Q2. Difference between linked list and ArrayList.
  • Q3. Code for remove all white space from a string.
  • Ans. 

    Code to remove all white space from a string.

    • Use built-in string functions like replace() or regex to remove white spaces.

    • Example: str.replace(/\s/g, '') will remove all white spaces from the string.

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. She asked me about my internship and projects
  • Q2. Do you know about Git

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for DSA and Oops

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 questions on strings

Round 2 - Technical 

(3 Questions)

  • Q1. What are promises?
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained together using .then() to handle success and failure.

    • Example: new Promise((resolve, reject) => { ... }).then(result => { ... }).catch(error => { ... });

  • Answered by AI
  • Q2. What are async functions?
  • Ans. 

    Async functions in JavaScript allow for asynchronous programming using the async/await syntax.

    • Async functions are defined using the 'async' keyword before the function declaration.

    • They allow for the use of the 'await' keyword within the function to pause execution until a promise is settled.

    • Async functions always return a promise.

    • Example: async function fetchData() { await fetch('https://api.example.com/data'); }

  • Answered by AI
  • Q3. What are node modules>?
  • Ans. 

    Node modules are reusable code packages that can be easily imported and used in Node.js applications.

    • Node modules are JavaScript libraries that can be easily installed using npm (Node Package Manager).

    • They help in organizing code, improving code reusability, and managing dependencies.

    • Examples of popular node modules include Express.js for web applications, Lodash for utility functions, and Mongoose for MongoDB interact...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and explain your projects

Skills evaluated in this interview

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 

Online aptitude test questions from ds, oops , dbms , sql , os , arithmetic and reasoning, pseudocodes

Round 2 - Coding Test 

Question from string , linked list, array , etc. . data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - come prepared for every round
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Direct coding test with a magic number, balance parenthesis

Round 2 - Technical 

(4 Questions)

  • Q1. Explain merge sort with code
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively splits an array into halves, sorts them, and then merges them back together.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Difference between authentication and authorization
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what actions a user is allowed to perform.

    • Authentication confirms the user's identity through credentials like username and password

    • Authorization controls access to resources based on the authenticated user's permissions

    • Example: Logging into a system (authentication) vs. accessing specific files or features within the system (authorization)

  • Answered by AI
  • Q3. Project discussion
  • Q4. Database questions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Testing basis concept
  • Q2. Domain specifics
Round 2 - One-on-one 

(2 Questions)

  • Q1. Testing methodologies
  • Q2. Test design technique
  • Ans. 

    Test design techniques are methods used to create test cases and scenarios for software testing.

    • Black box testing: focuses on the functionality of the software without looking at the internal code.

    • White box testing: examines the internal code structure and logic of the software.

    • Equivalence partitioning: divides input data into partitions of equivalent data.

    • Boundary value analysis: tests the boundaries of input ranges.

    • D...

  • Answered by AI

Skills evaluated in this interview

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

Interview process was smooth. First round was coding question bases on array, string

Round 2 - One-on-one 

(2 Questions)

  • Q1. Database questions Data structure question
  • Q2. How to chose sql vs nosql

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image E1 30 Shashi Prakash Tiwari

posted on 27 Dec 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions of aptitude test and reasoning

Interview Preparation Tips

Interview preparation tips for other job seekers - Continue your job 💪 preparation
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude , DBMS , OS

Round 2 - Coding Test 

Graphs, tree, DSA, Arrays

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Luck,Best of luck

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 Software?
Ask anonymously on communities.

Josh Software Interview FAQs

How many rounds are there in Josh Software interview?
Josh Software interview process usually has 2-3 rounds. The most common rounds in the Josh Software interview process are Coding Test, Technical and Aptitude Test.
How to prepare for Josh Software 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 Software. The most common topics and skills that interviewers at Josh Software expect are Java, Microservices, Python, Javascript and SQL.
What are the top questions asked in Josh Software interview?

Some of the top questions asked at the Josh Software interview -

  1. What is inheritance, bindings, static, final, exception handling, collectio...read more
  2. What are different software development mode...read more
  3. Difference between linked list and ArrayLi...read more
How long is the Josh Software interview process?

The duration of Josh Software 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 22 interview experiences

Difficulty level

Easy 33%
Moderate 67%

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

Josh Software Reviews and Ratings

based on 109 reviews

3.1/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

2.7

Salary

2.5

Job security

3.1

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 109 Reviews and Ratings
Java Lead

Navi Mumbai,

Pune

8-13 Yrs

Not Disclosed

DevOps Engineer

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Golang Developer

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
244 salaries
unlock blur

₹7.4 L/yr - ₹16.1 L/yr

Senior Software Engineer
130 salaries
unlock blur

₹15.6 L/yr - ₹35.4 L/yr

Software Developer
60 salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

QA Engineer
24 salaries
unlock blur

₹5 L/yr - ₹12.8 L/yr

Technical Lead
20 salaries
unlock blur

₹17 L/yr - ₹32 L/yr

Explore more salaries
Compare Josh Software 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