Premium Employer

i

This company page is being actively managed by FNZ Team. If you also belong to the team, you can get access from here

FNZ Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

FNZ Technical Analyst Interview Questions and Answers

Updated 27 Dec 2024

FNZ Technical Analyst Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

First Round is Aptitude Round.
Second Round is technical inteview.
Third round is HR Round.

Round 2 - Technical 

(2 Questions)

  • Q1. Rotate a array by D places.
  • Ans. 

    Rotate an array of strings by D places.

    • Create a temporary array to store elements that will be rotated

    • Copy elements from original array to temporary array based on rotation

    • Copy elements back from temporary array to original array

  • Answered by AI
  • Q2. Find Maximum in subarray
  • Ans. 

    To find the maximum value in a subarray within an array of numbers.

    • Iterate through the array and keep track of the maximum value seen so far.

    • For each subarray, compare the maximum value with the current element and update if necessary.

    • Return the maximum value found in the subarray.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is Your Strength and weakness Family background why do we hire you
  • Ans. 

    My strength lies in my analytical skills and attention to detail, while my weakness is sometimes being too critical of my own work. I come from a supportive family background and believe my qualifications make me a strong candidate for this role.

    • Strength: Analytical skills

    • Strength: Attention to detail

    • Weakness: Being too critical of my own work

    • Family background: Supportive and encouraging

    • Qualifications make me a strong

  • Answered by AI

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Strength and weakness
Round 2 - Technical 

(1 Question)

  • Q1. Private equity waterfall

Interview Preparation Tips

Topics to prepare for ICICI Direct Senior Associate interview:
  • Investment Banking
  • Hedge Funds
  • Private Equity
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Behavioral 

(2 Questions)

  • Q1. Tell me a tough challenge
  • Ans. 

    Leading a team through a major project deadline with limited resources

    • Delegating tasks effectively to maximize efficiency

    • Finding creative solutions to overcome resource constraints

    • Maintaining team morale and motivation during high-pressure situations

  • Answered by AI
  • Q2. Tell me about how you convinced your superiors
  • Ans. 

    I convinced my superiors by presenting a well-researched and data-driven proposal that clearly outlined the benefits and potential outcomes.

    • Researched the topic thoroughly to gather relevant data and information

    • Prepared a detailed proposal highlighting the benefits and potential outcomes

    • Presented the proposal in a clear and concise manner, addressing any concerns or objections

    • Provided examples of successful implementat

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your work history well. It should come out as a story
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 2 interview rounds.

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 - Technical 

(2 Questions)

  • Q1. What is financial budgeting and analysis
  • Ans. 

    Financial budgeting and analysis involves creating and managing a financial plan to achieve business goals.

    • Financial budgeting involves creating a plan for income and expenses over a specific period of time.

    • Financial analysis involves reviewing financial data to identify trends, opportunities, and potential risks.

    • Both budgeting and analysis are important for making informed financial decisions and achieving business ob...

  • Answered by AI
  • Q2. Talk about the topic and also highlight the best practices you use.
  • Ans. 

    The topic is best practices for senior associates.

    • One best practice is to prioritize tasks and manage time effectively.

    • Another best practice is to communicate clearly and effectively with team members and clients.

    • A third best practice is to continuously learn and stay updated on industry trends and developments.

    • Additionally, building strong relationships and networking with colleagues and clients is crucial.

    • Lastly, att...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Self introduction
Round 2 - Assignment 

PPT Assignment comparing all APIs

Round 3 - One-on-one 

(1 Question)

  • Q1. Domain knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - The HR is non responsive. After spending 3-4 days completing the assignment, traveling to their office for a final round they don't even have the courtesy to give the candidate proper feedback. I followed up every 3 days and after 2 weeks they just dropped me a message saying that I'm not selected without even giving any feedback.
Round 1 - One-on-one 

(1 Question)

  • Q1. Myself and stock market knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself and have some of the market knowledge

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Use Floyd's Cycle Detection Algorithm to determine if there is a cycle in the linked list.

    • Maintain two pointers, one moving at double the speed of the other, if they meet at any point, there is a cycle.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    Find the Next Greater Element for each element in a list of integers.

    • Iterate through the list of integers from right to left.

    • Use a stack to keep track of elements for which the Next Greater Element is not yet found.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • Assign the Next Greater Element as the top element of the stack or -1 if the stack is empty.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. How would you design an ATM machine?
  • Ans. 

    Designing an ATM machine involves considering user interface, security measures, transaction processing, and hardware components.

    • User interface should be intuitive and easy to navigate for users of all ages.

    • Implement security measures such as PIN entry, card authentication, and encryption to protect user data.

    • Transaction processing should be fast and reliable, with options for cash withdrawals, deposits, transfers, and...

  • Answered by AI
Round 3 - HR 

Round duration - 45 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAGroww interview preparation:Topics to prepare for the interview - DSA, Database Systems, OOP, Operating Systems, Computer NetworksTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA daily
Tip 2 : Try to think of the solution first before jumping to the solution
Tip 3 : Go through interview experience
Tip 4 : Have mock interviews

Application resume tips for other job seekers

Tip 1 : Know in depth what is there in your resume
Tip 2 : Mention your skills and work properly

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Preparation Tips

Topics to prepare for Angel One Software Developer interview:
  • Python
  • SQL
Interview preparation tips for other job seekers - Very nice and smooth interview process and quick responses.

I applied via Approached by company and was interviewed in Dec 2021. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions. 1 was basic level. 2 was of medium level.

Round 2 - One-on-one 

(2 Questions)

  • Q1. An ambiguous problem statement was given. Asking relevant questions revealed the problem to be largest island in a binary matrix. Was asked to code on an ide. And reduce space complexity to O(1).
  • Q2. Maximum sum path from root to leaf in an N-ary tree. Was asked to design an appropriate data structure. Then code the solution in O(n) time and O(1) space.
Round 3 - One-on-one 

(3 Questions)

  • Q1. Through discuss of projects. Methods used.
  • Q2. First missing positive number in an array of integer in O(n) time O(1) space.
  • Ans. 

    Find first missing positive number in an array in O(n) time and O(1) space.

    • Traverse the array and mark the presence of each positive integer by changing the sign of the corresponding index.

    • Traverse the array again and return the index of the first positive integer.

    • If all integers are present, return the length of the array + 1.

    • Example: [3, 4, -1, 1] => mark 3rd and 4th index as negative => return 2.

    • Example: [1, 2, 0] =...

  • Answered by AI
  • Q3. Given an integer, print the relevant column name in an excel sheet. Ex: 1- A , 2-B.......... 26-Z , 27-AA, 28-AB........ Was asked code on an ide and test cases were given.
  • Ans. 

    Given an integer, print the relevant column name in an excel sheet.

    • Create a string array of alphabets from A to Z

    • Use modulo operator to get remainder and divide by 26 to get quotient

    • Append the corresponding alphabet to the result string

    • Reverse the result string

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and past experience.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Topics:-
Duration-1.5 hours
Kadane's Algorithm, Even Numbers at even index & odd at odd index, print out the second highest node of the tree

Round 2 - One-on-one 

(1 Question)

  • Q1. DSA ZigZag tree traversal OS Architecture of RAM Types of RAM Difference between compiler and interpreter What is a scheduler What is multithreading Disadvantages of FCFS and how can we use RoundRobin to ...
  • Ans. 

    ZigZag tree traversal is a method to traverse a binary tree in a zigzag pattern.

    • In ZigZag tree traversal, we visit the nodes of a binary tree in a zigzag pattern, moving from left to right and then right to left.

    • We can use a stack or a queue to implement ZigZag tree traversal.

    • The algorithm involves maintaining two stacks or two queues to keep track of the nodes at each level.

    • We start with the root node and alternate be...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with Basics and fundamentals

Skills evaluated in this interview

FNZ Interview FAQs

How many rounds are there in FNZ Technical Analyst interview?
FNZ interview process usually has 3 rounds. The most common rounds in the FNZ interview process are Aptitude Test, Technical and HR.
What are the top questions asked in FNZ Technical Analyst interview?

Some of the top questions asked at the FNZ Technical Analyst interview -

  1. Rotate a array by D plac...read more
  2. Find Maximum in subar...read more

Tell us how to improve this page.

FNZ Technical Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join FNZ Join us as we open up wealth

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 481 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
3.9
 • 135 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
HDFC Securities Interview Questions
3.6
 • 104 Interviews
Sharekhan Interview Questions
3.9
 • 81 Interviews
CapitalOne Interview Questions
3.7
 • 78 Interviews
View all
Test Analyst
106 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FNZ with

Zerodha

4.1
Compare

Upstox

3.7
Compare

Groww

3.7
Compare

Paytm Money

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