Upload Button Icon Add office photos

Filter interviews by

Clear (1)

AlphaSense Senior Software Engineer Interview Questions and Answers

Updated 15 Mar 2024

AlphaSense Senior Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Asked me theoretical questions mostly on java internals like SOLID Principles, Mutable Classes, Locks in Java, Dependency injection, Memory management, GC Working, hashmap internals. How to make any class ...

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Quantitative, verbal, reasoning and basic technical questions.
Duration: 1 hour
Total Questions: 50

Round: Technical + HR Interview
Experience: Questions based on data structures, algorithms, and object oriented programming concepts.
Tested basic knowledge in Finance sector especially related to the company.

College Name: Delhi Technological University, Delhi

I applied via Referral

Interview Questionnaire 

3 Questions

  • Q1. Given two sorted arrays, say A and B, find A ­ B. Here, A ­ B means all those elements present in A but not in B. The expected time complexity was O(m + n), if A is of size m and B is of size n
  • Ans. 

    Find A-B of two sorted arrays A and B in O(m+n) time complexity.

    • Create two pointers, one for each array, and compare the elements at those pointers.

    • If the element in A is smaller, add it to the result array and move the A pointer forward.

    • If the element in B is smaller, move the B pointer forward.

    • Repeat until one of the pointers reaches the end of its array.

    • Add any remaining elements in A to the result array.

    • Time comple...

  • Answered by AI
  • Q2. 1. Write a routine to output the elements of the inorder traversal of a binary tree one by one in its each call. eg: Assuming the inorder traversal is 1, 2, 3, 4, 5, the routine should return 1 in its fi...
  • Ans. 

    The routine should output the elements of the inorder traversal of a binary tree one by one in each call.

    • Implement an inorder traversal algorithm recursively

    • Use a global variable or pass a reference to keep track of the current element

    • Call the routine repeatedly to get the next element in each call

  • Answered by AI
  • Q3. Given a set of courses along with the prerequisite courses for these courses, write a program to find the minimum number of semesters required to wrap up all the courses
  • Ans. 

    Program to find minimum semesters required to complete courses with prerequisites

    • Create a graph with courses as nodes and prerequisites as edges

    • Use topological sorting to find the order of courses to be taken

    • Calculate the minimum number of semesters based on the order obtained

    • Handle cases where there are cycles in the graph

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: exam was easy.
Tips: Be good in C programming
Duration: 75 minutes
Total Questions: 3

General Tips: Should be good in atleast c or c++
Skills: Algorithms And Data Structures
Duration: 2
College Name: IIT Madras
Motivation: The accomodation and facilities
Funny Moments: Interviews are not funny.

I applied via Campus Placement and was interviewed in Dec 2016. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Circular queues, binary trees, recursion
  • Q2. Asked about project

Interview Preparation Tips

Round: Test
Experience: 3 very simple questions on hackerrank.
Duration: 1 hour 30 minutes
Total Questions: 3

Round: Group Discussion
Duration: 1 hour

Round: Technical Interview
Experience: Asked me to code up a simple question

College Name: IIT Madras
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, JavaScript, and SQL.

    • 5 years of experience in software development

    • Proficient in Java, JavaScript, and SQL

    • Developed web applications for various clients

    • Strong problem-solving skills

    • Excellent team player

  • Answered by AI
  • Q2. What is your roles and responsibilities
  • Ans. 

    As a Software Developer, my roles and responsibilities include designing, developing, testing, and maintaining software applications.

    • Designing and developing software applications based on client requirements

    • Testing and debugging code to ensure functionality and performance

    • Collaborating with team members to brainstorm and implement new features

    • Maintaining and updating existing software applications

    • Staying up-to-date wi

  • Answered by AI
  • Q3. Explain about bug lifecycle
  • Ans. 

    Bug lifecycle involves identification, reporting, fixing, retesting, and closing of software bugs.

    • Identification: Bug is identified by testers or users through testing or real-world usage.

    • Reporting: Bug is reported to developers with detailed information like steps to reproduce.

    • Fixing: Developers analyze and fix the bug in the code.

    • Retesting: Testers verify the fix to ensure the bug is resolved.

    • Closing: Bug is closed o

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Case study with the topic provided
  • Q2. Questions on the resume

Skills evaluated in this interview

Interview Preparation Tips

Round: Pre-placement offer
Experience: Each intern was assigned a individual project and mentor.
In the last week of internship there was project presentation and interview.
interview was easy .For me 50% of the questions were about project and some questions about algorithms and DBMS.
More emphasis was given to the quality of work on project.

General Tips: Working in company is complete different from working on course project. learning many new frameworks required for the project was really challenging.
Programming : Tree, Btree, Tries ..
Operating System: Memory Management
Networks: OSI model
DBMS : basics. they dint ask me any. Show case your interest in big data, servers and passion for technology
Skill Tips: Be confident, even if you don't know the exact answer don't give up tell your approaches to interviewer. some times they will also help you. Software Developer some question s you can ask are: what technologies do your company works on. how are freshers will be selected to different teams in the company.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

4 Questions

  • Q1. Given a compact data structure to store strings sequentially, one byte stores length l of the string, next l bytes contain the string characters. Write a code to insert the given string at the ith place, m...
  • Ans. 

    The code inserts a given string at the specified position in a compact data structure that stores strings sequentially.

    • To insert the string at the ith place, we need to shift all the strings after the ith position by the length of the new string.

    • We can use a loop to iterate through the data structure and find the ith position.

    • After finding the ith position, we can calculate the new length of the data structure and allo...

  • Answered by AI
  • Q2. How will you construct parse tree for ((a+b)*c)/d? what all data structures can you use?
  • Ans. 

    Constructing parse tree for ((a+b)*c)/d using data structures.

    • Use stack data structure to keep track of operators and operands.

    • Start with the innermost parentheses and work outwards.

    • Create a node for each operator and operand and link them together.

    • The root node will be the final result of the expression.

    • Example: ((a+b)*c)/d can be represented as / -> * -> + -> a, b, c, d.

  • Answered by AI
  • Q3. Given a function f that returns true or false based on whether the input string satisfies some hidden criterion C, write a function that verifies that all sub strings satisfy C
  • Q4. You hand over 'n' identical linked lists to n salespersons. After the day's work, these salesperson return the lists. Merge these lists such that all insertions, deletions, updates are taken care of, so th...
  • Ans. 

    Merge 'n' identical linked lists from 'n' salespersons to handle insertions, deletions, and updates.

    • Iterate through each linked list and merge them into a single linked list

    • Handle insertions, deletions, and updates by traversing the merged list and making necessary changes

    • Repeat the process for the next day by resetting the merged list

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was an online test. The company who hosted the test messed up with the interface, and a lot of people had trouble with a coding question that could not be solved because of the faulty interface. There was no retest.
The shortlisting was done after studying compile attempts, time devoted to various sections and other performance measures.

Round: Technical Interview
Experience: Told about myself, my interests, my internship projects and my work so far.
A few coding questions were asked too.
In the end, they asked if i have any questions.
Tips: Interviewers are friendly. Be calm, give your best.

General Tips: Start preparing early.
Develop priorities both sector wise and company wise.
Take sufficient water and food with you. Interviews can start at 4 am on the first day!
Have enough copies of resume and transcripts with you.
If you have been shortlisted for many companies, it is preferable to have a portfolio manager who manages your phone during the day and enables you to focus on the interviews.
College Name: IIT KANPUR

Skills evaluated in this interview

Interview Preparation Tips

General Tips: Before going for the interviews, take a sheet of paper and write an error free code, with extremely well named variables and optimized runtime each on Matrices, Linked List and Binary Tree. This will ensure that you have confidence and don't feel rusty while writing the code. Check your code twice to make it error free before showing the interviewer.
Skill Tips: geeksforgeeks is the most valuable site. The questions are generally taken from there. Careercup.com has the most common questions asked by Microsoft. Try to even brush up on OS concepts. Some interviewers ask that too. Practice all questions on linked list. This is generally the first interview question.
College Name: NIT SURATHKAL

Interview Preparation Tips

General Tips: Don't ignore aptitude because it is really important. Never give up on any question in interview. Tell your interviewer anything you know about the question even if it is too simple to tell. Be confident.
College Name: NIT SURATHKAL
Contribute & help others!
anonymous
You can choose to be anonymous

AlphaSense Interview FAQs

How many rounds are there in AlphaSense Senior Software Engineer interview?
AlphaSense interview process usually has 1 rounds. The most common rounds in the AlphaSense interview process are Technical.
How to prepare for AlphaSense Senior Software Engineer 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 Python, Market Intelligence, Product Management, Equity Research and Backend.

Recently Viewed

INTERVIEWS

Tractebel

No Interviews

INTERVIEWS

Atlassian

No Interviews

INTERVIEWS

AlphaSense

No Interviews

SALARIES

Siemens EDA

INTERVIEWS

Atlassian

No Interviews

INTERVIEWS

AlphaSense

No Interviews

INTERVIEWS

AlphaSense

No Interviews

INTERVIEWS

Tractebel

No Interviews

INTERVIEWS

Tractebel

No Interviews

INTERVIEWS

AlphaSense

No Interviews

Tell us how to improve this page.

AlphaSense Senior Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
AlphaSense Senior Software Engineer Salary
based on 27 salaries
₹17.1 L/yr - ₹33 L/yr
69% more than the average Senior Software Engineer Salary in India
View more details

AlphaSense Senior Software Engineer Reviews and Ratings

based on 4 reviews

2.6/5

Rating in categories

2.9

Skill development

3.9

Work-life balance

2.6

Salary

2.6

Job security

2.3

Company culture

2.3

Promotions

2.9

Work satisfaction

Explore 4 Reviews and Ratings
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