Upload Button Icon Add office photos

NASDAQ

Compare button icon Compare button icon Compare

Filter interviews by

NASDAQ Interview Questions and Answers

Updated 14 Jul 2025
Popular Designations

14 Interview questions

A Senior Technical Analyst was asked 1mo ago
Q. How can heap and thread dumps be collected for Java-based applications?
Ans. 

Heap and thread dumps can be collected using various tools and commands to analyze Java application performance.

  • Use jmap to create a heap dump: `jmap -dump:live,format=b,file=heapdump.hprof <pid>`.

  • Use jstack to collect thread dumps: `jstack <pid> > threaddump.txt`.

  • Enable heap dumps on OutOfMemoryError by adding `-XX:+HeapDumpOnOutOfMemoryError` to JVM options.

  • Use VisualVM or JConsole for GUI-based m...

View all Senior Technical Analyst interview questions
A Senior Data Engineer was asked 3mo ago
Q. How do you check logs in Airflow?
Ans. 

Airflow logs can be accessed via the web UI, CLI, or directly from the log files on the server.

  • Access logs through the Airflow web UI by navigating to the specific DAG and task instance.

  • Use the command line interface (CLI) with the command: `airflow tasks logs <dag_id> <task_id> <execution_date>`.

  • Logs are stored in the `logs` directory of your Airflow home, typically found at `~/airflow/logs/`.

  • Yo...

View all Senior Data Engineer interview questions
A QA Analyst was asked 10mo ago
Q. What are common bugs encountered when writing a calculator program?
Ans. 

Basic bugs in calculator program include incorrect calculation results, input validation issues, and handling of edge cases.

  • Incorrect calculation results due to rounding errors or improper order of operations

  • Input validation issues such as allowing non-numeric characters or dividing by zero

  • Handling of edge cases like large numbers, negative numbers, or overflow/underflow

View all QA Analyst interview questions
A Data Engineer was asked
Q. Write SQL queries to retrieve manager salaries.
Ans. 

SQL queries can be used to retrieve and analyze manager salary data from a database.

  • Use SELECT statement to retrieve salary data: SELECT salary FROM employees WHERE position = 'Manager';

  • Aggregate functions like AVG can calculate average manager salary: SELECT AVG(salary) FROM employees WHERE position = 'Manager';

  • Use GROUP BY to analyze salaries by department: SELECT department, AVG(salary) FROM employees WHERE pos...

View all Data Engineer interview questions

What people are saying about NASDAQ

View All
a senior data engineers
1w
Nasdaq interview process and RSU
I would like to know the interview process of Nasdaq and regarding RSU, how much they provide as part of RSU?
Got a question about NASDAQ?
Ask anonymously on communities.
A Senior Software Developer was asked
Q. Given an array containing only 0s and 1s, how would you separate the 0s and 1s?
Ans. 

Separate 0s and 1s in the given array

  • Iterate through the array and count the number of 0s and 1s

  • Create two separate arrays, one for 0s and one for 1s

  • Add the elements to their respective arrays based on their values

  • Return the two arrays as the result

View all Senior Software Developer interview questions
A Recovery Officer was asked
Q. How should one invest?
Ans. 

Investing wisely involves researching different investment options, setting financial goals, diversifying your portfolio, and seeking professional advice.

  • Research different investment options to understand the risks and potential returns

  • Set clear financial goals to determine your investment strategy

  • Diversify your portfolio to spread risk across different asset classes

  • Consider seeking advice from a financial adviso...

View all Recovery Officer interview questions
Be interview-ready. Browse the most asked HR questions.
illustration image
A Recovery Officer was asked
Q. What are the methods to recover lost funds?
Ans. 

Recovering lost funds involves thorough investigation, legal action, and negotiation with debtors.

  • Conduct a thorough investigation to determine the cause of the loss

  • Take legal action against debtors who refuse to repay the funds

  • Negotiate with debtors to come up with a repayment plan

  • Utilize debt collection agencies or legal services if necessary

View all Recovery Officer interview questions
Are these interview questions helpful?
A Recovery Officer was asked
Q. How do you recover lost funds?
Ans. 

Recovering lost funds involves identifying, tracking, and reclaiming misallocated or stolen financial resources.

  • Identify the source of the lost funds, such as fraud or clerical errors.

  • Gather all relevant documentation, including transaction records and communications.

  • Engage with financial institutions to trace and recover funds, like filing a dispute with a bank.

  • Utilize legal avenues if necessary, such as reportin...

View all Recovery Officer interview questions
A System Development Senior Specialist was asked
Q. Explain the DevOps process.
Ans. 

DevOps is a software development approach that combines development and operations teams to streamline the software delivery process.

  • DevOps emphasizes collaboration, communication, and automation.

  • It involves continuous integration and continuous delivery (CI/CD) pipelines.

  • DevOps teams use tools like Docker, Kubernetes, and Jenkins to automate processes.

  • DevOps also involves monitoring and feedback loops to improve ...

View all System Development Senior Specialist interview questions
A Senior Technical Analyst was asked 1mo ago
Q. Can you explain the Object-Oriented Programming (OOP) concepts with examples from your previous organization? What steps would you follow to troubleshoot a slowness issue? Can you describe the thread life c...
Ans. 

Explaining OOP concepts, troubleshooting slowness, and thread life cycle in a technical context.

  • OOP concepts: Encapsulation, Inheritance, Polymorphism, and Abstraction.

  • Example of Encapsulation: Using classes to hide data and expose methods for interaction.

  • Inheritance example: A 'Vehicle' class with 'Car' and 'Bike' subclasses inheriting common properties.

  • Polymorphism example: A method that behaves differently base...

View all Senior Technical Analyst interview questions

NASDAQ Interview Experiences

22 interviews found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. E-commerce system design
  • Ans. 

    Designing an e-commerce system involves creating a platform for online buying and selling.

    • Consider scalability to handle high traffic and transactions

    • Implement secure payment gateways for safe transactions

    • Include user-friendly interfaces for easy navigation

    • Utilize recommendation engines for personalized shopping experiences

  • Answered by AI
  • Q2. Bookmyshow low level design

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Aman Sharma

posted on 28 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Focus on little bit of dynamic programming

Round 2 - Technical 

(5 Questions)

  • Q1. Apache spark architecture and ecosystem along with memory management
  • Q2. SQL queries for manager salary
  • Ans. 

    SQL queries can be used to retrieve and analyze manager salary data from a database.

    • Use SELECT statement to retrieve salary data: SELECT salary FROM employees WHERE position = 'Manager';

    • Aggregate functions like AVG can calculate average manager salary: SELECT AVG(salary) FROM employees WHERE position = 'Manager';

    • Use GROUP BY to analyze salaries by department: SELECT department, AVG(salary) FROM employees WHERE position...

  • Answered by AI
  • Q3. Python decorators --> @
  • Q4. RANK and other window functions
  • Q5. Joins along with use case
  • Ans. 

    Joins are used in SQL to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Use cases for joins include combining customer data with order data, merging employee information with department details

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 14 Jul 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025, where I was asked the following questions.

  • Q1. Why nasdaq and why this role
  • Q2. What is your experience with python and sql
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

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

Round 1 - One-on-one 

(9 Questions)

  • Q1. How to make a successful withdrawal and also recover lost funds
  • Ans. 

    To make a successful withdrawal and recover lost funds, one must follow proper procedures and utilize available resources.

    • Verify the account details and ensure all necessary information is correct before initiating the withdrawal.

    • Contact the financial institution or platform where the funds were lost to report the issue and request assistance in recovering the funds.

    • Utilize any available security features such as two-f...

  • Answered by AI
  • Q2. Here. I can teach you on how you successful withdraw your funds and also guide you on how you can recover stolen funds
  • Q3. How to invest w
  • Q4. How to recover lost funds
  • Ans. 

    Recovering lost funds involves thorough investigation, legal action, and negotiation with debtors.

    • Conduct a thorough investigation to determine the cause of the loss

    • Take legal action against debtors who refuse to repay the funds

    • Negotiate with debtors to come up with a repayment plan

    • Utilize debt collection agencies or legal services if necessary

  • Answered by AI
  • Q5. Lost funds recovery
  • Q6. Scam recovery site
  • Q7. Lost funds recover
  • Q8. Lost funds recov
  • Ans. 

    Recovering lost funds involves identifying, tracking, and reclaiming misallocated or stolen financial resources.

    • Identify the source of the lost funds, such as fraud or clerical errors.

    • Gather all relevant documentation, including transaction records and communications.

    • Engage with financial institutions to trace and recover funds, like filing a dispute with a bank.

    • Utilize legal avenues if necessary, such as reporting to ...

  • Answered by AI
  • Q9. How to withdraw

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are having a withdrawal problem or do you lose funds to any scam company registered or non registered here i can guide you on how you will successfully withdraw your money or recover lost funds ashleyphiliprecovery @ counsellor . com or ashleyphiliprecovery @ gmail. com
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. Por==roject role?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Sep 2024.

Round 1 - Coding Test 

DSA, Hashmap, OOPS, Job Role, Project

Interview Questions & Answers

user image Anonymous

posted on 4 Jul 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test was around 2hrs. Mcq was given. An coding questions in c,js,c++,python and sql
Questions were very easy

Round 2 - Technical 

(2 Questions)

  • Q1. Basic python question
  • Q2. Sql queries and linux commands, and some situation type questions

QA Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - MCQ test 

(1 Question)

  • Q1. Some questions on java,python
Round 2 - Technical 

(2 Questions)

  • Q1. Method overloading and method overriding
  • Q2. What are basic bug we face when we write calculator program
  • Ans. 

    Basic bugs in calculator program include incorrect calculation results, input validation issues, and handling of edge cases.

    • Incorrect calculation results due to rounding errors or improper order of operations

    • Input validation issues such as allowing non-numeric characters or dividing by zero

    • Handling of edge cases like large numbers, negative numbers, or overflow/underflow

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NASDAQ QA Analyst interview:
  • Basic concepts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1.Transient ,Scoped,Singleton with all different use case. Scoped with transient combination questions. 2.String and string builder in detail and performance impact 3.Logging ,Exception handling etc 4.Sche...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Coding Test 

Multiple choice Questions were based on java 8 and having time limit of up to 20 seconds and there are 2 very basic java coding question on string and looping

NASDAQ Interview FAQs

How many rounds are there in NASDAQ interview?
NASDAQ interview process usually has 1-2 rounds. The most common rounds in the NASDAQ interview process are Technical, Coding Test and One-on-one Round.
How to prepare for NASDAQ 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 NASDAQ. The most common topics and skills that interviewers at NASDAQ expect are Python, Linux, Agile, Flex and SQL.
What are the top questions asked in NASDAQ interview?

Some of the top questions asked at the NASDAQ interview -

  1. Can you explain the Object-Oriented Programming (OOP) concepts with examples fr...read more
  2. How to make a successful withdrawal and also recover lost fu...read more
  3. What are basic bug we face when we write calculator prog...read more
How long is the NASDAQ interview process?

The duration of NASDAQ interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 23 interview experiences

Difficulty level

Easy 19%
Moderate 75%
Hard 6%

Duration

Less than 2 weeks 33%
2-4 weeks 40%
4-6 weeks 13%
6-8 weeks 7%
More than 8 weeks 7%
View more

Interview Questions from Similar Companies

Go-Jek Interview Questions
3.7
 • 31 Interviews
ICE Data Services Interview Questions
3.2
 • 25 Interviews
TMF Group Interview Questions
3.8
 • 23 Interviews
Toppan Merrill Interview Questions
4.0
 • 20 Interviews
Travelex Interview Questions
3.5
 • 19 Interviews
CME Group Interview Questions
4.2
 • 17 Interviews
DTCC Interview Questions
4.1
 • 16 Interviews
IQ-EQ Interview Questions
3.3
 • 13 Interviews
View all

NASDAQ Reviews and Ratings

based on 130 reviews

3.7/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.6

Salary

3.5

Job security

3.8

Company culture

2.9

Promotions

3.6

Work satisfaction

Explore 130 Reviews and Ratings
Senior Software Developer
82 salaries
unlock blur

₹14.2 L/yr - ₹24 L/yr

Senior Software Engineer
76 salaries
unlock blur

₹18 L/yr - ₹30.1 L/yr

Software Development Specialist
54 salaries
unlock blur

₹22.9 L/yr - ₹38.2 L/yr

Software Engineer
43 salaries
unlock blur

₹7 L/yr - ₹48.9 L/yr

Software Developer
32 salaries
unlock blur

₹8.6 L/yr - ₹18 L/yr

Explore more salaries
Compare NASDAQ with

Stock Holding Corporation of India

3.6
Compare

TMF Group

3.8
Compare

Manappuram Home Finance

4.0
Compare

Travelex

3.5
Compare
write
Share an Interview