Upload Button Icon Add office photos

Filter interviews by

Axxela Research & Analytics Trainee Analyst Interview Questions and Answers

Updated 26 Nov 2024

Axxela Research & Analytics Trainee Analyst Interview Experiences

3 interviews found

Trainee Analyst Interview Questions & Answers

user image Sammy Jain

posted on 11 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Aptitude Test 

Guesstimates, puzzles,maths question

Round 2 - Assignment 

Maths question, number series,reasing question

Round 3 - Trading game 

(3 Questions)

  • Q1. Game of trading
  • Ans. 

    Game of trading involves buying and selling assets to make a profit in a competitive market.

    • Players compete to buy low and sell high

    • Market conditions and player decisions impact prices

    • Strategies include risk management and market analysis

  • Answered by AI
  • Q2. Buy and sell the share
  • Ans. 

    Buying and selling shares involves purchasing and selling stocks in the stock market to make a profit.

    • Research the company and its financial performance before buying shares

    • Monitor market trends and news that may impact the stock price

    • Set a target price for selling shares to make a profit

    • Consider using a brokerage platform to execute trades

    • Keep track of your investments and adjust your strategy as needed

  • Answered by AI
  • Q3. Buy at less and sell at high
  • Ans. 

    The concept of buying low and selling high is a fundamental principle in investing and trading.

    • Buy low means purchasing an asset at a price lower than its perceived value.

    • Sell high means selling the asset at a price higher than the purchase price to make a profit.

    • This strategy requires market analysis, timing, and risk management.

    • Example: Buying stocks during a market dip and selling them when the market recovers for a

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. 111*61,77*73,19 cube
  • Q2. Why axxela ,no.of students in this room
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude and numerical questions in this round

Round 2 - Group Discussion 

A general pool game round for group of candidates.

Round 3 - HR 

(1 Question)

  • Q1. General questions about yourself and some basic question about trading.

Trainee Analyst Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Minimum Stops for Ninja's Journey Problem Statement Ninja wishes ... read more
asked in Cognizant
Q2. Reverse the String Problem Statement You are given a string STR w ... read more
asked in Cognizant
Q3. Black Friday Discount Challenge Imagine it's Black Friday and a s ... read more
asked in Cognizant
Q4. Ninja and His Secret Information Encoding Problem Ninja, a new me ... read more
asked in Deloitte
Q5. Explain your projects !! Which Programming languages do u know ? ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Test based on numericals additions and subtraction

Interview questions from similar companies

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

I applied via campus placement at Shri Vaishnav Institute of Management, Indore and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions, reasoning and English questions time was very less, 1min/question approx

Round 2 - Coding Test 

2 questions one was of easy level other was of medium level

Round 3 - One-on-one 

(3 Questions)

  • Q1. Basic questions on Oops concept
  • Q2. Basics of your programming language
  • Q3. Situational awareness questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 4 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 - Aptitude Test 

Just Basic Questions

Round 3 - Technical 

(1 Question)

  • Q1. SQL and SDLC Questions asked. Not too difficult.
Round 4 - HR 

(1 Question)

  • Q1. Just Basic Discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and speak clear. All the best.

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

Coding question 2 easy,1 hard

  • Q1. 

    Minimum Stops for Ninja's Journey Problem Statement

    Ninja wishes to travel from his house to a destination X miles away. He knows there are Y gas stations along the way, each station i located at a distan...

  • Ans. Recursion

    The simple idea that we use in this approach will be to check all the available paths. For this we create a recursive function let’s say MINIMUM_STOP_HELPER() that will return the desired path. The function will take fuel left, distance travelled, next gas station, and the array of all the stations as its parameters.

     

    The base conditions for this recursive function will be:

     

    • If you have enough fuel
    • If y...
  • Answered Anonymously
  • Q2. 

    Black Friday Discount Challenge

    Imagine it's Black Friday and a supermarket is offering a discount to every 'Nth' customer. You are tasked with calculating bills for customers based on product prices and ...

  • Ans. Counting Number of Previous Customers

    We can simply start by creating a hashmap that stores each product ID and corresponding price. For each customer, calculating the bill amount is simple, just multiply the quantity by the price of each product they purchased.

     

    We also keep a count of previous customers and increase it as soon as generateBill is called. If this count is divisible by ‘N’, we simply apply the discou...

  • Answered Anonymously
  • Q3. 

    Ninja and His Secret Information Encoding Problem

    Ninja, a new member of the FBI, has acquired some 'SECRET_INFORMATION' that he needs to share with his team. To ensure security against hackers, Ninja dec...

  • Ans. Brute Force

    For encoding the given ‘SECRET_INFORMATION’ we can use any algorithm. Here first, we append the number of words of ‘SECRET_INFORMATION’ and ‘!’ into our resultant decoding string ‘ENCODED_INFORMATION’. Then we append the length of each word and ‘!’. At last, we find the ‘ASCII’ value of each character and then add 3 into the ASCII value. Then we convert this ASCII value into a character and replace this with...

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

Asked me how to reverse string,tell me about yourself,visualise data structures in real life,dbms questions easy one

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. Optimal Solution
    • Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
    • Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only constant extra space is required.

    Time Complexity: O(...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. I applied for the job as Analyst Trainee in GurgaonEligibility criteriaAbove 70 percent marksCognizant interview preparation:Topics to prepare for the interview - Basic of data structures, OOPS theory, classes, python, dbmsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : don't get afraid
Tip 2 : keep your machine ready, there should not be technical probelem like mic not working
Tip 3 : dress well

Application resume tips for other job seekers

Tip 1 : mention your project
Tip 2 : mention your skills

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Versant test 

(1 Question)

  • Q1. It will be a computer based versant test.
  • Ans. In this round, you will have to give a test based on your communication skills. Basically, the test checks your reading, writing, and listening and speaking skills.
  • Answered by S K
Round 3 - Technical 

(2 Questions)

  • Q1. In this round, they will ask questions related to troubleshooting
  • Q2. Network related questions will also be asked like OSI Layers, different type of network, RJ45 connector

Interview Preparation Tips

Topics to prepare for HCLTech Trainee Analyst interview:
  • Computer Hardware
  • Troubleshooting Skills
Interview preparation tips for other job seekers - Your communication skills needs to be improved and you should have a good computer knowledge. Then I think it will be easier to crack the interview.

Trainee Analyst Interview Questions & Answers

Deloitte user image Bindu Madhavi Akula

posted on 7 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are osi layers
  • Ans. 

    The OSI (Open Systems Interconnection) model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.

    • Layer 1 - Physical layer: Deals with physical connections and transmission of raw data.

    • Layer 2 - Data link layer: Manages data frames and error detection.

    • Layer 3 - Network layer: Handles routing and logical addressing.

    • Layer 4 - Transport layer: Ensu...

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Basic OOPs

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare what you have given in resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quantitative , Reasoning and verbal

Round 2 - Coding Test 

Any one language that you can choose and there will be given 2 codes with limited time and each consists 3-4 test cases each.

Round 3 - Technical 

(2 Questions)

  • Q1. Based on my projects & skills that i have mentioned in my resume also we have to thorough with the latest technologies.
  • Q2. Some coding questions that we have to type code in their console and some hr questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with the updated resume and improve your skills day by day.

Axxela Research & Analytics Interview FAQs

How many rounds are there in Axxela Research & Analytics Trainee Analyst interview?
Axxela Research & Analytics interview process usually has 2-3 rounds. The most common rounds in the Axxela Research & Analytics interview process are Aptitude Test, Group Discussion and HR.
What are the top questions asked in Axxela Research & Analytics Trainee Analyst interview?

Some of the top questions asked at the Axxela Research & Analytics Trainee Analyst interview -

  1. Buy at less and sell at h...read more
  2. Buy and sell the sh...read more
  3. Game of trad...read more

Tell us how to improve this page.

Axxela Research & Analytics Trainee Analyst Interview Process

based on 3 interviews

1 Interview rounds

  • Aptitude Test Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Axxela Research & Analytics Trainee Analyst Salary
based on 21 salaries
₹8 L/yr - ₹16.9 L/yr
225% more than the average Trainee Analyst Salary in India
View more details

Axxela Research & Analytics Trainee Analyst Reviews and Ratings

based on 4 reviews

1.3/5

Rating in categories

1.5

Skill development

1.2

Work-life balance

3.4

Salary

1.0

Job security

1.3

Company culture

2.0

Promotions

1.3

Work satisfaction

Explore 4 Reviews and Ratings
Trainee Analyst
21 salaries
unlock blur

₹8 L/yr - ₹16.9 L/yr

Market Analyst
14 salaries
unlock blur

₹11.5 L/yr - ₹15 L/yr

Senior Marketing Analyst
12 salaries
unlock blur

₹8 L/yr - ₹18 L/yr

Analyst
7 salaries
unlock blur

₹14 L/yr - ₹14.1 L/yr

Market Analyst Trainee
4 salaries
unlock blur

₹14 L/yr - ₹14.1 L/yr

Explore more salaries
Compare Axxela Research & Analytics with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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