Upload Button Icon Add office photos
Engaged Employer

i

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

Altimetrik Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Altimetrik Interview Questions, Process, and Tips for Experienced

Updated 1 Mar 2025

Top Altimetrik Interview Questions and Answers for Experienced

View all 50 questions

Altimetrik Interview Experiences for Experienced

Popular Designations

96 interviews found

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

Data structure was more and it was difficult round

Round 2 - Technical 

(1 Question)

  • Q1. It will depend on interviewer
Round 3 - Behavioral 

(1 Question)

  • Q1. It will be depending on Manager who is taking interview
Round 4 - HR 

(1 Question)

  • Q1. It will be very smooth

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a very good company overall I had very good learning and experience

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Sep 2024

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

(2 Questions)

  • Q1. How can you optmize dags?
  • Ans. 

    Optimizing dags involves reducing unnecessary tasks, parallelizing tasks, and optimizing resource allocation.

    • Identify and remove unnecessary tasks to streamline the workflow.

    • Parallelize tasks to reduce overall execution time.

    • Optimize resource allocation by scaling up or down based on task requirements.

    • Use caching and memoization techniques to avoid redundant computations.

    • Implement data partitioning and indexing for eff

  • Answered by AI
  • Q2. How can we handle unacknowledged messages in pubsub?
  • Ans. 

    Unacknowledged messages in pubsub can be handled by implementing retries, dead letter queues, and monitoring mechanisms.

    • Implement retries for unacknowledged messages to be redelivered.

    • Use dead letter queues to store messages that repeatedly fail to be processed.

    • Set up monitoring mechanisms to track unacknowledged messages and identify potential issues.

  • Answered by AI

Skills evaluated in this interview

Top Altimetrik Data Engineer Interview Questions and Answers

Q1. convert string of multiple lines with 'n' words to multiple arrays of fixed size: k, with no overlap of elements accross arrays.
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Sdet Interview Questions & Answers

user image Varsha Jyotiana

posted on 13 Jan 2025

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

(1 Question)

  • Q1. Questions based on java collections

Sdet Interview Questions asked at other Companies

Q1. Given a M x N 2D array containing random alphabets and a function Dict(string word) which returns whether the 'word' is a valid English word. Find all possible valid words you can get from the 2D array, where the alphabets are adjacent to e... read more
View answer (1)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2024

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

I was interviewed in Aug 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Big data technologies
  • Q2. What is hadoop in big data
  • Ans. 

    Hadoop is an open-source framework used for distributed storage and processing of large data sets across clusters of computers.

    • Hadoop consists of HDFS (Hadoop Distributed File System) for storage and MapReduce for processing.

    • It allows for parallel processing of large datasets across multiple nodes in a cluster.

    • Hadoop is scalable, fault-tolerant, and cost-effective for handling big data.

    • Popular tools like Apache Hive, A...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for day to day activites and trouble shooting and a security

Skills evaluated in this interview

Top Altimetrik Data Engineer Interview Questions and Answers

Q1. convert string of multiple lines with 'n' words to multiple arrays of fixed size: k, with no overlap of elements accross arrays.
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Altimetrik interview questions for popular designations

 Senior Software Engineer

 (22)

 Data Engineer

 (16)

 Staff Engineer

 (14)

 Senior Data Engineer

 (10)

 Senior Engineer

 (9)

 Software Engineer

 (7)

 Java Developer

 (7)

 Software Developer

 (6)

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the traversal conditions for a Doubly Linked List? And write a program to traverse.This was the first question and I had no answer and ended up the interview immediately by asking any questions fo...
  • Ans. 

    Traversal conditions for a Doubly Linked List involve moving forward and backward through each node.

    • Start at the head node and move to the next node by following the 'next' pointer.

    • To traverse backward, start at the tail node and move to the previous node by following the 'prev' pointer.

    • Continue this process until reaching the end of the list.

  • Answered by AI

Lead Developer Interview Questions asked at other Companies

Q1. how authentication and authorization works - oauth2 way of handling them
View answer (1)

Get interview-ready with Top Altimetrik Interview Questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Technical Assessment Test (MCQs) - 30 mins.

Round 2 - Technical 

(4 Questions)

  • Q1. Basic Questions on: 1.Python 2.SQL 3.Spark
  • Q2. Python: Replace all occurrences of word: "apple" with "froot" and count no.of occurrences of word: "apple" - in a given string (multiple lines) SQL: 1. Retrieve employee details, drawing the maximum salar...
  • Q3. Convert string (multiple lines) to list
  • Ans. 

    Use the split() method to convert a string with multiple lines into a list of strings.

    • Use the split() method with the newline character '\n' as the delimiter to split the string into a list of strings.

    • Example: 'Hello\nWorld\n' -> ['Hello', 'World']

  • Answered by AI
  • Q4. Convert string of multiple lines with 'n' words to multiple arrays of fixed size: k, with no overlap of elements accross arrays.
  • Ans. 

    Convert a string of multiple lines with 'n' words to multiple arrays of fixed size without overlap.

    • Split the string into individual words

    • Create arrays of fixed size 'k' and distribute words evenly

    • Handle cases where the number of words is not divisible by 'k'

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Altimetrik Data Engineer interview:
  • Python
  • SQL
  • PySpark

Skills evaluated in this interview

Top Altimetrik Data Engineer Interview Questions and Answers

Q1. convert string of multiple lines with 'n' words to multiple arrays of fixed size: k, with no overlap of elements accross arrays.
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Jobs at Altimetrik

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Print the unique elements in the unsorted array without sorting it, achieving a time complexity of O(n).

Round 2 - Technical 

(1 Question)

  • Q1. OOPS questions, SOLID principles, Functional interface, difference between thread wait and join

Platform Engineer Interview Questions asked at other Companies

Q1. Palindrome Linked List Problem Statement You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a palindrome, otherwise return false. Exam... read more
View answer (1)

Test Engineer Interview Questions & Answers

user image Manikandan Ramesh

posted on 6 Sep 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hacker Rank Technical Round

Round 2 - Coding Test 

30 Mins Java Selenium

Round 3 - HR 

(2 Questions)

  • Q1. Explain about Career experience
  • Ans. 

    I have over 5 years of experience in testing various software applications, including creating test plans, executing test cases, and reporting bugs.

    • Experience in creating test plans and test cases

    • Proficient in executing manual and automated tests

    • Strong skills in identifying and reporting bugs

    • Familiarity with various testing tools and methodologies

    • Collaborating with developers and stakeholders to ensure quality software

  • Answered by AI
  • Q2. Walkthrough on Framework
  • Ans. 

    Framework walkthrough involves explaining the structure, components, and functionality of the test automation framework.

    • Explain the architecture of the framework (e.g. modular, data-driven, keyword-driven, hybrid)

    • Discuss the key components such as test scripts, test data, object repositories, and reporting mechanisms

    • Describe how the framework handles test execution, result reporting, and error handling

    • Provide examples ...

  • Answered by AI

Skills evaluated in this interview

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Senior Software Engineer Interview Questions & Answers

user image Sudeshna Adhikary

posted on 30 May 2024

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

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

Round 1 - Coding Test 

Online coding test on hackerrank - easy.

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview 1
Round 3 - Technical 

(1 Question)

  • Q1. Technical interview 2
Round 4 - Technical 

(1 Question)

  • Q1. Technical interview 3
Round 5 - HR 

(1 Question)

  • Q1. HR discussion and salary bargaining.

Interview Preparation Tips

Interview preparation tips for other job seekers - Tedious process

Top Altimetrik Senior Software Engineer Interview Questions and Answers

Q1. Sort employees stream based on salary and department
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Interview Questions & Answers

user image Abrar Irshadahmed Kotwal

posted on 17 Oct 2024

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

(2 Questions)

  • Q1. Kotlin and Java Basic
  • Q2. Advance Android concept and jetpack component

Altimetrik Interview FAQs

How many rounds are there in Altimetrik interview for experienced candidates?
Altimetrik interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Altimetrik interview process for experienced candidates are Technical, Resume Shortlist and HR.
How to prepare for Altimetrik interview for experienced candidates?
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 Altimetrik. The most common topics and skills that interviewers at Altimetrik expect are Java, Python, SQL, Javascript and Spring Boot.
What are the top questions asked in Altimetrik interview for experienced candidates?

Some of the top questions asked at the Altimetrik interview for experienced candidates -

  1. You own a Tea shop and I arrive to place a bulk order for tea. What questions w...read more
  2. What is gradient descent, why does gradient descent follow tan angles and pleas...read more
  3. ASP.NET page life cycle and events in it and how page will be render...read more
How long is the Altimetrik interview process?

The duration of Altimetrik interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Altimetrik Interview Process for Experienced

based on 60 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Coforge Interview Questions
3.3
 • 518 Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
View all

Altimetrik Reviews and Ratings

based on 1.1k reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.8

Salary

3.3

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 1.1k Reviews and Ratings
Profisee MDM

Pune,

Chennai

+1

5-10 Yrs

₹ 25-40 LPA

Cloud_PMO

Bangalore / Bengaluru

10-16 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
865 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
638 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
313 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Software Engineer
236 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Altimetrik with

Accenture

3.8
Compare

Persistent Systems

3.5
Compare

Mphasis

3.4
Compare

LTIMindtree

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