Upload Button Icon Add office photos
Engaged Employer

i

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

Tiger Analytics Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 601 Reviews

Filter interviews by

Tiger Analytics Senior Developer Lead Interview Questions and Answers

Updated 17 Sep 2023

Tiger Analytics Senior Developer Lead Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(1 Question)

  • Q1. Experience in terraform Azure DevOps CI/CD Kubernetes Monitoring
  • Ans. 

    I have extensive experience in Terraform, Azure DevOps CI/CD, Kubernetes, and monitoring tools.

    • Implemented infrastructure as code using Terraform to automate provisioning of resources

    • Set up CI/CD pipelines in Azure DevOps for automated deployment

    • Managed Kubernetes clusters for container orchestration

    • Utilized monitoring tools like Prometheus and Grafana for performance tracking

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Devops head takes final round. He is from sales background and he talks nicely. Dont get cheated by him. if you are good candidate my advice is not to join Tiger DevOps

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(10 Questions)

  • Q1. Tell me about yourself and the project you have done
  • Q2. Have you work on the spring boot freamwork
  • Q3. Collection framework
  • Q4. Write a program to make a Linkedlist, you have to develop the logic for the linkedlist suppose your are the first who is going to invent the linkedlist what would be the apporach how you create the add/del...
  • Q5. Have you worked on the Data Structures
  • Ans. 

    Yes, I have worked on various data structures like arrays, linked lists, stacks, queues, trees, and graphs.

    • I have implemented algorithms using data structures like sorting, searching, and traversal.

    • I have optimized code by choosing the appropriate data structure for the problem.

    • I have used data structures in projects to efficiently store and manipulate data.

  • Answered by AI
  • Q6. Have you worked on the Multithreading
  • Ans. 

    Yes, I have experience working on Multithreading in Java.

    • Implemented multithreading using Java's Thread class

    • Used synchronized keyword to handle thread synchronization

    • Utilized Executor framework for managing thread pools

  • Answered by AI
  • Q7. Write a program to find the min and max no from the array
  • Ans. 

    Program to find min and max no from array of strings

    • Iterate through the array and compare each element to find min and max

    • Use Integer.parseInt() to convert strings to integers for comparison

    • Initialize min and max variables with first element of array

  • Answered by AI
  • Q8. Difference between the @controller vs @restcontroller
  • Ans. 

    The @Controller annotation is used to create a controller class in Spring MVC, while @RestController is used to create RESTful web services.

    • The @Controller annotation is used to create a controller class in Spring MVC, which is used to handle traditional web requests.

    • The @RestController annotation is used to create RESTful web services, which return data in JSON or XML format.

    • The @RestController annotation is a special...

  • Answered by AI
  • Q9. Difference between the @service vs @Repository
  • Ans. 

    The @Service annotation is used to mark a class as a service, while the @Repository annotation is used to mark a class as a repository.

    • The @Service annotation is typically used on service layer classes, which contain business logic.

    • The @Repository annotation is typically used on repository classes, which interact with a database or other data source.

    • Both annotations are used for component scanning and dependency inject...

  • Answered by AI
  • Q10. Difference between the Arrylist vs Linkedlist
  • Ans. 

    ArrayList is implemented using a dynamic array while LinkedList is implemented using a doubly linked list.

    • ArrayList provides fast access to elements using index, but slow insertion and deletion.

    • LinkedList provides fast insertion and deletion, but slow access to elements.

    • Example: ArrayList is suitable for scenarios where random access is required, while LinkedList is suitable for scenarios where frequent insertion and d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through above all question the interview was taken by pran sukh for the pune location

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Sonarqube, different type of code smells, and how its implemented in CI CD
  • Ans. 

    Sonarqube is a static code analysis tool used to detect code smells and bugs in code. It is integrated into CI/CD pipelines for continuous code quality checks.

    • Sonarqube is a static code analysis tool that identifies code smells, bugs, and security vulnerabilities in code.

    • Code smells are common programming issues that may indicate a deeper problem in the code. Examples include duplicated code, long methods, and complex ...

  • Answered by AI
  • Q2. Write a program to find the numbers divisble by 3 in a string - and reverse its indexes eg : - input : String s = "123456789" output String s = "129456783"
  • Ans. 

    Program to find numbers divisible by 3 in a string and reverse their indexes.

    • Iterate through the string and check if each character is a number divisible by 3.

    • Store the divisible numbers in an array and reverse their indexes.

    • Join the array back into a string and return the result.

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How does consumer, producer work in kafka
  • Ans. 

    Consumers read data from topics, while producers write data to topics in Kafka.

    • Consumers subscribe to topics to read messages from them

    • Producers publish messages to topics for consumers to read

    • Consumers can be part of a consumer group to scale out consumption

    • Producers can specify key for messages to control partitioning

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics about angular
  • Q2. Javascript concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - "I attended an interview with this company and waited for a couple of days for a response. When I tried contacting HR, specifically Prasanna Lekkalapudi, she kept disconnecting my calls. In her text responses, she was unprofessional and dismissive, even stating that she doesn't care about my feedback. She mentioned that she has seen many people like me in her career. This kind of behavior reflects poorly on the company. I strongly advise against joining this organization, as it does not value your time, effort, or patience."
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. To connect to your DB what you use in Spring boot
  • Ans. 

    In Spring Boot, we use Spring Data JPA to connect to the database.

    • Use @EnableJpaRepositories annotation in the main application class to enable JPA repositories

    • Define datasource properties in application.properties or application.yml file

    • Use @Entity annotation to define JPA entities

    • Use JpaRepository interface to perform CRUD operations on entities

  • Answered by AI
  • Q2. What is Component Scan
  • Ans. 

    Component Scan is a feature in Spring framework that automatically scans and registers Spring components in the application context.

    • Component Scan is used to automatically detect and register Spring components like @Component, @Service, @Repository, and @Controller.

    • It eliminates the need for manual configuration of bean definitions in the Spring configuration file.

    • Component Scan can be configured with base package(s) t...

  • Answered by AI
  • Q3. Throw vs throws
  • Ans. 

    throw is used to explicitly throw an exception in a method, while throws is used in method signature to declare the exceptions that can be thrown by the method.

    • throw is used within a method to throw an exception, while throws is used in the method signature to declare the exceptions that can be thrown by the method

    • throw is followed by an exception object, while throws is followed by the exception class names separated ...

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions & Answers

Incedo user image Nithin Krishna

posted on 31 Aug 2024

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

(2 Questions)

  • Q1. Difference between ArrayList and LinkedList?
  • Ans. 

    ArrayList is implemented as a resizable array, while LinkedList is implemented as a doubly linked list.

    • ArrayList provides fast random access, LinkedList provides fast insertion and deletion.

    • ArrayList uses more memory as it needs to allocate a fixed size array, LinkedList uses more memory for storing references to the next and previous elements.

    • Example: ArrayList is better for scenarios where random access is required, ...

  • Answered by AI
  • Q2. Difference between HashMap and HashTable?
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is faster than HashTable as it is non-synchronized, but HashTable is preferred in multi...

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Why functional interface when we have interface
  • Ans. 

    Functional interfaces provide a single abstract method for functional programming in Java.

    • Functional interfaces allow for lambda expressions and method references to be used as instances of the interface.

    • Interfaces with multiple abstract methods cannot be used for lambda expressions.

    • Example: java.util.function.Function is a functional interface with a single abstract method apply().

  • Answered by AI
  • Q2. Java 8 explain all features in short
  • Ans. 

    Java 8 introduced new features like lambda expressions, streams, functional interfaces, and default methods.

    • Lambda expressions: Allows writing concise code by enabling functional programming.

    • Streams: Provides a way to work with sequences of elements efficiently.

    • Functional interfaces: Interfaces with a single abstract method, used for lambda expressions.

    • Default methods: Allows adding new methods to interfaces without br

  • Answered by AI
  • Q3. If one functional interface can extend another interface
  • Ans. 

    Yes, one functional interface can extend another interface in Java.

    • Functional interfaces can extend other functional interfaces in Java.

    • The child interface can have only one abstract method, but can inherit default methods from the parent interface.

    • Example: interface Parent { void method1(); } interface Child extends Parent { void method2(); }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core 100%. spring boot, sql, can be in 80s

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

General Aptitude round based on numbers,verbal,time

Round 2 - Coding Test 

Any language u can use but need to solve 5 problems

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Hoisting, CSS selector, Reverse string programme, Angular Hooks
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic Question CSS, HTML5, Angular

Tiger Analytics Interview FAQs

How many rounds are there in Tiger Analytics Senior Developer Lead interview?
Tiger Analytics interview process usually has 3 rounds. The most common rounds in the Tiger Analytics interview process are Resume Shortlist, One-on-one Round and Technical.
What are the top questions asked in Tiger Analytics Senior Developer Lead interview?

Some of the top questions asked at the Tiger Analytics Senior Developer Lead interview -

  1. Experience in terraform Azure DevOps CI/CD Kubernetes Monitor...read more
  2. devops head takes final round. He is from sales background and he talks nicel...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 265 Interviews
Mu Sigma Interview Questions
2.7
 • 225 Interviews
Altimetrik Interview Questions
3.8
 • 210 Interviews
Fractal Analytics Interview Questions
4.0
 • 204 Interviews
Incedo Interview Questions
3.3
 • 178 Interviews
Xoriant Interview Questions
4.2
 • 176 Interviews
Iris Software Interview Questions
4.1
 • 135 Interviews
Apexon Interview Questions
3.3
 • 133 Interviews
GEP Worldwide Interview Questions
3.7
 • 127 Interviews
View all
Senior Analyst
498 salaries
unlock blur

₹8 L/yr - ₹18 L/yr

Data Scientist
442 salaries
unlock blur

₹8.8 L/yr - ₹30 L/yr

Data Engineer
417 salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Senior Software Engineer
366 salaries
unlock blur

₹6 L/yr - ₹18.5 L/yr

Data Analyst
233 salaries
unlock blur

₹5 L/yr - ₹17.7 L/yr

Explore more salaries
Compare Tiger Analytics with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

LatentView Analytics

3.7
Compare

AbsolutData

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview