Upload Button Icon Add office photos

Filter interviews by

CryoSave India Interview Questions and Answers

Updated 19 Jul 2017

CryoSave India Interview Experiences

1 interview found

Marketing Assistant Interview Questions & Answers

user image prashanth rahul

posted on 19 Jul 2017

I was interviewed in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. What was your previous experience
  • Ans. 

    I have 2 years of experience working as a Marketing Assistant at a tech startup.

    • Managed social media accounts and created engaging content

    • Assisted in organizing and promoting events

    • Conducted market research and analyzed data to identify trends

    • Collaborated with the sales team to develop marketing strategies

  • Answered by AI
  • Q2. Why you choose this job
  • Ans. 

    I chose this job because of my passion for marketing and desire to learn and grow in the field.

    • Passion for marketing and desire to learn and grow

    • Excited about the opportunity to work on various marketing projects

    • Interested in applying my skills and creativity to help promote products/services

    • Desire to contribute to the success of the company

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: HR had taken the interview and asked the questions of my work experiences ,education, previous what work you had doing etc...... Relaivent marketing executive had taken interview and asked questions about my previous work and education part and explained about my work roles and responsibility.....
Tips: They ask about knowledge of filed work and maintaining the godown stocks

Marketing Assistant Interview Questions asked at other Companies

Q1. How you will convince the customer
View answer (1)

Interview questions from similar companies

I was interviewed in Dec 2016.

Interview Questionnaire 

5 Questions

  • Q1. Number of 0s in 1 to 1000
  • Ans. 

    The number of 0s in 1 to 1000 is 192.

    • There are 1000 numbers from 1 to 1000.

    • Every 10 numbers have one 0 in the units place.

    • Every 100 numbers have ten 0s in the tens place.

    • Every 1000 numbers have one hundred 0s in the hundreds place.

    • Therefore, there are 1 + 10 + 100 + 81 = 192 0s in total.

  • Answered by AI
  • Q2. A simple question which can be converted to an easy linear equation. I don't remember the exact question though.
  • Q3. How to cut a cake in 8 equal parts
  • Ans. 

    Cut the cake in half, then cut each half in half again. Repeat once more to get 8 equal parts.

    • Use a long, sharp knife to make clean cuts.

    • Start by cutting the cake in half vertically.

    • Then cut each half in half horizontally.

    • Repeat the process once more to get 8 equal parts.

    • Use a cake divider or toothpicks to mark where to cut for even slices.

  • Answered by AI
  • Q4. HR questions based on resume
  • Q5. Why not core?
  • Ans. 

    Core is not the best fit for our current needs and goals.

    • Our current focus is on expanding our reach to new markets.

    • Core may not have the necessary features to support our growth plans.

    • We have evaluated multiple options and found a better fit for our requirements.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Everyone with CGPA > 6.5 were shortlisted.

Round: Test
Experience: Questions were not too difficult. You just need practice to solve them within the time limit.
Tips: Solve level 1 of all the chapters of Arun Sharma's Quantitative Aptitude. Also, take part in the weekly tests organized by pariksha.co .
Duration: 1 hour
Total Questions: 45

Round: HR Interview
Experience: Standard HR questions and resume based questions.

College Name: IIT Kanpur

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

10 Aptitude questions with difficulty level hard were asked in this test.

  • Q1. What is the minimum number of planes required to go around the world?
  • Ans. 

    The minimum number of planes required to go around the world is one.

    • One plane can fly around the world without needing to stop.

    • The plane can refuel mid-air or carry enough fuel for the entire journey.

    • Examples: Non-stop flights like the Boeing 787 Dreamliner or Airbus A350 can circumnavigate the globe with one plane.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions based on data structures and algorithms. Questions about previous projects done and my roles on it and my leadership capabilities. Few technical questions from Threads and multi-processing.

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Given a sorted N * N matrix, find the position of a target integer 'X'.

    • Start from the top-right corner of the matrix and compare the target with the element at that position.

    • Based on the comparison, move left or down in the matrix to narrow down the search.

    • Repeat the process until the target is found or the search goes out of bounds.

    • Return the position of the target if found, else return {-1, -1}.

  • Answered by AI
  • Q2. 

    Rectangular Numbers Problem Statement

    Ninja has a number 'N'. Your task is to generate a pattern where the outer rectangle is filled with the number 'N', and as you move inward, the numbers decrease conse...

  • Ans. 

    Generate a pattern with outer rectangle filled with number 'N' and decreasing consecutively inward.

    • Start by filling the outermost rectangle with the number 'N'.

    • Decrease the numbers consecutively as you move inward towards the center.

    • Continue this pattern until you reach the center of the rectangle.

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

DSA based questions were asked in this round. Questions on implementation of Linux directory structure were also asked.

  • Q1. 

    Binary Array Sorting Problem Statement

    You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting.

    Input:

     The fir...
  • Ans. 

    Yes, the binary array sorting problem can be solved in linear time and constant space using a single traversal.

    • Use two pointers approach to swap 0s to the left and 1s to the right.

    • Maintain two pointers, one for 0s and one for 1s, and swap elements accordingly.

    • Example: Input: [1, 0, 1, 0, 1], Output: [0, 0, 1, 1, 1]

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in an array to its right, if no greater element exists, return -1.

    • Iterate through the array from right to left and use a stack to keep track of elements.

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

    • Store the next greater element for each element in the output array.

  • Answered by AI
  • Q3. What is the difference between Binary Search Trees (BST) and Tries?
  • Ans. 

    BST is a binary tree structure where each node has at most two children, while Tries are tree structures used for storing strings.

    • BST is used for searching, inserting, and deleting elements in a sorted manner.

    • Tries are used for storing and searching strings efficiently.

    • BST has a hierarchical structure with left and right child nodes.

    • Tries have nodes representing characters, forming a tree-like structure for strings.

    • Exa...

  • Answered by AI
Round 4 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round. Questions about previous projects and current one were asked. I was also asked about aptitude problems from the first round and how I understood and approached towards solution?

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.

    • Generate valid configurations recursively and backtrack when a solution is not possible.

  • Answered by AI
  • Q2. 

    Form a Triangle Problem Statement

    You are provided with an integer array/list ARR of length N. Your task is to determine if it is possible to construct at least one non-degenerate triangle using the value...

  • Ans. 

    Check if it is possible to form a non-degenerate triangle using the sides provided in the array.

    • Check if the sum of any two sides is greater than the third side for all combinations.

    • If any such combination exists, return true; otherwise, return false.

    • Handle multiple test cases as per the constraints provided.

  • Answered by AI
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Behavioral questions and team skills were discussed in this round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAthenahealth interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This was a test round where 10 aptitude based questions were to be solved in 60 minutes

  • Q1. You have 5 pirates and 100 gold coins. The challenge is to determine how the pirates will divide the coins among themselves based on their ranking and the rules they follow.
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

They took us to the lab for this on and we were each given a paper with a program on it. It was all mixed as in each person got a different paper, You have around an hour to finish coding. after which you have to explain your code. They also gave wrong or incorrect inputs and see how your code handles these exceptions.

  • 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. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from the end to the beginning and append each character to a new string.

    • Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.

    • Handle special characters and numbers along with alphabets while reversing the string.

    • Ensure to consider the constraints provided in th...

  • Answered by AI
  • Q2. 

    K Largest Elements Problem Statement

    Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.

    Input:

    The fir...
  • Ans. 

    Implement a function to find K largest elements in an unsorted array in non-decreasing order.

    • Create a min heap of size K and insert the first K elements of the array

    • For each remaining element, if it is larger than the root of the heap, replace the root with the element and heapify

    • Finally, the heap will contain the K largest elements in non-decreasing order

  • Answered by AI
  • Q3. 

    Remove Character from String Problem Statement

    Given a string str and a character 'X', develop a function to eliminate all instances of 'X' from str and return the resulting string.

    Input:

    The first lin...
  • Ans. 

    Develop a function to remove all instances of a given character from a string.

    • Iterate through the string and build a new string excluding the specified character.

    • Use a StringBuilder or similar data structure for efficient string manipulation.

    • Handle edge cases like empty string or character not found in the input string.

    • Ensure the function completes within the given time constraint.

  • Answered by AI
  • Q4. 

    Triangle of Numbers Pattern

    Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34545
    4567654

    Explanation:

    The pat...

  • Ans. 

    Print a triangle pattern of numbers based on a given number 'N'.

    • Iterate through each row and column to determine the numbers to print

    • Use a combination of spaces and numbers to align the pattern correctly

    • Increment the numbers in each row based on the row number

  • Answered by AI
Round 3 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Compared to the other round this is more tech oriented. Lot more tech questions. It is of normal difficulty and is not that hard to clear, you only need to know the basics.
Very basic of Data Structure and Oracle knowledge enough. Lots of simple questions from data structures(insert into heaps etc). They did not ask to write code for DS, but rather to explain the logic through diagrams. For some complicated question, they expect how much you brainstorm ideas in solving

  • Q1. 

    Convert Binary Tree to Mirror Tree

    Convert a given binary tree into its mirror tree, where the left and right children of all non-leaf nodes are interchanged.

    Input:

    An integer ‘T’ denoting the number o...
  • Ans. 

    Convert a binary tree into its mirror tree by interchanging left and right children of non-leaf nodes.

    • Traverse the tree in postorder fashion and swap the left and right children of each node.

    • Use recursion to solve the problem efficiently.

    • Modify the binary tree in place without creating a new tree.

  • Answered by AI
  • Q2. 

    Heap Sort Problem Statement

    Given an array ARR consisting of N integers, your task is to use the Heap sort algorithm to arrange the array in non-decreasing order.

    Input:

    The first line of the input cont...
  • Ans. 

    Implement the Heap sort algorithm to arrange an array in non-decreasing order.

    • Implement the Heap sort algorithm to sort the given array in non-decreasing order

    • Use a max heap to sort the array in non-decreasing order

    • Time complexity of Heap sort is O(n log n)

  • Answered by AI
  • Q3. What is indexing in the context of databases?
  • Ans. 

    Indexing in databases is a technique used to improve the speed of data retrieval by creating a data structure that allows for quick lookups.

    • Indexes are created on specific columns in a database table to speed up queries that search for data in those columns.

    • Indexes work similar to the index of a book, allowing the database to quickly locate the desired data without having to scan the entire table.

    • Examples of indexes in...

  • Answered by AI
  • Q4. Which data structure is better for your use case: a B Tree or a Hash Table?
  • Ans. 

    Hash Table is better for fast lookups and insertions, while B Tree is better for range queries and ordered traversal.

    • Use Hash Table for fast lookups and insertions with O(1) average time complexity.

    • Use B Tree for range queries and ordered traversal with O(log n) time complexity.

    • Consider the size of the dataset and the specific operations needed to determine the best data structure.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This round lasted for around 30 minutes. It more of a character analysis round with a lot of HR type questions.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAthenahealth interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement

Interview Preparation Tips

Round: Other Interview
Experience: Q1.Tell me about yourself.
Then I was asked about my past internship, PoRs
Then I was asked why I wanted to do a non core internship.
After that, I was asked a puzzle (Similar to a puzzle in the book "Heard on the Street".
Then I was asked a guesstimate question. It was: Estimate the amount of Surf (washing powder) used in India everyday.
It lasted for around half an hour. It was a telephonic round
Tips: Be thorough with your resume. They mainly asked resume based questions in this round.

Regarding puzzles and guesstimates, walk your interviewer through your answer.

General Tips: Be thorough with your resume.
Practice puzzles and guesstimates.
Practice a few cases.
Skills: Presentation Of Facts In Resume, Project And Internship, Guesstimate Skills, Case Solving Ability, Quantitative Aptitude
Duration: 2
College Name: IIT Madras

Interview Questionnaire 

13 Questions

  • Q1. Doors were numbered from 1-100 and first time I close all doors next I open doors with numbers that are multiples of 2 next I close doors numbered with multiples of 3 and so on upto 100th time. After the 1...
  • Ans. 

    After opening and closing doors with multiples of their numbers, which doors are open?

    • Doors with odd number factors will be open after 100th time

    • Doors with even number factors will be closed after 100th time

    • Example: Door 16 will be closed after 100th time as it has factors 2, 4, 8, 16

  • Answered by AI
  • Q2. If I have 333 digits to number pages of a book, How many pages can I number ?
  • Ans. 

    333 digits can number 166 pages of a book.

    • Each page number takes up 2 digits.

    • The first page is numbered 01.

    • The last page that can be numbered is 166.

    • The remaining 2 digits are used for the cover page or other information.

  • Answered by AI
  • Q3. Many questions were asked like why are you joining this company ?
  • Q4. What makes you stand out from the other candidates?
  • Q5. What is your friends opinion on you ?
  • Q6. If I have to sell a new phone to a customer that is very costly, how will you approach the customer?
  • Ans. 

    To approach a customer for selling a costly new phone, I would focus on highlighting the unique features, benefits, and value it offers.

    • Understand the customer's needs and preferences

    • Highlight the unique features and benefits of the phone

    • Emphasize the value and long-term benefits of investing in a high-quality phone

    • Offer flexible payment options or financing plans

    • Provide comparisons with other phones to showcase the su...

  • Answered by AI
  • Q7. If your Manager gives you a task that can't be done what will you do ? Will you say directly that it can't be done or Will you waste time even though you know that it can't be done
  • Ans. 

    I will communicate the challenges and suggest alternative solutions.

    • I will first analyze the task and identify the challenges.

    • I will communicate the challenges to my manager and suggest alternative solutions.

    • I will work with my manager to find a feasible solution.

    • I will not waste time on a task that cannot be completed.

    • For example, if the task requires a budget that is not available, I will suggest alternative ways to ...

  • Answered by AI
  • Q8. What are your future plans and how our organization helps you in achieving those?
  • Q9. Are you flexible to work in every type of work environment ?
  • Q10. What do you do in your leisure times ?
  • Q11. How can you fit in our work environment ?
  • Q12. Why EXL?
  • Q13. Job or MBA ?

Interview Preparation Tips

Round: Test
Experience: Questions are not difficult, Time management is very important. It was very well designed test our overall abilities and communication skills. Test was online conducted by cocubes. Out of 220+ students who attempted test, only 27 were selected to next round. I expected them to select some 70-80 after 1st round.
Tips: Questions carry 1/3rd negative marks. Don't try to answer questions in order, find out easy questions and solve them first, as I said earlier, Time management is very important. I attempted arithmetic reasoning first, English (Verbal ability) next and then mathematical ability.
Duration: 45 minutes
Total Questions: 40

Round: Interview
Experience: I focused more on my approach to solve the puzzle and that paid off. I didn't prepare for puzzles either so I tried to solve it in my own way and that might have impressed the interviewer. Some other questions like how many benches are there in this campus ? and If I wanted to start a Food center in the campus, How many customers can I expect etc questions were asked. These questions don't have any perfect answer but they see the way in which you attempt and explain it convincingly.
Tips: Be confident. If they ask anything, answer properly so If they ask questions like How many customers can I expect a day after starting a food court in your college, don't just give any random number, try to do some math and give a number so that you can explain why you gave that number .

Round: Interview
Experience: This Interview is one of the best Interview Experiences I had. I was Interviewed by one of the senior vice presidents of the company. I enjoyed answering it. I know my strengths and weaknesses and I was frank to state my weaknesses and explained how I will over come them in my work place and all. I was asked a lot of questions and some times the interviewer twisted questions to see If I'm answering sincerely or just giving fake answers to the questions. This interview went so well that I was sure of my selection after this round.



And Interestingly, of the 27 members that were selected to 1st round of Interviews, I was 10th one as names were written alphabet wise. But I was the first one to be called out for 2nd round Interview.
Tips: Be clear and Confident with your answers. Answer after thinking for a while, they won't expect instant answers. Remember what you have answered as they might ask the same question again and you might get caught answering differently ( This happens when you fake your experiences and answers). Be frank, Sincere. You know your strengths and try to state your strengths to them (They might not ask you to say your strengths, you have to include them in some answers). Think different and answer in a way that most others won't.

Round: Interview
Experience: As I was confident of my selection after 2nd round of Interview, I stuck to my plans and answered well. I think this round was just to see If I would Join the company or not.
Tips: Stick to what you have answered earlier, they might compel you to change your answers just to see If you are confident with your answers. Remember that Raju's Interview in 3 Idiots ? He will be asked to be more diplomatic but he rejects that Idea .. My Interview was also similar.

Skill Tips: Answers which you read in internet are not your experiences, so they aren't to be copied. Assess yourself and your answers have to reflect your experiences. I didn't prepare anything for Campus placements as I was confident of my skills. I took time in analyzing myself and the way in which I have to project myself in Interviews. I didn't prepare for GD's and PI's .
Skills: Analytic abilities, Convincing skills, Communication skills, My approach to problems, My attitude
College Name: NIT SURAT

I was interviewed in Jul 2017.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself?
  • Ans. 

    I am a data analyst with a strong background in statistics and programming.

    • I have a Bachelor's degree in Statistics and have completed several courses in programming languages like Python and SQL.

    • I have experience working with large datasets and conducting data analysis using statistical techniques.

    • I am proficient in data visualization tools like Tableau and have created interactive dashboards to present insights.

    • I hav...

  • Answered by AI
  • Q2. Why this company?
  • Ans. 

    I am interested in this company because of its strong reputation in the data analytics industry and its commitment to innovation.

    • The company has a proven track record of success in the data analytics industry.

    • It has a strong reputation for delivering high-quality insights and solutions.

    • The company values innovation and encourages employees to think creatively.

    • There are opportunities for professional growth and developm...

  • Answered by AI
  • Q3. Why do you want to make a career in this field inspite being an engineer?
  • Ans. 

    I am passionate about using data to solve complex problems and make informed decisions.

    • Data analysis allows me to apply my analytical skills and engineering background to extract valuable insights from data.

    • I enjoy working with numbers, statistics, and programming, which are all essential skills in the field of data analysis.

    • Data analysis offers a wide range of opportunities to work on diverse projects and industries, ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The written test consists of 2 sections. First section is of verbal reasoning which is very easy. And second section consists of data interpretation, quant questions.
Tips: Speed and accuracy are important in this test. Daily practicing of aptitude can get you through the exam.
Duration: 45 minutes
Total Questions: 40

Round: Technical + HR Interview
Experience: After entering the interview room, the first question asked to me was "Walk me through your CV ".After that, I was asked some puzzle questions, one math question and a case study question which was bit difficult. The interviewer was trying to make me stressed by picking one of my strengths and saying that he considers it as my weakness. He was not convinced with whatever I said but in order to overcome above stress be clam and cool. Say what you know without hesitation, be strong, and be yourself. Last but not the least, don't bluff because he will eventually figure it out, even if you bluff say it convincingly.
Tips: Be perfect about what you have written in your CV and just be yourself.

Round: HR Interview
Experience: HR round was very cool . Actually the panel was friendly with me. They asked some common HR questions. That's it about this round.
Tips: Be fluent and develop good communication skills.

College Name: NIT Bhopal

Interview Preparation Tips

Round: Test
Experience: Online test of apti of easy level.
Total Questions: 15

Round: pseudo coding round
Tips: Brush up c or c++ for it. basic skills are needed.

Round: Group Discussion
Experience: THERE WAS A CASE STUDY ROUND INSTEAD OF GD. IT WAS DONE TO CHECK OUR THINKING AND IDEA GENERATION PROCESS

Round: HR Interview
Experience: My interview was based only on my industrial project and nothing else. Just know your project very well do it very seriously so that you are answerable to each and every question that will be bombarded over you!!!
And discover your passion till fourth year and accordingly choose the company. Do not experiment with your life and if confused talk to your seniors.

General Tips: WORK HARD ON YOUR APTITUDE AND VERBAL SKILLS AS IT WILL PROVE BENIFICIAL IN FIRST ROUND. MAKE A HABIT OF READING A ENGLISH NEWSPAPER DAILY.
Skill Tips: THE ROUNDS WHICH WERE HELD WERE VIDEO SYNTHESIS, PSEUDO CODE ROUND AND CASE STUDY ROUND WHICH WERE MORE IMPORTANT AS COMPARED TO INTERVIEW ROUND, ANY PERSON WHO HAS DONE WELL IN INTERMEDIATE ROUNDS BETWEEN APTITUDE AND INTERVIEW GENERALLY GOT SELECTED.
College Name: NIT RAIPUR

Interview Questionnaire 

8 Questions

  • Q1. Questions on descriptive statistics
  • Q2. What is mean, median, mode, etc?
  • Ans. 

    Mean, median, and mode are measures of central tendency used in statistics.

    • Mean is the average of a set of numbers. It is calculated by adding all the numbers and dividing by the total count.

    • Median is the middle value in a set of numbers. It is calculated by arranging the numbers in order and finding the middle value.

    • Mode is the most frequently occurring value in a set of numbers.

    • These measures are used to describe the...

  • Answered by AI
  • Q3. Some basic problems on differentiation/integration
  • Q4. Some basic problems on series (formulas etc)
  • Q5. Internship and college projects
  • Q6. Reason for choosing Analytics as career over technology jobs
  • Ans. 

    Analytics offers a unique blend of technology and business acumen, providing insights that drive strategic decisions.

    • Analytics allows me to work with data and technology while also understanding the business implications of my findings.

    • I enjoy the challenge of finding patterns and insights in data that can help businesses make informed decisions.

    • Analytics is a growing field with a high demand for skilled professionals,...

  • Answered by AI
  • Q7. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior business analyst leading a team of analysts and contributing to the growth of the company.

    • Leading a team of analysts

    • Contributing to the growth of the company

    • Developing new skills and knowledge

    • Building strong relationships with stakeholders

    • Taking on more responsibilities

  • Answered by AI
  • Q8. Did not ask puzzles in my interview although they were asked in some of the interviews (basic puzzles)

Interview Preparation Tips

Round: Test
Experience: LR, DI, Verbal (Not very tough, speed is important)

Round: Group Discussion
Experience: Topic for debate - Role of social media in present day revolutions

Round: HR Interview
Experience: 1. Internship and college projects

2. Reason for choosing Analytics as career over technology jobs

3. Where do you see yourself in 5 years?

4. Did not ask puzzles in my interview although they were asked in some of the interviews (basic puzzles)

College Name: NA

Business Analyst Interview Questions & Answers

Mu Sigma user image Korra Jagadeeshwar

posted on 6 Mar 2015

Interview Questionnaire 

1 Question

  • Q1. Every Question to test my confidence and strength to respond to a situation basing on my answers

Interview Preparation Tips

Round: Test
Experience: Good standard questions
Tips: Be good at your mathematics tricks.
Duration: 20 minutes
Total Questions: 15

Round: ProgRAmming Knowledge Test
Experience: Basic c programming algorithms
very easy indeed
Tips: be good at basics of C

Round: Group Discussion
Experience: Very much interactive one and a good one to talk on.
Tips: Be sure on what you talk and be ready to respond to each and every opinion.
Duration: 30 minutes

Round: Video Synthesis
Experience: A video on Mu Sigma Belief System, a good one to analyse.
Tips: Never summarize the video.

Round: HR Interview
Experience: Being Confident is the main plus point for me.
The Interviewer was a cool minded and also good at manipulating our answers to form the next question.
Tips: Be Confident throughout the interview and show them you are meant to be at this job.
And make sure you don't cook up any fake story , you may get caught somewhere in the interview.
And never feel tensed, just give it your best shot.

General Tips: Just show the interviewer how confident you are and what you are capable of.
Skills: Confidence with which you can work, Readiness to work hard
College Name: VIT VELLORE
Motivation: A best company that can be found in today's Indian Economy for Business Analysts and their principle of learning over knowing is the best.
Funny Moments: The HR team is really friendly and they shared a lot of funny moments, one among them is the chat we had on monkeys and people as monkeys.

Tell us how to improve this page.

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 738 Interviews
Mu Sigma Interview Questions
2.6
 • 229 Interviews
Access Healthcare Interview Questions
3.9
 • 208 Interviews
Straive Interview Questions
3.4
 • 175 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
Indegene Interview Questions
3.4
 • 151 Interviews
Nielsen Interview Questions
3.7
 • 117 Interviews
Kantar Interview Questions
3.5
 • 96 Interviews
Netscribes Interview Questions
2.8
 • 83 Interviews
View all

CryoSave India Reviews and Ratings

based on 12 reviews

4.0/5

Rating in categories

4.0

Skill development

3.8

Work-life balance

3.4

Salary

3.2

Job security

3.8

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 12 Reviews and Ratings
Compare CryoSave India with

EXL Service

3.7
Compare

Access Healthcare

3.9
Compare

AGS Health

4.0
Compare

Straive

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