Upload Button Icon Add office photos

Filter interviews by

Wrike Senior Frontend Software Engineer Interview Questions and Answers

Updated 10 Jun 2024

Wrike Senior Frontend Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Initial screening 

(3 Questions)

  • Q1. Long polling vs Short polling
  • Ans. 

    Long polling waits for server response before sending new request, short polling sends requests at regular intervals.

    • Long polling is more efficient for real-time updates

    • Short polling is simpler to implement but less efficient

    • Long polling reduces server load by minimizing requests

    • Short polling can lead to higher network traffic

    • Example: Chat applications often use long polling for instant messaging

  • Answered by AI
  • Q2. React Suspense and Error Boundary
  • Q3. JS basic and advance concepts (Promises, Closures, Async/Await etc)

Skills evaluated in this interview

Interview questions from similar companies

I applied via Approached by Company and was interviewed in May 2022. 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 

(2 Questions)

  • Q1. Interview was for one hour and it was entirely on javascript. Questions were related to various javascript concepts such as hoisting, closures, prototypes, inheritance and web performance. Lot of code snip...
  • Q2. There were couple of coding questions as well
Round 3 - Technical 

(2 Questions)

  • Q1. 2nd round was design round with the interviewer from US. Duration of interview was for 1 hour and he gave a problem statement.
  • Q2. He wanted to design an online card game and implement the basic functionality using pure javascript. He mentioned not to use any framework such as recact or vue/angular.
Round 4 - Technical 

(2 Questions)

  • Q1. Interview was for 1 hour. It was coding round and interviewer asked couple of questions.
  • Q2. Questions were based on shortest path and sorting.
Round 5 - Behavioral 

(2 Questions)

  • Q1. 4th round was with hiring manager based in US. Manager asked couple of basic coding questions involving inbuild array functions and objects.
  • Q2. Also gave a problem and asked to optimise the solution.

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Frontend Software Engineer interview:
  • Javascript
  • Javascript Frameworks
  • Data Structures
Interview preparation tips for other job seekers - Need to have good understanding of various javascript concepts.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSA related to binary search
Round 2 - Technical 

(1 Question)

  • Q1. System Design for elevator
  • Ans. 

    System design for elevator

    • Consider the number of floors in the building

    • Think about the capacity of the elevator

    • Design algorithms for efficient movement of the elevator

    • Include safety features such as emergency stop

    • Consider user interface for passengers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DSA, HLD, LLD, no matter what position you have applied for. They are really important while interviewing for Microsoft.

Skills evaluated in this interview

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

(1 Question)

  • Q1. JavaScript deep concept, React coding , LifeCycle

I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

16 Questions

  • Q1. What are the features of html 5
  • Ans. 

    HTML5 is the latest version of HTML with new features like video/audio support, canvas for graphics, local storage, and semantic elements.

    • Video and audio support

    • Canvas for graphics

    • Local storage

    • Semantic elements

  • Answered by AI
  • Q2. What is a css box model
  • Ans. 

    CSS box model is a design concept that describes how elements are rendered on a web page.

    • It consists of content, padding, border, and margin.

    • Content is the actual element content.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the content and padding.

    • Margin is the space between the border and the next element.

    • The box model can be adjusted using CSS properties such as padding, b...

  • Answered by AI
  • Q3. What is prototype chaining
  • Ans. 

    Prototype chaining is the mechanism by which objects inherit properties and methods from their prototype.

    • Every object in JavaScript has a prototype property that refers to another object.

    • If a property or method is not found on an object, JavaScript looks for it in the object's prototype chain.

    • Prototype chaining can be used to create inheritance in JavaScript.

    • Modifying the prototype of an object affects all objects that

  • Answered by AI
  • Q4. What's are the features of react
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • Declarative approach to building UI

    • Component-based architecture

    • Virtual DOM for efficient updates

    • JSX syntax for writing HTML in JavaScript

    • One-way data binding

    • Support for server-side rendering

    • Large and active community

    • Integration with other libraries and frameworks

  • Answered by AI
  • Q5. What are media elements
  • Ans. 

    Media elements are HTML tags used to embed multimedia content like images, videos, and audio files on a webpage.

    • Media elements include ,

    • They allow for the display of images, videos, and audio files on a webpage

    • Attributes like src, alt, and controls are used to customize media elements

Answered by AI
  • Q6. What is same origin property
  • Ans. 

    Same Origin Policy is a security feature in web browsers that restricts web pages from making requests to a different domain.

    • It prevents malicious scripts from accessing sensitive data from other websites

    • It applies to all web content, including JavaScript, CSS, and images

    • Cross-Origin Resource Sharing (CORS) is used to bypass the Same Origin Policy

    • Example: A script from www.example.com cannot access data from www.anothe

  • Answered by AI
  • Q7. Explain redux
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux is a library for managing application state.

    • It provides a single source of truth for the entire application state.

    • Redux follows a unidirectional data flow pattern.

    • Actions are dispatched to update the state, which triggers a re-render of the UI.

    • Redux can be used with React, Angular, Vue, and other frameworks.

  • Answered by AI
  • Q8. Explain thunk
  • Ans. 

    Thunk is a function that delays the evaluation of an expression.

    • A thunk is a function that wraps an expression to delay its evaluation.

    • It is commonly used in Redux to handle asynchronous actions.

    • Thunks are used to dispatch actions that return a function instead of an object.

    • Thunks can be used to handle side effects in React components.

  • Answered by AI
  • Q9. What are callbacks
  • Ans. 

    Callbacks are functions passed as arguments to other functions and executed later.

    • Callbacks are used for asynchronous programming.

    • They allow a function to be called when an event occurs.

    • They can be used to handle errors in asynchronous code.

    • Examples include event listeners and setTimeout() function.

  • Answered by AI
  • Q10. Explain promises and it's 3 states
  • Ans. 

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

    • Promises have 3 states: pending, fulfilled, or rejected

    • Pending is the initial state when a promise is created

    • Fulfilled means the operation completed successfully

    • Rejected means the operation failed

    • Promises can be chained using .then() and .catch() methods

  • Answered by AI
  • Q11. Basic js output questions
  • Q12. React life cycle methods
  • Q13. Callback hell
  • Q14. Storage on html
  • Q15. Worker threads on js
  • Ans. 

    Worker threads allow for parallel execution of JavaScript code in the browser or Node.js environment.

    • Worker threads can be used to perform CPU-intensive tasks without blocking the main thread.

    • They can also be used to communicate between different scripts or modules.

    • In Node.js, worker threads can be created using the 'worker_threads' module.

    • In the browser, worker threads can be created using the 'Worker' constructor.

    • Exa...

  • Answered by AI
  • Q16. And I was asked to create a very basic input with toggle that print on the screen when in ON position what we enter in the input
  • Interview Preparation Tips

    Interview preparation tips for other job seekers - The interviewer was cold but the interview was easy

    Skills evaluated in this interview

    I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

    Interview Questionnaire 

    2 Questions

    • Q1. Simple problem solving skills. For example given coordinates find the area of triangle.
    • Ans. 

      To find the area of a triangle given coordinates, use the formula: (1/2) * base * height

      • Identify the coordinates of the three vertices of the triangle

      • Calculate the length of each side of the triangle using the distance formula

      • Use Heron's formula or the formula (1/2) * base * height to calculate the area

    • Answered by AI
    • Q2. Simple array questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - 1) DON'T hurry/haste towards the answer. Take a pause, breathe comfortably. Revert back with some clarification on the questions. It helps in many ways. First it clarifies some of your doubts regarding some edge cases that might come up in the problem. Second, it buys time for you to get the solution. Third by asking questions, the interview will understand that you are very good at fetching the parameters of a problem statement which is a huge thing. You can say it's problem half solved.
    2) Be confident in what you say. Important: If you don't know something (even if how simple it might be when you learn about it later), say you don't know. Period. Interviewers appreciate honesty. Don't beat about the bush.
    3) TALK to yourself LOUDLY on the mike while solving question. It not only gives you more focus while solving but also gives the opportunity to the interviewer to understand your thought process in problem solving which is one of the key things that the interviewer looks for in an interviewee.
    3) PRACTICE coding every single day for atleast half an hour. I would suggest Hackerrank is the best right now in the market. It even comes with "Interview Preparation Kit". Take that challenge. PRACTICE should inculcate TWO things. FIRST, Problems related to your language of choice.
    SECOND, problems unrelated to any language. Basically
    i) Data structures
    ii) Algorithms

    Wrike Interview FAQs

    What are the top questions asked in Wrike Senior Frontend Software Engineer interview?

    Some of the top questions asked at the Wrike Senior Frontend Software Engineer interview -

    1. Long polling vs Short poll...read more
    2. JS basic and advance concepts (Promises, Closures, Async/Await e...read more
    3. React Suspense and Error Bound...read more

    Tell us how to improve this page.

    Wrike Senior Frontend Software Engineer Interview Process

    based on 1 interview

    Interview experience

    3
      
    Average
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Infosys Interview Questions
    3.7
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    Mphasis Interview Questions
    3.4
     • 797 Interviews
    Amdocs Interview Questions
    3.8
     • 529 Interviews
    View all
    Compare Wrike with

    Zoho

    4.3
    Compare

    Freshworks

    3.5
    Compare

    TCS

    3.7
    Compare

    HCLTech

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