Upload Button Icon Add office photos
Engaged Employer

i

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

Winjit Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Winjit Technologies Senior Software Engineer Interview Questions and Answers for Experienced

Updated 24 Jul 2024

Winjit Technologies Senior Software Engineer Interview Experiences for Experienced

2 interviews found

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

(2 Questions)

  • Q1. What are 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 using .then() to handle success and .catch() to handle errors.

    • Example: Fetching data from an API returns a Promise that resolves with the data or rejects with an erro...

  • Answered by AI
  • Q2. Is Node.js Single Threaded or Multiple Threaded
  • Ans. 

    Node.js is single threaded, but uses multiple threads for I/O operations.

    • Node.js uses a single thread to handle all JavaScript code execution.

    • It uses multiple threads from a thread pool to handle I/O operations asynchronously.

    • This allows Node.js to handle high concurrency without blocking the main thread.

    • Example: When reading a file, Node.js will use a separate thread from the pool to perform the I/O operation.

  • Answered by AI
Round 2 - Coding Test 

Reverse the Array of Strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Place to work

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2021. There were 5 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. All about angular basic and deep questioning
Round 3 - Technical 

(1 Question)

  • Q1. Basic routing and SPA
Round 4 - Behavioral 

(1 Question)

  • Q1. Detail qbout angular and node js
  • Ans. 

    Angular is a front-end framework while Node.js is a back-end runtime environment.

    • Angular is used for building dynamic web applications with a focus on the client-side.

    • Node.js is used for building server-side applications with JavaScript.

    • Angular uses TypeScript for building applications while Node.js uses JavaScript.

    • Angular has a large community and a lot of pre-built components while Node.js has a vast library of modul...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion as per interview

Interview Preparation Tips

Topics to prepare for Winjit Technologies Senior Software Engineer interview:
  • OOPS
  • Angular
  • HTML
  • CSS
  • Javascript
Interview preparation tips for other job seekers - Be calmly to take the interview. Preapare at least basic things to attend the interview.

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. If you have to prioritize between coding standards and project de ... read more
Q2. Duplicate Integer in Array Given an array ARR of size N, containi ... read more
asked in Visa
Q3. Given a grid containing 0s and 1s and a source row and column, in ... read more
asked in Mphasis
Q4. Trapping Rain Water Problem Statement Given a long type array/lis ... read more
Q5. In Azure Data Factory, how would you implement the functionality ... read more

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

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They specifically didn’t asked any questions by looking at my strong resume but just asked me if to come Hyderabad for training of a month

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good in technical knowledge then it would be easy for you to get opportunity here at client site you will learn a lot as mostly you will be at your own, companies technical support is not very good so mostly you are on your own

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOPS concept based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics and be confident about them

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java collections, program to remove duplicate from array, cursor, indexes in database,stream api's , some questions of hibernate and spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Atleast prepare core java fully along with some basic db concepts and all keys and prepare spring boot
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java related questions core java
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test with aptitude based questions

Round 2 - Technical 

(2 Questions)

  • Q1. What is variable hoisting.
  • Ans. 

    Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted to the top of their function or global scope.

    • Only the declarations are hoisted, not the initializations.

    • This can lead to unexpected behavior if variables are accessed before they are declared.

  • Answered by AI
  • Q2. What is closures in js
  • Ans. 

    Closures in JavaScript allow functions to access variables from an outer function even after the outer function has finished executing.

    • Closures are created whenever a function is defined within another function.

    • Inner functions have access to the outer function's variables even after the outer function has returned.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outer...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Arrays and array list questions
  • Q2. Basic java concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Arrange of characters in arrays
  • Ans. 

    Arrange characters in arrays by sorting or manipulating strings for various applications.

    • Use built-in sorting functions: In Python, use sorted() to arrange strings alphabetically. Example: sorted(['banana', 'apple']) returns ['apple', 'banana'].

    • Custom sorting: Implement a custom sort function to arrange strings based on specific criteria, like length or character frequency.

    • Reversing strings: Use slicing to reverse stri...

  • Answered by AI
  • Q2. SQL query to find value using joins
  • Ans. 

    SQL joins combine rows from two or more tables based on related columns, enabling complex queries and data retrieval.

    • Use INNER JOIN to return records with matching values in both tables. Example: SELECT * FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

    • LEFT JOIN returns all records from the left table and matched records from the right table. Example: SELECT * FROM Customers LEFT JOIN Order...

  • Answered by AI

Winjit Technologies Interview FAQs

How many rounds are there in Winjit Technologies Senior Software Engineer interview for experienced candidates?
Winjit Technologies interview process for experienced candidates usually has 3-4 rounds. The most common rounds in the Winjit Technologies interview process for experienced candidates are Technical, Behavioral and HR.
How to prepare for Winjit Technologies Senior Software Engineer interview for experienced candidates?
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 Winjit Technologies. The most common topics and skills that interviewers at Winjit Technologies expect are Angular, .Net Core, Android, C# and Database Design.
What are the top questions asked in Winjit Technologies Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the Winjit Technologies Senior Software Engineer interview for experienced candidates -

  1. Detail qbout angular and node...read more
  2. Is Node.js Single Threaded or Multiple Threa...read more
  3. What are Promi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Winjit Technologies Senior Software Engineer Salary
based on 188 salaries
₹8.9 L/yr - ₹16.3 L/yr
28% less than the average Senior Software Engineer Salary in India
View more details

Winjit Technologies Senior Software Engineer Reviews and Ratings

based on 20 reviews

3.9/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.6

Salary

3.9

Job security

4.1

Company culture

3.7

Promotions

3.6

Work satisfaction

Explore 20 Reviews and Ratings
Senior Software Engineer

Nashik,

Pune

5-10 Yrs

Not Disclosed

Senior Software Engineer

Nashik,

Pune

6-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
340 salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

Software Developer
244 salaries
unlock blur

₹2.8 L/yr - ₹7.9 L/yr

Senior Software Engineer
188 salaries
unlock blur

₹8.9 L/yr - ₹16.2 L/yr

Project Engineer
42 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Business Analyst
37 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

Explore more salaries
Compare Winjit Technologies with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview