Upload Button Icon Add office photos

Allianz Technology

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Allianz Technology Senior Analyst Interview Questions and Answers

Updated 1 Nov 2022

Allianz Technology Senior Analyst Interview Experiences

2 interviews found

I applied via Walk-in and was interviewed before Nov 2021. 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 

Some logical questions plus basic technical questions on IT domain

Round 3 - Group Discussion 

GD based on random topics to check out the leadership qualities

Round 4 - One-on-one 

(2 Questions)

  • Q1. Face to face questions Self introduction and elaborating points as in the resume
  • Q2. What would be your goal to be after 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume attractive and make sure you are 200 percentage confident on points highlighted in it else, the recruiter assumes it as a copy paste document!

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. General questions nothing technical.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on CV details. Go through the CV thoroughly.

Senior Analyst Interview Questions Asked at Other Companies

Q1. Explain 3 statement financial model Calculating discount rate Cou ... read more
Q2. Tell me about your profile? What do you know about Transaction Mo ... read more
asked in Accenture
Q3. What do you understand by Budgeting and Forecasting?
Q4. Q4. What is the probability of getting 5 Sundays in 31 day month.
Q5. Q4. You are standing in a field. Chances of seeing atleast 1 plan ... read more

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Froud company beware
  • Q2. After cleared all round they kept you on hold and after offer letter they revoke offer letter any time

Interview Preparation Tips

Interview preparation tips for other job seekers - Froud company after giving offer letter they said you now our position is on hold and revoke your offer letter beware
Round 1 - One-on-one 

(1 Question)

  • Q1. Us health domain realated question . Testing basics. Situation reaction question
Round 2 - Technical 

(1 Question)

  • Q1. Testing and US health domain
Round 3 - HR 

(2 Questions)

  • Q1. Nothing, salary related discussion
  • Q2. Just normal salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Have faith in yourself. Be confidant. Have basic knowledge of everything
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Write a C++ program (logical) and OOPS concept, Basic,C concept such as memory and memory management techniques

Round 2 - Technical 

(6 Questions)

  • Q1. OOPS concepts in C++
  • Ans. 

    OOPS concepts in C++ include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Creating new classes from existing ones, inheriting their attributes and methods.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only

  • Answered by AI
  • Q2. Difference between C and C++
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a subset of C++

    • C does not support classes and objects, while C++ does

    • C++ supports function overloading and operator overloading, which C does not

    • C++ has a more complex syntax compared to C

  • Answered by AI
  • Q3. Multi threading
  • Q4. Difference between binary and linear search
  • Ans. 

    Binary search divides the array in half to find the target, while linear search checks each element one by one.

    • Binary search is more efficient for sorted arrays, while linear search works for unsorted arrays.

    • Binary search has a time complexity of O(log n), while linear search has a time complexity of O(n).

    • Example: Binary search - finding a word in a dictionary. Linear search - finding a name in a phone book.

  • Answered by AI
  • Q5. Time complexity of binary search and linear search. Which is better in which scenario
  • Ans. 

    Binary search has O(log n) time complexity, better for sorted arrays. Linear search has O(n) time complexity, better for small unsorted arrays.

    • Binary search has a time complexity of O(log n) as it divides the array in half at each step. It is better for sorted arrays.

    • Linear search has a time complexity of O(n) as it checks each element one by one. It is better for small unsorted arrays.

    • For example, if you have a large ...

  • Answered by AI
  • Q6. Mutex when do u use and example
  • Ans. 

    Mutex is used to prevent multiple threads from accessing shared resources simultaneously.

    • Use mutex when multiple threads need to access shared resources to avoid data corruption

    • Example: Using mutex to protect a critical section of code where shared data is being modified

    • Mutex can be used in multithreading applications to ensure data integrity and prevent race conditions

  • Answered by AI
Round 3 - One-on-one 

(7 Questions)

  • Q1. F2F round. What is memory management and how to achieve this
  • Q2. They give pen and paper. Write the code for wait in multi threading. Mutex and all...
  • Q3. How to implement string1 is equal to string2 without using inbuilt function. Create your own method/ function
  • Ans. 

    Create a custom method to check if two strings are equal without using inbuilt functions.

    • Iterate through each character of both strings and compare them one by one.

    • If the lengths of the strings are different, they are not equal.

    • Return true only if all characters match, otherwise return false.

  • Answered by AI
  • Q4. What is memcpy.
  • Ans. 

    memcpy is a function in C programming used to copy a block of memory from one location to another.

    • memcpy stands for memory copy.

    • It is used to copy a specified number of bytes from one memory location to another.

    • It is commonly used in C programming to copy arrays or structures.

    • Example: memcpy(destination, source, num_bytes);

  • Answered by AI
  • Q5. Difference between synchronous and asynchronous in multi threading.
  • Ans. 

    Synchronous means tasks are executed one after the other, while asynchronous allows tasks to run independently.

    • Synchronous execution waits for each task to finish before moving on to the next one.

    • Asynchronous execution allows tasks to start and finish independently of each other.

    • Synchronous threading can lead to blocking if one task takes a long time to complete.

    • Asynchronous threading can improve performance by allowin...

  • Answered by AI
  • Q6. Write a code to find if the string is present or not. Given character array of strings. {(ABC), (BCA), (DCA)} etc.
  • Ans. 

    Code to find if a string is present in an array of strings.

    • Iterate through the array of strings and compare each string with the target string.

    • Return true if the target string is found, false otherwise.

    • Use a loop and conditional statement to implement the search algorithm.

  • Answered by AI
  • Q7. Two cats are rotating in circular motion. What is the probability that they won't collide

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for F2F round as well

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. It was good interview

Interview Preparation Tips

Topics to prepare for TransUnion Senior Analyst interview:
  • Do not go for it
Interview preparation tips for other job seekers - Do not go for interview for this company. They have no ethics or respect for people who are appearing for junior roles.
They don't treat well..no information provided about the interview process and reschedule the interviews without intimation.
My overall experience is pathetic so I dropped the offer which I received after 13 weeks of my interview.
They take all documents after interview and then ghost you forever.
You will not hear back from them after interview and that shows the culture in the company.
Also I am happy with my decision since I got to know lot of micromanagement and lot of cost cutting is in pipeline.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

GD on previous experience, skillset, projects, educational background, guesstimates between candidate, team manager, and team lead

Round 2 - Coding Test 

SQL coding round, 5-6 queries were asked

Round 3 - Case Study 

Case study on SQL and Excel

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with SQL queries, Excel, and business logic for case study
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Roles Nd responsiblities
  • Q2. Day to day activities
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Group Discussion 

Tell me about a time you had to work with a group

Interview Preparation Tips

Interview preparation tips for other job seekers - Pretty easy interview. STAR method.

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were primarily around previous work experience and culture fit.
  • Ans. Read about the culture and have the interview move around the expectation
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about the company
Follow up with HRs. I had a poor experience with my HR. However it's worth

Allianz Technology Interview FAQs

How many rounds are there in Allianz Technology Senior Analyst interview?
Allianz Technology interview process usually has 4 rounds. The most common rounds in the Allianz Technology interview process are Resume Shortlist, Aptitude Test and Group Discussion.
How to prepare for Allianz Technology Senior Analyst 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 Allianz Technology. The most common topics and skills that interviewers at Allianz Technology expect are VMware, Windows Server, AWS, Advanced Excel and Ansible.

Tell us how to improve this page.

Allianz Technology Senior Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Allianz Technology Senior Analyst Salary
based on 333 salaries
₹4.3 L/yr - ₹16 L/yr
29% more than the average Senior Analyst Salary in India
View more details

Allianz Technology Senior Analyst Reviews and Ratings

based on 48 reviews

4.4/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.3

Salary

4.3

Job security

4.6

Company culture

3.8

Promotions

4.4

Work satisfaction

Explore 48 Reviews and Ratings
Senior Software Engineer
456 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Senior Analyst
333 salaries
unlock blur

₹4.3 L/yr - ₹16 L/yr

System Specialist
250 salaries
unlock blur

₹6.8 L/yr - ₹20.1 L/yr

Software Engineer
240 salaries
unlock blur

₹3 L/yr - ₹8.9 L/yr

Business Analyst
195 salaries
unlock blur

₹5 L/yr - ₹19.5 L/yr

Explore more salaries
Compare Allianz Technology with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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