Upload Button Icon Add office photos
Engaged Employer

i

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

PSJ Strategywerks Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 25 Reviews

Filter interviews by

PSJ Strategywerks Interview Questions, Process, and Tips

Updated 22 Aug 2024

Top PSJ Strategywerks Interview Questions and Answers

PSJ Strategywerks Interview Experiences

Popular Designations

2 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse the linkedlist
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Iterate through the linked list and change the direction of pointers to reverse the list

    • Use three pointers - prev, current, and next to reverse the list

    • Example: 1 -> 2 -> 3 -> 4 -> null, after reversing: 4 -> 3 -> 2 -> 1 -> null

  • Answered by AI
  • Q2. What are event emitters?
  • Ans. 

    Event emitters are objects in Node.js that allow for communication between different parts of a program by emitting named events.

    • Event emitters are part of the EventEmitter class in Node.js

    • They allow for custom events to be emitted and listened for

    • Listeners can be attached to specific events to execute code when the event is emitted

    • Example: EventEmitter in Node.js can be used to create a custom event 'click' and attach...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Difference between contextapi and redux
  • Ans. 

    ContextAPI is a built-in feature in React for managing global state, while Redux is a separate library for state management in React applications.

    • ContextAPI is built into React, while Redux is a separate library

    • ContextAPI is primarily used for smaller applications with simpler state management needs

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

    • Redux provides a centralized stor...

  • Answered by AI
  • Q2. Ways to optimize website
  • Ans. 

    Optimizing a website involves improving performance, user experience, and search engine rankings.

    • Minimize HTTP requests by combining files, using CSS sprites, and reducing scripts

    • Enable browser caching to store website data locally for faster loading times

    • Optimize images by resizing, compressing, and using the correct file format

    • Use a content delivery network (CDN) to distribute content across multiple servers for fast...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for PSJ Strategywerks Software Developer interview:
  • Javascript
  • React.Js

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (40)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 29 Mar 2024

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

I was interviewed before Mar 2023.

Round 1 - Aptitude Test 

Javascript questions

Round 2 - Coding Test 

Basic JS, Angular questions

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)

Jobs at PSJ Strategywerks

View all

Interview questions from similar companies

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Ans. 

    ACID properties are a set of properties that guarantee reliable and consistent transactions in a database system.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that the concurrent execution of transactions results in a system state that would be obtai...

  • Answered by AI
  • Q2. What are Idempotent HTTP Requests?
  • Ans. 

    Idempotent HTTP requests are requests that can be repeated multiple times without changing the result beyond the initial request.

    • Idempotent requests have the same outcome no matter how many times they are executed.

    • GET, PUT, and DELETE HTTP methods are typically idempotent.

    • POST requests are not idempotent as they can create new resources with each execution.

  • Answered by AI
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Ans. 

    I structure my work by breaking down tasks, setting priorities, creating timelines, and regularly reviewing progress.

    • Break down tasks into smaller, manageable chunks

    • Set priorities based on deadlines and importance

    • Create timelines to track progress and ensure timely completion

    • Regularly review progress and adjust plans as needed

  • Answered by AI
  • Q2. How you make a project from scratch
  • Ans. 

    To make a project from scratch, start by defining requirements, creating a plan, designing the architecture, implementing the code, testing, and deploying.

    • Define project requirements and goals

    • Create a project plan with timelines and milestones

    • Design the architecture of the project, including database schema and system components

    • Implement the code following best practices and coding standards

    • Test the project thoroughly ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. What was the challenges that you faced during a delivery of a project.
  • Ans. 

    Managing stakeholder expectations, resource constraints, and scope changes.

    • Balancing stakeholder expectations with project constraints

    • Dealing with resource limitations and competing priorities

    • Managing scope changes and ensuring project stays on track

    • Communicating effectively with team members and stakeholders

    • Adapting to unexpected challenges and finding creative solutions

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What do you seek or looking out from us ?
  • Ans. 

    I seek a supportive and collaborative work environment where I can utilize my project management skills to drive successful outcomes.

    • Supportive team culture

    • Collaborative work environment

    • Opportunities for growth and development

    • Clear communication channels

    • Recognition for achievements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers were nice and friendly but the behavior from HR was not friendly at all. no proper follow ups. Ghosting candidates is very common i guess over here.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Assignment 

Small assignment to build simple App.

Round 2 - Technical 

(2 Questions)

  • Q1. JavaScript Questions
  • Q2. Reactjs Questions

Interview Preparation Tips

Topics to prepare for Sekel Technologies Front end Developer interview:
  • Javascript
  • React.Js
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain the inter relation between a sales and marketing funnel
  • Ans. 

    Sales and marketing funnels are interconnected processes that guide potential customers from awareness to purchase.

    • Sales funnel focuses on converting leads into customers through direct sales tactics.

    • Marketing funnel focuses on generating awareness and interest in a product or service.

    • Marketing activities feed into the top of the sales funnel by attracting potential customers.

    • Sales activities further qualify and nurtur...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DONOT JOIN THIS COMPANY NO MATTER HOW MUCH MONEY THEY PAY OR EVEN IF YOU ARE IN DESPERATE NEEDS. The only word I have for the CEO is a psycho. He would randonmly arrange meetings for later hours and night without prior notice and bash the team left right centre without any reason. Once in a meeting, he asked my teammate a question. He said, I want to see the report. R E P O R T. Do you know how to read and write? This was happening at 12:30 am with two of the female teammates still at office and nobody cared about how they will reach hoke so late. They have no vision, no work culture, the CEO will wake up one day ajd hire 50 people and the other day fire 80 people. Why? Just because he can. I was still fortunate enough to work with a good team of lesser people but I never slept peacefully knowing that they can fire me anyday. Tye gujju owner favors his zero skills gujju close knit team members and nobody gives any credit for your hardwork or anything at all. It is just an utter waste of time. Just don’t join!
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Why do you want to join procol?
  • Q2. What if you are not selected here?
  • Q3. Do you want to become an entrepreneur?

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company,don't waste your time by giving interview here. Firstly the HR will end up rescheduling the interview multiple times. My first round was taken by the HR head ,who was asking me functional questions related to sales which I was appalled by. The second Round was taken by the Director sales which was good and I ended up clearing. The final round will be taken by the CEO who is a noob,In the name of cultural fitment he will ask you nonsensical questions and end up rejecting you for no reason. If the CEO is like this you can very well make out the kind of culture the company fosters.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Unstop and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Assignment 

Assessment (Quiz) on Unstop portal.

Round 2 - Resume Shortlist 

(1 Question)

  • Q1. Resume shortlisting.
Round 3 - HR 

(7 Questions)

  • Q1. Introduce youself.
  • Ans. 

    I am a motivated and detail-oriented individual with a strong passion for operations and process improvement.

    • I have a background in business administration and have completed relevant coursework in operations management.

    • I have experience working on cross-functional teams to streamline processes and improve efficiency.

    • I am proficient in data analysis and have used tools such as Excel and Tableau to identify areas for im...

  • Answered by AI
  • Q2. Previous work experience/ internship.
  • Ans. 

    I have completed a marketing internship at XYZ Company where I assisted with social media campaigns and data analysis.

    • Assisted with social media campaigns

    • Conducted data analysis

    • Worked at XYZ Company

  • Answered by AI
  • Q3. Job description.
  • Q4. Why you have applied for this role and how does it align with your aspirations.
  • Ans. 

    I applied for this role because of my interest in operations management and desire to gain practical experience in the field.

    • I have a strong academic background in operations management, including coursework in supply chain management and process optimization.

    • I am eager to apply my theoretical knowledge to real-world scenarios and learn from experienced professionals in the field.

    • I am excited about the opportunity to c...

  • Answered by AI
  • Q5. This is a monotonus role, so what you will learn from this internship.
  • Ans. 

    You will learn valuable operational skills and gain hands-on experience in a professional setting.

    • Developing strong organizational skills

    • Learning how to effectively manage time and prioritize tasks

    • Gaining experience in problem-solving and decision-making

    • Understanding the importance of communication and teamwork in a professional environment

  • Answered by AI
  • Q6. Five Competitors of Unstop.
  • Ans. 

    Competitors of Unstop include CleanSweep, Spotless Solutions, FreshClean, PureShine, and SparklePro.

    • CleanSweep

    • Spotless Solutions

    • FreshClean

    • PureShine

    • SparklePro

  • Answered by AI
  • Q7. Where will you search for internships?
  • Ans. 

    I will search for internships on online job boards, company websites, career fairs, and through networking.

    • Online job boards such as Indeed, Glassdoor, and LinkedIn

    • Company websites of organizations I am interested in

    • Attending career fairs at my university or in the local area

    • Networking with professionals in the industry through LinkedIn or in-person events

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the job description and company profile thoroughly.

PSJ Strategywerks Interview FAQs

How many rounds are there in PSJ Strategywerks interview?
PSJ Strategywerks interview process usually has 2 rounds. The most common rounds in the PSJ Strategywerks interview process are Technical, Aptitude Test and Coding Test.
How to prepare for PSJ Strategywerks 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 PSJ Strategywerks. The most common topics and skills that interviewers at PSJ Strategywerks expect are Javascript, Angular, MySQL, HTML and MongoDB.
What are the top questions asked in PSJ Strategywerks interview?

Some of the top questions asked at the PSJ Strategywerks interview -

  1. What are event emitte...read more
  2. Difference between contextapi and re...read more
  3. Reverse the linkedl...read more

Tell us how to improve this page.

PSJ Strategywerks Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Acviss Interview Questions
4.3
 • 7 Interviews
Elucidata Interview Questions
3.7
 • 6 Interviews
QuickRide Interview Questions
2.8
 • 5 Interviews
Tech Formation Interview Questions
4.7
 • 5 Interviews
Procol Interview Questions
4.0
 • 4 Interviews
ActualPixel Interview Questions
4.9
 • 3 Interviews
View all

PSJ Strategywerks Reviews and Ratings

based on 25 reviews

3.4/5

Rating in categories

3.9

Skill development

3.3

Work-life balance

3.7

Salary

3.5

Job security

3.5

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 25 Reviews and Ratings
Back End Developer

Gurgaon / Gurugram

3-5 Yrs

Not Disclosed

Frontend Developer

Gurgaon / Gurugram

3-5 Yrs

Not Disclosed

Explore more jobs
Software Developer
7 salaries
unlock blur

₹6 L/yr - ₹10.8 L/yr

Software Development Engineer
4 salaries
unlock blur

₹8.8 L/yr - ₹22 L/yr

HR Executive
4 salaries
unlock blur

₹3.8 L/yr - ₹5.5 L/yr

Software Development Engineer 1
4 salaries
unlock blur

₹6 L/yr - ₹16 L/yr

Sde1
4 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Explore more salaries
Compare PSJ Strategywerks with

QuickRide

2.8
Compare

Tech Formation

4.7
Compare

sysotel.ai

2.3
Compare

Sekel Technologies

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