Upload Button Icon Add office photos

Filter interviews by

AlphaSense Interview Questions, Process, and Tips

Updated 8 Sep 2024

Top AlphaSense Interview Questions and Answers

View all 15 questions

AlphaSense Interview Experiences

Popular Designations

13 interviews found

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

2 Coding problems , MCQs (CS related, ML related)

  • Q1. 

    Connect Nodes at Same Level Problem Statement

    An assignment is to link adjacent nodes at the same level in a binary tree. Each node in a binary tree has at most two children (left and right) and a next po...

  • Ans. 

    Connect adjacent nodes at the same level in a binary tree by setting next pointers.

    • Traverse the tree level by level using a queue.

    • For each level, connect nodes using the next pointer.

    • Set the next pointer of the last node in each level to NULL.

    • Use constant space aside from input constraints.

    • Example: Input - 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, Output - 1 # 2 3 # 4 5 6 # 7 #

  • Answered by AI
  • Q2. 

    Loop Detection and Removal in Linked List

    In a singly linked list, detect if a loop exists and remove the loop if present. Modify the linked list directly to eliminate any loops before returning it.

    Inpu...

  • Ans. 

    Detect and remove loop in a singly linked list efficiently.

    • Use Floyd's Cycle Detection Algorithm to detect the loop in the linked list.

    • Once the loop is detected, use two pointers to find the start of the loop.

    • Break the loop by setting the next pointer of the last node in the loop to null.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

2 Coding problems, No compilation of code. Only pseudocode required

  • Q1. 

    Median of Two Sorted Arrays

    Given two sorted arrays A and B of sizes N and M, find the median of the merged array formed by combining arrays A and B. If the total number of elements, N + M, is even, the m...

  • Ans. 

    Find the median of two sorted arrays by merging them and calculating the median of the combined array.

    • Merge the two sorted arrays into one sorted array.

    • Calculate the median of the merged array based on the total number of elements.

    • If the total number of elements is even, take the mean of the two middle elements as the median.

  • Answered by AI
  • Q2. 

    Extracting Leaf Nodes from a Binary Tree

    Given a binary tree, develop a solution to retrieve a list of all the leaf nodes in the order they appear from left to right. If two leaf nodes are equidistant fro...

  • Ans. 

    Retrieve leaf nodes from a binary tree in left to right order, prioritizing lesser depth or smaller node data if equidistant from leftmost node.

    • Traverse the binary tree in level order and keep track of leaf nodes.

    • Prioritize leaf nodes with lesser depth or smaller node data if equidistant from leftmost node.

    • Return the list of leaf nodes in the order they appear from left to right.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Hard

OS-CN fundamentals

  • Q1. What is a peer-to-peer connection?
  • Ans. 

    A peer-to-peer connection is a network connection between two or more devices without the need for a central server.

    • Allows devices to communicate directly with each other

    • Each device can act as both a client and a server

    • Commonly used in file sharing applications like BitTorrent

  • Answered by AI
  • Q2. What are some key concepts related to virtual memory, and can you discuss any follow-up questions that may arise from them?
  • Ans. 

    Key concepts related to virtual memory and potential follow-up questions

    • Key concepts: paging, segmentation, page tables, TLB, page faults, thrashing

    • Follow-up questions: How does virtual memory differ from physical memory? What is the role of the operating system in managing virtual memory? How does virtual memory improve system performance?

    • Example: Explain the concept of page tables and how they are used in virtual mem

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Delhi Technological University. Eligibility criteriaComputer related branchesAlphaSense, Inc. interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude, OS,CNTime required to prepare for the interview - 9 monthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume

Application resume tips for other job seekers

Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top AlphaSense Software Developer Interview Questions and Answers

Q1. Connect Nodes at Same Level Problem Statement An assignment is to link adjacent nodes at the same level in a binary tree. Each node in a binary tree has at most two children (left and right) and a next pointer to the next right node at the ... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview Questionnaire 

15 Questions

  • Q1. Core java
  • Q2. Oops concepts
  • Q3. Encapsulation and abstraction
  • Q4. Interface and abstract class
  • Q5. Collection
  • Q6. Selenium wait
  • Q7. Conditional wait
  • Q8. Expected conditions in selenium
  • Ans. 

    Expected conditions are pre-defined conditions that can be used to wait for a certain state or element in Selenium.

    • ExpectedConditions.elementToBeClickable() - waits for an element to be clickable

    • ExpectedConditions.visibilityOfElementLocated() - waits for an element to be visible

    • ExpectedConditions.titleContains() - waits for the page title to contain a certain text

  • Answered by AI
  • Q9. What is webdriver and webelement
  • Ans. 

    WebDriver is a tool for automating web applications. WebElement is an interface representing an HTML element.

    • WebDriver is a browser automation tool used to control the browser and interact with web elements

    • WebElement is an interface representing an HTML element on a web page

    • WebDriver interacts with web elements using the WebElement interface

    • Examples of web elements include buttons, text fields, and links

  • Answered by AI
  • Q10. Multi window handling
  • Q11. Api automation
  • Q12. Cypress and java script
  • Q13. Jenkins, project setup
  • Q14. Array max
  • Q15. Wait for file loading
  • Ans. 

    To wait for file loading in Selenium Automation, we can use explicit wait or thread.sleep() method.

    • Explicit wait is used to wait for a specific condition to occur before proceeding with the next step.

    • Thread.sleep() method is used to pause the execution for a specified amount of time.

    • We can also use the ExpectedConditions class to wait for a file to be loaded.

    • Waiting for a file to be loaded is important to ensure that t

  • Answered by AI

Skills evaluated in this interview

Selenium Automation Interview Questions asked at other Companies

Q1. Write a program to remove duplicate character in a string if there are multiple users in an application, and if the buttons in the applications are specific to particular user, you need to perform operation in those button, what will you do... read more
View answer (1)
AlphaSense Interview Questions and Answers for Freshers
illustration image

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

Interview Questionnaire 

10 Questions

  • Q1. Oops concepts
  • Q2. Collection
  • Q3. Difference between abstract and interface
  • Ans. 

    Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods. Interface is a blueprint for a class and can only have abstract methods.

    • Abstract class can have constructors while interface cannot

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Abstract class can have instance variables while interface cannot

    • Abstract class is used for code r...

  • Answered by AI
  • Q4. Pom module
  • Q5. Maven
  • Q6. Jenkins
  • Q7. File downloading wait
  • Q8. Array max, second array max
  • Q9. Login with multiple credentials which are stored in one excel sheet
  • Ans. 

    Multiple credentials can be logged in using data from an excel sheet.

    • Read the excel sheet using a library like Apache POI

    • Iterate through the rows and columns to get the data

    • Use a loop to login with each set of credentials

    • Assert the login success or failure for each set of credentials

  • Answered by AI
  • Q10. Explicit wait and implicit wait

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to give answer in straight forward way, if don't know then move forward

Skills evaluated in this interview

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

Jobs at AlphaSense

View all
Contribute & help others!
anonymous
You can choose to be anonymous

AlphaSense Interview FAQs

How many rounds are there in AlphaSense interview?
AlphaSense interview process usually has 2-3 rounds. The most common rounds in the AlphaSense interview process are One-on-one Round, Resume Shortlist and Coding Test.
How to prepare for AlphaSense 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 AlphaSense. The most common topics and skills that interviewers at AlphaSense expect are Equity Research, Market Intelligence, Python, Monitoring and Recruitment.
What are the top questions asked in AlphaSense interview?

Some of the top questions asked at the AlphaSense interview -

  1. Login with multiple credentials which are stored in one excel sh...read more
  2. Tell me about a data engineering challenge you faced. How did you tackle it and...read more
  3. Create a program who prints last 10 lines from a file and that program will tri...read more

Recently Viewed

SALARIES

DBS Bank

JOBS

AlphaSense

No Jobs

SALARIES

Siemens EDA

SALARIES

Atlassian

DESIGNATION

INTERVIEWS

Tractebel

No Interviews

INTERVIEWS

Tractebel

No Interviews

LIST OF COMPANIES

Gabriel India

Overview

DESIGNATION

INTERVIEWS

Atlassian

No Interviews

Tell us how to improve this page.

AlphaSense Interview Process

based on 10 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 823 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
S&P Global Interview Questions
4.1
 • 275 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 205 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Bloomberg Interview Questions
3.4
 • 24 Interviews
Moody's Interview Questions
4.1
 • 22 Interviews
View all

AlphaSense Reviews and Ratings

based on 37 reviews

3.0/5

Rating in categories

2.8

Skill development

3.2

Work-life balance

3.2

Salary

2.6

Job security

3.1

Company culture

2.6

Promotions

2.7

Work satisfaction

Explore 37 Reviews and Ratings
Global Benefits Specialist

New Delhi,

Pune

2-8 Yrs

Not Disclosed

Analyst, Client & Product Support

New Delhi

1-2 Yrs

Not Disclosed

Analyst, Client & Product Support

Mumbai

1-2 Yrs

Not Disclosed

Explore more jobs
Content Analyst
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare AlphaSense with

Bloomberg

3.4
Compare

Thomson Reuters

4.1
Compare

FactSet

3.9
Compare

S&P Global

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