Upload Button Icon Add office photos

Filter interviews by

WeInvest Interview Questions and Answers

Updated 12 May 2021

WeInvest Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Oops concepts , data structure , SQL query
  • Q2. Overlapping and merge array interval
  • Q3. Oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident, it's quite easy to crack

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (208)

Interview questions from similar companies

I appeared for an interview before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1.  Given k and DFS traversal string for a k-ary tree, construct the tree. The String contains P (if a parent) and L (if a leaf). E.g. - k=3, str="PPLLLLL" 2. All the strings are arranged in the following ord...
  • Ans. 

    The question asks to construct a k-ary tree using the given k and DFS traversal string.

    • Iterate through the DFS traversal string

    • If the current character is 'P', create a parent node

    • If the current character is 'L', create a leaf node

    • Link the nodes according to the DFS traversal order

  • Answered by AI
  • Q2. "How would you tell whether a graph has a node with n degree?"
  • Ans. 

    To determine if a graph has a node with n degree, iterate through all nodes and count their edges.

    • Iterate through each node in the graph

    • Count the number of edges connected to each node

    • If any node has n edges, then the graph has a node with n degree

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions on C++(Virtual fns, inheritance). Two on probability, 12 on Algorithms
Duration: 45 minutes

Round: Technical + HR Interview
Experience: He asked some more puzzles and some probability (expectation) questions. Then, he modified one question asked in the written test and asked me write code for it on paper.
Tips: First of all, prepare all the questions asked in the test before going for the interviews.


Skills evaluated in this interview

I applied via Company Website and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Asked about some general things related to trading and stock market.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident towards the interview questions and be honest while answering to the interviewer.

I applied via Referral

Interview Questionnaire 

2 Questions

  • Q1. Tell me about your experience in current company??
  • Q2. If you read the JD tell me how you can manage it.

Interview Preparation Tips

Interview preparation tips for other job seekers - We know communication skill is important. But you can't reject someone who is good in communication but they are speaking with english+hindi+ regional language. Then your object is you just need someone who is good in english. In India not every people knows english well. When we are hired in company we have to visiti market have to communicate other companies for business or communicate with clients. That time english is important but not necessary because if i am able to clarify the client or merchant with other language or mixed with english that is also skilled communication. You rejecting someone who is good in is field, technically sound, can write in English, but if he/she used 2/3 words in hindi/other language (which interviewer can understand) you can't reject them. If you reject them for this reason than you are just searching for english speaking parrot not a skilled employee.

I applied via Referral and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Good and well package

Interview Preparation Tips

Interview preparation tips for other job seekers - Field marketing Approaches is very important

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do u have bike?

Interview Preparation Tips

Interview preparation tips for other job seekers - They want people for this position,u have to just attend interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Write a program to Create a spiral array using 2D-array
  • Ans. 

    Program to create a spiral array using 2D-array

    • Create a 2D-array with given dimensions

    • Initialize variables for row, column, and direction

    • Fill the array in a spiral pattern by changing direction when necessary

    • Return the spiral array

  • Answered by AI
  • Q2. Write a program to find Minimum length of string in 'bdcabdcbaabbbac' containing substring 'abc'

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently got interviewed at PAYTM.I felt paytm will check your programming skills rather than your conceptual skills .In beginning they asked few questions related to concepts then they continued with only DS and algo.

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 minutes
Round difficulty - Medium

It consisted of three coding questions varying from easy to medium.

  • Q1. 

    Distributing Coins in a Binary Tree

    You are provided with the root of a binary tree that consists of 'N' nodes. Each node in this tree contains coins, and the total number of coins across all nodes is equ...

  • Ans. 

    Determine the minimum number of moves required to distribute coins in a binary tree so that every node has exactly one coin.

    • Traverse the binary tree in a bottom-up manner to distribute coins efficiently.

    • Keep track of the excess or deficit of coins at each node to calculate the minimum moves required.

    • Transfer coins from nodes with excess coins to nodes with deficits to balance the distribution.

    • Example: For the input ROO...

  • Answered by AI
  • Q2. 

    Distinct Subsets Count

    Given an array arr of N integers that may include duplicates, determine the number of subsets of this array containing only distinct elements.

    The result should be returned modulo ...

  • Ans. 

    Count the number of distinct-element subsets in an array modulo 10^9+7.

    • Iterate through the array and keep track of distinct elements using a set.

    • Calculate the number of subsets using the formula 2^distinct_count - 1.

    • Return the result modulo 10^9+7 for each test case.

  • Answered by AI
  • Q3. 

    0-1 Knapsack Problem Statement

    A thief is robbing a store and can carry a maximal weight 'W' in his knapsack. There are 'N' items, where the i-th item has a weight 'wi' and value 'vi'. Consider the maximu...

  • Ans. 

    The 0-1 Knapsack Problem involves maximizing the value of items a thief can steal within a weight limit.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the maximum value that can be achieved at each weight limit.

    • Iterate through the items and weights to fill the array with optimal values.

    • Return the maximum value achievable at the given weight limit.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The interview was focused on data structures as well as computer fundamentals along with puzzles.

  • Q1. 

    Sort an Array in Wave Form

    You are given an unsorted array ARR. Your task is to sort it so that it forms a wave-like array.

    Input:

    The first line contains an integer 'T', the number of test cases.
    For ea...
  • Ans. 

    Sort an array in wave form where each element is greater than or equal to its adjacent elements.

    • Iterate through the array and swap adjacent elements to form a wave pattern.

    • Ensure that the first element is greater than or equal to the second element.

    • There can be multiple valid wave arrays, so any valid wave array is acceptable.

  • Answered by AI
  • Q2. 

    Reverse a Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to reverse the Linked List by changing the links between nodes.

    Input:

    The first line of input contai...
  • Ans. 

    Reverse a given singly linked list by changing the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
Round 3 - Video Call 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Easy

The Round was mainly focused on resume+ dsa + system design +computer fundamentals

  • Q1. 

    Running Median Problem

    Given a stream of integers, calculate and print the median after each new integer is added to the stream.

    Output only the integer part of the median.

    Example:

    Input:
    N = 5  
    Stre...
  • Ans. 

    Calculate and print the median after each new integer is added to the stream.

    • Use a min heap to store the larger half of the numbers and a max heap to store the smaller half.

    • Keep the two heaps balanced by ensuring the size difference is at most 1.

    • If the total number of elements is odd, the median is the top of the larger heap. If even, average the tops of both heaps.

  • Answered by AI
  • Q2. Can you explain the implementation of an LRU (Least Recently Used) Cache in a database management system?
  • Ans. 

    LRU cache in a database management system stores most recently used data and removes least recently used data when full.

    • LRU cache is implemented using a doubly linked list and a hash map.

    • Each node in the linked list represents a key-value pair.

    • When a key is accessed, it is moved to the front of the linked list.

    • If the cache is full, the least recently used node at the end of the list is removed.

    • Example: If cache size is...

  • Answered by AI
  • Q3. Design a stack that supports the getMin() operation in O(1) time and O(1) extra space.
  • Ans. 

    Use two stacks - one to store actual values and one to store minimum values.

    • Use two stacks - one to store actual values and one to store minimum values

    • When pushing a new value, check if it is smaller than the current minimum and push it to the min stack if so

    • When popping a value, check if it is the current minimum and pop from min stack if so

    • getMin() operation can be done by peeking at the top of the min stack

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in NoidaEligibility criteria10th /12 th-60 % Btech-7 CGPAPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - DSA, OOPs, Computer Networking, System Design ,OOPsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Properly grasp over basic concepts
Tip 2 : Prepare good for DS & Algo as most companies have a separate round for it.
Tip 3 : Don't lie over your resume

Application resume tips for other job seekers

Tip 1 : Don't Lie over your resume
Tip 2 : Avoid unnecessary details like Hobbies, family details, declaration, date, signature, etc.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident .
They are just checking your communication skill

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What do you know about the company and what we do.
  • Ans. 

    The company is a leading provider of sales solutions and services.

    • The company offers a wide range of sales solutions, including CRM software, lead generation, and sales training.

    • They have a strong track record of helping businesses increase their sales and revenue.

    • The company has a team of experienced sales professionals who work closely with clients to understand their needs and provide tailored solutions.

    • They have a ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This is a very simple question but some people get confused about selling and comparing. The company compares the policy and provide you the best policy suited and sell policy.

WeInvest Interview FAQs

How to prepare for WeInvest 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 WeInvest. The most common topics and skills that interviewers at WeInvest expect are Wealth Management, Python, Operations, System Design and Debugging.
What are the top questions asked in WeInvest interview?

Some of the top questions asked at the WeInvest interview -

  1. Oops concepts , data structure , SQL que...read more
  2. Overlapping and merge array inter...read more
  3. Oops conce...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
PolicyBazaar Interview Questions
3.6
 • 349 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
Groww Interview Questions
3.7
 • 66 Interviews
Upstox Interview Questions
3.7
 • 35 Interviews
Paytm Money Interview Questions
3.2
 • 27 Interviews
Zerodha Interview Questions
4.1
 • 9 Interviews
ET Money Interview Questions
3.7
 • 1 Interview
Kuvera Interview Questions
3.5
 • 1 Interview
View all

WeInvest Reviews and Ratings

based on 10 reviews

2.3/5

Rating in categories

3.8

Skill development

3.0

Work-life balance

2.7

Salary

1.9

Job security

2.2

Company culture

1.9

Promotions

3.2

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer
19 salaries
unlock blur

₹5.9 L/yr - ₹18 L/yr

Business Analyst
11 salaries
unlock blur

₹11 L/yr - ₹16 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹9 L/yr - ₹25.6 L/yr

Devops Engineer
5 salaries
unlock blur

₹10 L/yr - ₹28 L/yr

UI/UX Designer
4 salaries
unlock blur

₹2.2 L/yr - ₹10.4 L/yr

Explore more salaries
Compare WeInvest with

Groww

3.7
Compare

Zerodha

4.2
Compare

Upstox

3.7
Compare

Paytm Money

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