Upload Button Icon Add office photos
Engaged Employer

i

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

Physicswallah Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Physicswallah Software Developer Interview Questions and Answers

Updated 31 Aug 2024

Physicswallah Software Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Tell me about your project?
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end functionality

    • Utilized MongoDB for database management

  • Answered by AI
  • Q2. What is useState, useEffect, useRedux?
  • Ans. 

    useState, useEffect, useRedux are hooks in React for managing state and side effects.

    • useState is a hook used for managing state in functional components.

    • useEffect is a hook used for handling side effects in functional components.

    • useRedux is not a built-in hook, but a common convention for using Redux with React.

  • Answered by AI
  • Q3. Tell me the changes too place in 2015 EcMascript?
  • Ans. 

    In 2015, EcmaScript 6 (ES6) was released with significant updates and new features.

    • Introduction of let and const for block-scoped variables

    • Arrow functions for more concise syntax

    • Classes for object-oriented programming

    • Template literals for string interpolation

    • Enhanced object literals and destructuring assignments

  • Answered by AI
  • Q4. Explain the flow about how API works?
  • Ans. 

    API works by allowing different software applications to communicate with each other through a set of rules and protocols.

    • API receives a request from a client application

    • API processes the request and interacts with the server

    • API sends back a response to the client application

    • Examples: REST API, SOAP API

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You must be thorough about your project.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic question of javascript like temporal dead zone, hoisting
  • Q2. Basic of sql and mongo
Round 2 - Technical 

(2 Questions)

  • Q1. Logic bluiding question
  • Q2. 2 leet code quesztion
Round 3 - HR 

(1 Question)

  • Q1. Slaray negotiation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asking the dp and tree and other

Round 2 - One-on-one 

(1 Question)

  • Q1. Asking the project based question and
Round 3 - HR 

(1 Question)

  • Q1. Some question asking base on cultural base and resume based

Software Developer Interview Questions & Answers

Chegg user image Yashwant Panchal

posted on 21 Nov 2024

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

Question on Linked list. array and string manipulation.

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Number system,30 min duration

Round 2 - Technical 

(2 Questions)

  • Q1. What is promises
  • Ans. 

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

    • Promises are used in JavaScript to handle asynchronous operations.

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

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

    • They help avoid callback hell and make asynchronous code more readable.

    • Example: const myPromise = new Promise((res

  • Answered by AI
  • Q2. What is html and css
  • Ans. 

    HTML and CSS are languages used for creating and styling web pages.

    • HTML (Hypertext Markup Language) is used for structuring content on a web page.

    • CSS (Cascading Style Sheets) is used for styling the appearance of the content.

    • HTML uses tags like

      for paragraphs and for images.

    • CSS can change colors, fonts, layout, and more on a web page.

Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 2023. There were 6 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 - Technical 

(1 Question)

  • Q1. Data structures
Round 3 - Technical 

(1 Question)

  • Q1. System Design fundamentals
Round 4 - Technical 

(1 Question)

  • Q1. System Design questions
Round 5 - Behavioral 

(1 Question)

  • Q1. What do you think about the negative news going around the company
Round 6 - HR 

(1 Question)

  • Q1. Why join this company

Interview Preparation Tips

Interview preparation tips for other job seekers - They took 5 rounds of interview. 3 of them were technical and had easy to moderate level of questions. Rest 2 were more of HR rounds.
After taking 5 rounds, they have the audacity of not even calling back, picking up the calls or providing us with any information. If you are not interested in taking the candidate then why waste their time?

Funniest part is that they are fully aware of what a rubbish organization it is. In the later rounds they talked about cost cutting, negative news around the company, and employee complaints for work life balance. However, they are great at gaslighting as well because they make these sound like employee problems not employer problems.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 coding question around prime number arrays and strings

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce youself
  • Q2. Question around project and skill in the resume and one coding question to solve
Round 3 - Technical 

(2 Questions)

  • Q1. Question on project and skill in resume
  • Q2. 2 question arouond data structer and algorithm
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Practical questions regarding database like sp,trigger,rank
  • Q2. Difference b/w sp and function
  • Ans. 

    Stored procedures are precompiled SQL queries stored in the database, while functions are blocks of code that can be called within SQL queries.

    • Stored procedures are stored in the database and can be called using a specific name.

    • Functions are defined using CREATE FUNCTION and can be called within SQL queries.

    • Stored procedures can have input and output parameters, while functions can only return a single value.

    • Stored pro...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiations
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Given two questions on personal round

Round 2 - Technical 

(2 Questions)

  • Q1. Technical 1 to 1
  • Q2. On dsa
Round 3 - HR 

(1 Question)

  • Q1. Final and friendly round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They discussed some easy questions on Node JS and Dp and heap , binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. What is multithreading and explain its usecases.
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks, improving performance by utilizing multiple CPU cores.

    • It is commonly used in applications that require handling multiple tasks simultaneously, such as web servers, video games, and data processing.

    • Multithreading can help improve responsiveness i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare cs fundamentals as well.

Skills evaluated in this interview

Physicswallah Interview FAQs

How many rounds are there in Physicswallah Software Developer interview?
Physicswallah interview process usually has 1 rounds. The most common rounds in the Physicswallah interview process are Technical.
How to prepare for Physicswallah Software Developer 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 Physicswallah. The most common topics and skills that interviewers at Physicswallah expect are Java, MongoDB, MySQL, Node.Js and Postgres.
What are the top questions asked in Physicswallah Software Developer interview?

Some of the top questions asked at the Physicswallah Software Developer interview -

  1. Tell me the changes too place in 2015 EcMascri...read more
  2. Explain the flow about how API wor...read more
  3. What is useState, useEffect, useRed...read more

Tell us how to improve this page.

Physicswallah Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Physicswallah Software Developer Salary
based on 25 salaries
₹6 L/yr - ₹14 L/yr
26% more than the average Software Developer Salary in India
View more details

Physicswallah Software Developer Reviews and Ratings

based on 5 reviews

2.5/5

Rating in categories

2.5

Skill development

2.6

Work-life balance

2.6

Salary

2.2

Job security

2.6

Company culture

2.1

Promotions

2.2

Work satisfaction

Explore 5 Reviews and Ratings
Senior Associate
339 salaries
unlock blur

₹2.5 L/yr - ₹7.5 L/yr

Associate
294 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Associate Manager
240 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Business Analyst
126 salaries
unlock blur

₹2.2 L/yr - ₹11 L/yr

Professor
115 salaries
unlock blur

₹5.4 L/yr - ₹23 L/yr

Explore more salaries
Compare Physicswallah with

Unacademy

3.0
Compare

BYJU'S

3.1
Compare

Vedant

4.2
Compare

Toppr

3.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview