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
3.8

based on 981 Reviews

Filter interviews by

Altimetrik Interview Questions, Process, and Tips

Updated 8 Jan 2025

Top Altimetrik Interview Questions and Answers

View all 106 questions

Altimetrik Interview Experiences

Popular Designations

206 interviews found

I was interviewed in Feb 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Android and kotlin related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy
It's service based
They hire for clients

Senior Product Engineer Interview Questions asked at other Companies

Q1. Imagine an attack and guide through all steps involved to determine a Risk value. What is Feasibility ? What is impact and how risk is related to these factors ?
View answer (1)

Team Manager Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2023

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 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 - Coding Test 

Coding test based on Java basics

Round 3 - Assignment 

Assignment based on spring boot problem

Interview Preparation Tips

Interview preparation tips for other job seekers - The company is fine and some of there projects are also good.

Team Manager Interview Questions asked at other Companies

Q1. To maintain SIEM solution which are the daily activities that you will perform?
View answer (4)

Etl lead for paypal Interview Questions & Answers

user image Anonymous

posted on 22 Jul 2021

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. They asked about cache and uncache lookup
  • Q2. Partition by order by sql related question
  • Q3. Unix schenario based
  • Q4. Informatica schenario based

Interview Preparation Tips

Interview preparation tips for other job seekers - it was definitely a positive experience from Altemetrik so far.

Associate Software Engineer Interview Questions & Answers

user image Akhilesh Reddy Sama

posted on 23 Dec 2021

Interview Questionnaire 

1 Question

  • Q1. In written test there are four sections 1.Aptitude(easyTOmoderate-20questions-Mcq) 2.Technical questions(Python-10questions-Mcq) 3.statistics(questions on correletion,hypothsis,etc-15-Mcq) 4.coding(3 probl...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on statistical questions.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Altimetrik interview questions for popular designations

 Senior Software Engineer

 (21)

 Data Engineer

 (16)

 Staff Engineer

 (14)

 Senior Data Engineer

 (9)

 Java Developer

 (8)

 Senior Engineer

 (8)

 Software Engineer

 (6)

 Front end Developer

 (4)

Staff Product and Platform Engineer Interview Questions & Answers

user image manikandan dharmaraj

posted on 10 Dec 2021

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

Interview Questionnaire 

2 Questions

  • Q1. Core Java using Collections to remove the duplicate and QA Questions
  • Ans. Using Set remove the arrays in Duplicate.
  • Answered by manikandan dharmaraj
  • Q2. Appium Capabilities and Challenges you Faced in Test Automation
  • Ans. Answered Desired Capabilities for Mobile and Challenges faced in real time QE experience.Examples like Framer handling Creating reusable components for across devices.WebDriveAgent for IOS workaround solution connecting to VPN Proxy.
  • Answered by manikandan dharmaraj

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Core Java and Streams API,When it comes to QE thorough in Selenium and Mobile Concepts using Appium.Try to elaborate real challenges you faced in your Test Automation and Solution provided by you.
Articulate your software practices and Framework Development or Architecture.

Skills evaluated in this interview

Get interview-ready with Top Altimetrik Interview Questions

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

Interview Questionnaire 

3 Questions

  • Q1. 1. What are decorators
  • Ans. 

    Decorators are functions that modify the behavior of other functions without changing their source code.

    • Decorators are denoted by the '@' symbol followed by the decorator function name.

    • They can be used to add functionality to a function, such as logging or timing.

    • Decorators can also be used to modify the behavior of a class or method.

    • They are commonly used in web frameworks like Flask and Django.

    • Examples of built-in de...

  • Answered by AI
  • Q2. 2. What is Namespace in Python
  • Ans. 

    Namespace is a container that holds identifiers (names) used to avoid naming conflicts.

    • Namespace is created at different moments and has different lifetimes.

    • Python implements namespaces as dictionaries.

    • There are four types of namespaces in Python: built-in, global, local, and non-local.

    • Namespaces can be accessed using the dot (.) operator.

    • Example: 'import math' creates a namespace 'math' that contains all the functions

  • Answered by AI
  • Q3. Write Algorithm for Soduku
  • Ans. 

    Algorithm to solve Sudoku puzzle

    • Create a 9x9 grid to represent the puzzle

    • Fill in known numbers

    • For each empty cell, try numbers 1-9 until a valid number is found

    • Backtrack if no valid number can be found

    • Repeat until all cells are filled

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about Soduku before appearing for interview

Skills evaluated in this interview

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)

Jobs at Altimetrik

View all

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Data Structures and Algorithms
  • Q2. Back tracking problem
  • Ans. 

    Backtracking is a technique to solve problems by trying out different solutions and undoing them if they fail.

    • Backtracking is used when we need to find all possible solutions to a problem.

    • It involves trying out different solutions and undoing them if they fail.

    • It is often used in problems involving permutations, combinations, and graph traversal.

    • Examples include solving Sudoku puzzles, finding all possible paths in a m...

  • Answered by AI
  • Q3. Minimum swaps needed to arrange all similar elements together
  • Ans. 

    Minimum swaps needed to arrange all similar elements together in an array of strings.

    • Count the frequency of each element in the array.

    • Find the maximum frequency element and its index.

    • Calculate the number of swaps needed to move all similar elements together.

    • Repeat the above steps for all unique elements in the array.

    • Add up the number of swaps needed for each unique element to get the total number of swaps needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was peace, popular questions were asked

Skills evaluated in this interview

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 (169)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Explain data warehouse
  • Ans. 

    A data warehouse is a large, centralized repository of data that is used for reporting and analysis.

    • Data is extracted from various sources and transformed into a common format

    • Data is organized into dimensions and fact tables

    • Designed for querying and analysis rather than transaction processing

    • Supports complex queries and reporting

    • Examples include Amazon Redshift, Google BigQuery, and Microsoft Azure SQL Data Warehouse

  • Answered by AI
  • Q2. SQL scenario question using windows function

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare scenario questions based on your experience

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. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Multiple choice Question related to Java oops concept

Round 3 - Technical 

(1 Question)

  • Q1. Oops concept, Java programming
Round 4 - HR 

(1 Question)

  • Q1. Why do you want to join the company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best. Concentrate more on Java basics, if your basic concept are clear, you can crack any interview.

Staff Engineer Interview Questions asked at other Companies

Q1. Swap Adjacent Bit PairsYou are given an integer 'N'. Your task is to find the number formed after swapping each even bit of 'N' in its binary representation with its adjacent bit on the right, assuming that the least significant bit is an o... read more
View answer (2)

I applied via Recruitment Consultant and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Da and algorithm related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident while answering and be strong in basics

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. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Altimetrik Interview FAQs

How many rounds are there in Altimetrik interview?
Altimetrik interview process usually has 2-3 rounds. The most common rounds in the Altimetrik interview process are Technical, Coding Test and HR.
How to prepare for Altimetrik 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 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?

Some of the top questions asked at the Altimetrik interview -

  1. What is gradient descent, why does gradient descent follow tan angles and pleas...read more
  2. ASP.NET page life cycle and events in it and how page will be render...read more
  3. You own a Tea shop and I arrive to place a bulk order for tea. What questions w...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

based on 114 interviews in last 1 year

Interview experience

3.8
  
Good
View more

People are getting interviews through

based on 136 Altimetrik interviews
Job Portal
Recruitment Consultant
Referral
Company Website
Campus Placement
54%
4%
4%
1%
1%
36% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 779 Interviews
Coforge Interview Questions
3.4
 • 496 Interviews
KPIT Technologies Interview Questions
3.5
 • 282 Interviews
Cyient Interview Questions
3.7
 • 276 Interviews
CitiusTech Interview Questions
3.4
 • 259 Interviews
View all

Altimetrik Reviews and Ratings

based on 981 reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-Life balance

3.8

Salary & Benefits

3.4

Job Security

3.8

Company culture

3.4

Promotions/Appraisal

3.5

Work Satisfaction

Explore 981 Reviews and Ratings
Java Developer

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Mobile Automation Tester-Immd-Hyderabad-4-9yrs

Hyderabad / Secunderabad

4-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.2k salaries
unlock blur

₹9 L/yr - ₹37 L/yr

Staff Engineer
808 salaries
unlock blur

₹10.9 L/yr - ₹40 L/yr

Senior Engineer
612 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Software Engineer
307 salaries
unlock blur

₹4.8 L/yr - ₹19 L/yr

Senior Staff Engineer
216 salaries
unlock blur

₹15 L/yr - ₹43 L/yr

Explore more salaries
Compare Altimetrik with

Accenture

3.9
Compare

Persistent Systems

3.5
Compare

Mphasis

3.4
Compare

LTIMindtree

3.9
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