Upload Button Icon Add office photos

Filter interviews by

Wrike Staff Engineer Interview Questions and Answers

Updated 13 Dec 2024

Wrike Staff Engineer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. HR asked about my experience, how I work with current team, whether you worked on KMP already. HR also asked 2-3 technical questions like HashSet manipulation, Android activity lifecycle and hashcode in J...

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay patient with the HR, and be prepared for 4-5 technical rounds with DSA, System design etc

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. The question were related to sql and power bi
  • Q2. How do you do data analysis before building the reports? What steps do you take?
  • Ans. 

    Before building reports, I conduct data analysis by following a structured process.

    • Define the objective of the analysis and the key questions to be answered

    • Collect relevant data from various sources

    • Clean and preprocess the data to ensure accuracy and consistency

    • Perform exploratory data analysis to identify patterns and trends

    • Use statistical methods and tools to analyze the data

    • Visualize the data using charts, graphs, a...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Adobe Staff Engineer interview:
  • SQL
  • Power Bi
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Leetcode medium questions were asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

- DP cost optimisation Problem
- Object orient design question like design a vending machine

Round 3 - Technical 

(1 Question)

  • Q1. - Design patterns questions - Questions on aws
Round 4 - Technical 

(1 Question)

  • Q1. - How to measure api performance - jvm related questions
Round 5 - HR 

(1 Question)

  • Q1. Why hire? Your strength? How you will contribute?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Strings and Arrays the interview was of 1hour and basics of java and framework was asked

Round 3 - Technical 

(1 Question)

  • Q1. No second round was scheduled for me.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Search and sort alogorithm, remove duplicate item in array and how many times its repeated

Round 2 - Technical 

(1 Question)

  • Q1. Rotate array with how many times the array was rotated. testing questions. team management questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - algorithm focused. leet code would be the best source for preparation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Code snippets apti to guess output

Round 2 - Coding Test 

5 questions with each 15 min time

Round 3 - Coding Test 

Long coding with 2 hrs time

Round 4 - Technical 

(2 Questions)

  • Q1. Db modelling for accounting app
  • Ans. 

    Database modeling for an accounting application

    • Identify entities such as customers, invoices, transactions, and accounts

    • Establish relationships between entities (e.g. one-to-many, many-to-many)

    • Consider normalization to reduce redundancy and improve data integrity

    • Use primary keys and foreign keys to maintain data consistency

    • Implement constraints to enforce business rules (e.g. unique constraints, check constraints)

  • Answered by AI
  • Q2. Class diagram and system design for any fintech app
  • Ans. 

    A fintech app class diagram and system design involves modeling classes, relationships, and interactions for financial services.

    • Identify key classes such as User, Account, Transaction, and Payment

    • Define relationships between classes (e.g. User has many Accounts, Account has many Transactions)

    • Consider security measures for sensitive financial data

    • Include features like authentication, authorization, and encryption

    • Design ...

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Nov 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

In first round, I was not able to complete code but explained the solution. 
Tip : Try to practice coding even if you have 10 years of experience.

  • Q1. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    This question could be solved using Binary search which would have a time complexity of O(log n). The approach would be: 
    1. Find the mid = (low + high)/2
    2. If key is present at middle point, return mid.
    3. If arr[low….mid] is sorted
    a) If key to be searched lies in range from arr[low] to arr[mid], apply binary search for arr[low..mid].
    b) Else apply for arr[mid+1..high]
    4. Else (arr[mid+1..high] must be sorted)
    a) If k...

  • Answered Anonymously
  • Q2. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Ans. 

    Greedy approach can be used here. If observed carefully , it can be concluded that it is always optimal to shift the elements towards the median element among the persons or the center person among all the persons present. The number of jumps will always be minimum when we shift points to the median
    Steps :
    1. Create an array/ list to store the indexes of the persons present.
    2. Find the median of the created list. All th...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Round 2 went very good. They gave a design question in this round.

  • Q1. Design a file searching functionality for Windows and Mac that includes indexing of file names.
  • Ans. 

    Tip 1 : Design your structure and functions according to the requirements and try to convey your thoughts properly to the interviewer so that you do not mess up while implementing the idea .
    Tip 2 : Before you jump into the solution always clarify all the assumptions you’re making at the beginning of the interview. Ask questions to identify the scope of the system. This will clear the initial doubt, and you will get to ...

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

The third round was also a design round.

  • Q1. How would you design a system for MakeMyTrip?
  • Ans. 

    Tip 1: Firstly, remember that the system design round is extremely open-ended and there’s no such thing as a standard answer. Even for the same question, you’ll have a totally different discussion with different interviewers.
    Tip 2:Before you jump into the solution always clarify all the assumptions you’re making at the beginning of the interview. Ask questions to identify the scope of the system. This will clear the in...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAVMware Software India Private Limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the process for designing a thread-safe concurrent transaction application?
  • Q2. Find middle element of linkedlist
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. It was ML system design where they asked me to design Quora
  • Q2. Code Kmeans from scratch

Wrike Interview FAQs

How many rounds are there in Wrike Staff Engineer interview?
Wrike interview process usually has 1 rounds. The most common rounds in the Wrike interview process are HR.

Tell us how to improve this page.

Wrike Staff Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
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
 • 796 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