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 and Answers

Updated 25 Jun 2025
Popular Designations

130 Interview questions

A Staff Engineer was asked 1w ago
Q. What is a promise?
Ans. 

A promise is an object representing the eventual completion or failure of an asynchronous operation.

  • Promises have three states: pending, fulfilled, and rejected.

  • Example: A promise can be used to handle API calls, where it resolves with data or rejects with an error.

  • Promises can be chained using .then() for handling multiple asynchronous operations sequentially.

  • Example: Fetching user data followed by fetching user ...

View all Staff Engineer interview questions
A Staff Engineer was asked 1w ago
Q. What is an Event Loop?
Ans. 

An event loop is a programming construct that waits for and dispatches events or messages in a program, enabling asynchronous execution.

  • The event loop continuously checks for events and executes associated callbacks.

  • It allows non-blocking I/O operations, improving performance in applications like web servers.

  • In JavaScript, the event loop handles asynchronous operations like AJAX calls and timers.

  • Example: In Node.j...

View all Staff Engineer interview questions
A GRC Lead was asked 2w ago
Q. What is the CIA triad?
Ans. 

The CIA triad represents the core principles of information security: Confidentiality, Integrity, and Availability.

  • Confidentiality: Ensures that sensitive information is accessed only by authorized individuals. Example: Encryption of personal data.

  • Integrity: Guarantees that data is accurate and unaltered. Example: Using checksums to verify file integrity.

  • Availability: Ensures that information and resources are acc...

A GRC Lead was asked 2w ago
Q. What is the port number for HTTPS?
Ans. 

HTTPS typically uses port 443 for secure communication over the internet.

  • HTTPS stands for HyperText Transfer Protocol Secure.

  • Port 443 is the default port for HTTPS traffic.

  • It encrypts data between the client and server using SSL/TLS.

  • Example: A website using HTTPS will have a URL starting with 'https://'.

  • Port 80 is used for HTTP, which is unencrypted.

An Architect was asked 1mo ago
Q. Which features of Java 17 have you utilized?
Ans. 

Java 17 introduced several features like sealed classes, pattern matching, and enhanced switch statements that improve code efficiency.

  • Sealed Classes: Allow control over which classes can extend them. Example: `sealed class Shape permits Circle, Square {}`.

  • Pattern Matching for instanceof: Simplifies type checks and casting. Example: `if (obj instanceof String s) { ... }`.

  • Enhanced Switch Statements: Supports multip...

View all Architect interview questions
An Architect was asked 1mo ago
Q. What are the best practices for securing microservices?
Ans. 

Securing microservices involves implementing best practices like authentication, encryption, and network security to protect data and services.

  • Implement strong authentication mechanisms (e.g., OAuth2, JWT) to ensure only authorized users can access services.

  • Use HTTPS for all communications to encrypt data in transit and prevent eavesdropping.

  • Employ API gateways to manage traffic, enforce security policies, and pro...

View all Architect interview questions
An Architect was asked 1mo ago
Q. What HTTP status code should be returned if the product quantity in the database is negative?
Ans. 

A negative product quantity indicates a logical error, typically requiring a 400 Bad Request response.

  • HTTP 400 Bad Request: Indicates the server cannot process the request due to client error.

  • Example: If a user tries to purchase a product with a negative quantity, the server should respond with 400.

  • This status code informs the client that their request is invalid and needs correction.

View all Architect interview questions
Are these interview questions helpful?
An Architect was asked 1mo ago
Q. What is the process of designing an API that accepts requests in XML format and returns responses in JSON format?
Ans. 

Designing an API that processes XML requests and returns JSON responses involves several key steps and considerations.

  • Define API endpoints and methods (e.g., GET, POST).

  • Implement XML parsing to handle incoming requests.

  • Convert parsed XML data into a suitable internal data structure.

  • Process the request and generate the appropriate response.

  • Convert the response data into JSON format.

  • Set appropriate HTTP headers for ...

View all Architect interview questions
An Architect was asked 1mo ago
Q. Can you design a system for searching and placing an order?
Ans. 

A system for searching products and placing orders efficiently with user-friendly interfaces and robust backend architecture.

  • User Interface: Design a clean UI for product search with filters (e.g., category, price range).

  • Search Functionality: Implement a search algorithm (e.g., Elasticsearch) for fast and relevant results.

  • Product Details: Each product should have a detailed page with images, descriptions, and revi...

View all Architect interview questions
A Staff Engineer was asked 2mo ago
Q. Write a Java program using Streams to return the most sold products in each category.
Ans. 

This Java program uses Streams to identify the most sold products in each category from a list of sales data.

  • Data Structure: Use a List of Product objects, each containing a category and sales count.

  • Grouping: Utilize Collectors.groupingBy() to group products by category.

  • Finding Max: Use Collectors.reducing() or Collectors.maxBy() to find the most sold product in each category.

  • Example: Given products like {"Electro...

View all Staff Engineer interview questions

Altimetrik Interview Experiences

240 interviews found

I applied via Naukri.com and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(11 Questions)

  • Q1. MVC URL Routing and normal url definition in ASP.NET
  • Ans. 

    MVC URL routing allows for custom URL definitions in ASP.NET

    • MVC URL routing maps URLs to controller actions

    • Normal URL definition uses query strings to pass parameters

    • MVC URL routing is more SEO-friendly

    • MVC URL routing can be configured in RouteConfig.cs file

    • Example: /products/category/electronics maps to ProductsController's Category action with 'electronics' parameter

  • Answered by AI
  • Q2. Advantage of MVC over traditional Architecture?
  • Ans. 

    MVC separates concerns, promotes code reusability, and enhances testability.

    • MVC separates the application into Model, View, and Controller components.

    • Model represents the data and business logic.

    • View represents the user interface.

    • Controller handles user input and updates the model and view accordingly.

    • MVC promotes code reusability by separating concerns.

    • MVC enhances testability by allowing for easier unit testing of in...

  • Answered by AI
  • Q3. What is AoT Microsoft Azure?
  • Ans. 

    AoT (Ahead of Time) is a compilation technique used in Microsoft Azure to improve application performance.

    • AoT compiles code before it is executed, resulting in faster startup times and reduced memory usage.

    • It is commonly used in Azure Functions and Azure Web Apps.

    • AoT can also improve security by detecting potential vulnerabilities during compilation.

    • It is different from Just-in-Time (JIT) compilation, which compiles co...

  • Answered by AI
  • Q4. Classic ASP can run in Azure? or migrating into ASP.Net is required?
  • Q5. ASP.NET page life cycle and events in it and how page will be rendered?
  • Ans. 

    ASP.NET page life cycle and events in it and how page will be rendered.

    • Page life cycle includes events like Init, Load, PreRender, and Unload.

    • During Init, controls are initialized and their properties are set.

    • During Load, controls are loaded with data and their events are fired.

    • During PreRender, the page is prepared for rendering.

    • During Unload, resources are released.

    • Page is rendered using HTML, CSS, and JavaScript.

    • Ren...

  • Answered by AI
  • Q6. What are postback events?
  • Ans. 

    Postback events are server-side events triggered by user actions on a web page.

    • Postback events occur when a user interacts with a web page and the page sends a request back to the server for processing.

    • Examples of postback events include clicking a button, selecting an item from a dropdown list, or submitting a form.

    • Postback events can be used to update the page content without requiring a full page refresh.

    • ASP.NET is ...

  • Answered by AI
  • Q7. What is Authentication and different types in it?
  • Ans. 

    Authentication is the process of verifying the identity of a user or system.

    • There are three types of authentication: something you know (passwords, PINs), something you have (smart cards, tokens), and something you are (biometrics).

    • Two-factor authentication combines two of these types for added security.

    • Authentication protocols include OAuth, OpenID Connect, and SAML.

    • Authentication can also be classified as single-fact...

  • Answered by AI
  • Q8. Late Binding/Dynamic binding in ASP.Net?
  • Ans. 

    Late binding or dynamic binding is a technique in which the method call is resolved at runtime rather than compile time.

    • In late binding, the type of the object is determined at runtime.

    • It allows for more flexibility in code as it can handle different types of objects.

    • Dynamic keyword is used for late binding in C#.

    • Example: using reflection to invoke a method on an object whose type is not known until runtime.

  • Answered by AI
  • Q9. ASP.Net cache and its different types?
  • Ans. 

    ASP.Net cache is a feature that stores frequently accessed data in memory to improve application performance.

    • ASP.Net cache is available in two types: in-memory cache and distributed cache.

    • In-memory cache stores data in the memory of the web server.

    • Distributed cache stores data in a separate cache server that can be accessed by multiple web servers.

    • ASP.Net cache can be used to store data such as database query results, ...

  • Answered by AI
  • Q10. What is state management in ASP.Net?
  • Ans. 

    State management in ASP.Net refers to the process of storing and retrieving data between HTTP requests.

    • ASP.Net provides various techniques for state management such as ViewState, Session, Application, and Cache.

    • ViewState is used to store page-specific data, Session is used to store user-specific data, Application is used to store application-level data, and Cache is used to store frequently accessed data.

    • State manageme...

  • Answered by AI
  • Q11. Handled Conflicts? Code merging or Resource Conflicts? Explain
  • Ans. 

    Handled conflicts in code merging and resource allocation.

    • Used version control systems like Git to manage code merging conflicts.

    • Communicated with team members to resolve resource allocation conflicts.

    • Prioritized tasks and resources based on project requirements.

    • Implemented agile methodologies to minimize conflicts and improve collaboration.

    • Documented conflict resolution processes for future reference.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Altimetrik Technical Architect interview:
  • ASP.Net
  • ASP.Net MVC
  • C#
  • OOPS
  • Azure
Interview preparation tips for other job seekers - I was interviewed for .Net Technical Architect and above were the questions asked in Round 1 or L1 discussions.

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(10 Questions)

  • Q1. What is the difference between a Subject and an Observer?
  • Ans. 

    Subjects are multicast observables that can emit values, while observers are consumers that react to those emitted values.

    • A Subject can emit values to multiple subscribers, while an Observer receives values from a Subject.

    • Example of Subject: const subject = new Subject(); subject.next('Hello');

    • Example of Observer: const observer = { next: (value) => console.log(value); }; subject.subscribe(observer);

    • Subjects can act...

  • Answered by AI
  • Q2. What is the difference between components and directives?
  • Ans. 

    Components are self-contained UI elements, while directives are used to extend HTML behavior.

    • Components are a complete UI element with a template, styles, and logic (e.g., <app-header>).

    • Directives are used to manipulate the DOM or enhance existing elements (e.g., ngIf, ngFor).

    • Components can have their own view and encapsulated styles, while directives do not have their own view.

    • Components are typically used for b...

  • Answered by AI
  • Q3. What are Angular guards?
  • Ans. 

    Angular guards are interfaces that control access to routes in an Angular application.

    • Types of guards: CanActivate, CanActivateChild, CanDeactivate, Resolve, and CanLoad.

    • CanActivate: Determines if a route can be activated. Example: Checking user authentication.

    • CanDeactivate: Checks if a user can leave a route. Example: Unsaved changes warning.

    • Resolve: Pre-fetches data before activating a route. Example: Fetching user d...

  • Answered by AI
  • Q4. What are template-driven forms?
  • Ans. 

    Template-driven forms in Angular use HTML templates to manage form inputs and validation, simplifying form handling.

    • Built using Angular's directives like ngModel for two-way data binding.

    • Forms are defined in the template, making them easy to read and maintain.

    • Validation is handled using Angular's built-in validators, such as required or minlength.

    • Example: <input [(ngModel)]='user.name' required /> binds the input...

  • Answered by AI
  • Q5. What is the ChangeDetectionStrategy in Angular?
  • Ans. 

    ChangeDetectionStrategy in Angular determines how the framework checks for changes in component data.

    • Angular provides two strategies: Default and OnPush.

    • Default strategy checks all components in the component tree for changes.

    • OnPush strategy only checks the component when its input properties change or an event occurs.

    • Using OnPush can improve performance by reducing the number of checks.

    • Example: @Component({ changeDete...

  • Answered by AI
  • Q6. How can we implement asynchronous behavior in JavaScript?
  • Ans. 

    Asynchronous behavior in JavaScript allows non-blocking operations, enhancing performance and user experience.

    • 1. Callbacks: Functions passed as arguments to handle asynchronous results. Example: setTimeout(() => console.log('Done!'), 1000);

    • 2. Promises: Objects representing eventual completion (or failure) of an asynchronous operation. Example: const promise = new Promise((resolve, reject) => { /* ... */ });

    • 3. Asy...

  • Answered by AI
  • Q7. What is the difference between var, let, and const in JavaScript?
  • Ans. 

    var, let, and const are used for variable declaration in JavaScript, differing in scope, hoisting, and mutability.

    • var is function-scoped or globally scoped, while let and const are block-scoped.

    • let allows variable reassignment, whereas const does not allow reassignment after initial assignment.

    • var is hoisted, meaning it can be used before its declaration, while let and const are not hoisted in the same way.

    • Example: var...

  • Answered by AI
  • Q8. What are the new semantic elements introduced in HTML5?
  • Ans. 

    HTML5 introduced new semantic elements to enhance the structure and meaning of web content.

    • header: Represents introductory content or navigational links. Example: <header><h1>Site Title</h1></header>

    • footer: Defines footer for a section or page. Example: <footer><p>© 2023 Company Name</p></footer>

    • article: Represents a self-contained composition. Example: <article><...

  • Answered by AI
  • Q9. What is the purpose of the doctype declaration in HTML?
  • Ans. 

    The doctype declaration informs the browser about the HTML version being used, ensuring proper rendering of the document.

    • Defines the document type and version of HTML (e.g., <!DOCTYPE html> for HTML5).

    • Helps browsers render the page correctly by switching to standards mode.

    • Prevents browsers from entering quirks mode, which can lead to inconsistent rendering.

    • Affects how CSS and JavaScript are interpreted by the bro...

  • Answered by AI
  • Q10. What is the difference between Flexbox and Grid layout in CSS?
  • Ans. 

    Flexbox is for one-dimensional layouts, while Grid is for two-dimensional layouts in CSS.

    • Flexbox is designed for layout in a single direction (row or column). Example: Aligning items in a navbar.

    • Grid allows for layout in both rows and columns simultaneously. Example: Creating a complex web page layout.

    • Flexbox is great for distributing space within a container. Example: Equal spacing between buttons.

    • Grid is better for c...

  • Answered by AI

Architect Interview Questions & Answers

user image Anonymous

posted on 23 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Have you encountered and resolved any performance issues in your past work?
  • Ans. 

    I have successfully identified and resolved various performance issues in my previous projects, enhancing system efficiency.

    • Optimized database queries, reducing response time by 40% in a web application.

    • Implemented caching strategies that improved load times for frequently accessed data.

    • Refactored code to eliminate bottlenecks, resulting in a smoother user experience.

    • Conducted performance testing and monitoring, leadin...

  • Answered by AI
  • Q2. What are the best practices for securing microservices?
  • Ans. 

    Securing microservices involves implementing best practices like authentication, encryption, and network security to protect data and services.

    • Implement strong authentication mechanisms (e.g., OAuth2, JWT) to ensure only authorized users can access services.

    • Use HTTPS for all communications to encrypt data in transit and prevent eavesdropping.

    • Employ API gateways to manage traffic, enforce security policies, and provide ...

  • Answered by AI
  • Q3. Can you design a system for searching and placing an order?
  • Ans. 

    A system for searching products and placing orders efficiently with user-friendly interfaces and robust backend architecture.

    • User Interface: Design a clean UI for product search with filters (e.g., category, price range).

    • Search Functionality: Implement a search algorithm (e.g., Elasticsearch) for fast and relevant results.

    • Product Details: Each product should have a detailed page with images, descriptions, and reviews.

    • S...

  • Answered by AI
  • Q4. What HTTP status code should be returned if the product quantity in the database is negative?
  • Ans. 

    A negative product quantity indicates a logical error, typically requiring a 400 Bad Request response.

    • HTTP 400 Bad Request: Indicates the server cannot process the request due to client error.

    • Example: If a user tries to purchase a product with a negative quantity, the server should respond with 400.

    • This status code informs the client that their request is invalid and needs correction.

  • Answered by AI
  • Q5. What is the process of designing an API that accepts requests in XML format and returns responses in JSON format?
  • Ans. 

    Designing an API that processes XML requests and returns JSON responses involves several key steps and considerations.

    • Define API endpoints and methods (e.g., GET, POST).

    • Implement XML parsing to handle incoming requests.

    • Convert parsed XML data into a suitable internal data structure.

    • Process the request and generate the appropriate response.

    • Convert the response data into JSON format.

    • Set appropriate HTTP headers for conte...

  • Answered by AI
  • Q6. Which features of Java 17 have you utilized?
  • Ans. 

    Java 17 introduced several features like sealed classes, pattern matching, and enhanced switch statements that improve code efficiency.

    • Sealed Classes: Allow control over which classes can extend them. Example: `sealed class Shape permits Circle, Square {}`.

    • Pattern Matching for instanceof: Simplifies type checks and casting. Example: `if (obj instanceof String s) { ... }`.

    • Enhanced Switch Statements: Supports multiple ca...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had completed the initial interview round and even went through the pre-BGC process. However, it has been nearly 2 weeks, and I'm still waiting for the client interview to be scheduled. Despite multiple follow-ups, I have not received any response to my emails or calls from the HR. The lack of communication is quite disappointing and appears unprofessional. It gives the impression that the interview process may have been initiated merely to fulfill internal or promotional requirements.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Types of job in kotlin coroutine
  • Ans. 

    Types of jobs in Kotlin coroutine include launch, async, withContext, and runBlocking.

    • launch: starts a new coroutine without blocking the current thread

    • async: starts a new coroutine and returns a Deferred object with a result

    • withContext: switches the coroutine context within a coroutine

    • runBlocking: blocks the current thread until the coroutine inside it is completed

  • Answered by AI
  • Q2. What is Flow, Channel diffrent between StateFlow and SharedFlow
  • Ans. 

    Flow is a cold asynchronous data stream, Channel is a hot asynchronous data stream. StateFlow is a hot asynchronous data stream with a state, SharedFlow is a hot asynchronous data stream without a state.

    • Flow is a cold asynchronous data stream that emits values one by one.

    • Channel is a hot asynchronous data stream that can have multiple subscribers.

    • StateFlow is a hot asynchronous data stream that retains the most recent ...

  • Answered by AI
  • Q3. If Flow lifecycle aware
  • Ans. 

    Flow lifecycle aware means using Kotlin Flow with lifecycle awareness in Android development.

    • Flow lifecycle aware helps manage data streams in Android apps

    • It ensures that data emissions are only observed when the lifecycle is in the appropriate state

    • Example: Using Flow with LiveData to update UI components based on lifecycle events

  • Answered by AI
  • Q4. What is inline function and highorder function?
  • Ans. 

    Inline functions are functions that are expanded in place at the call site, while high-order functions are functions that can take other functions as parameters or return them.

    • Inline functions are expanded in place at the call site to improve performance.

    • High-order functions can take other functions as parameters or return them.

    • Example of high-order function: map() function in Kotlin.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Kotlin basic

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

NA kjwnoi wniowe nfiow flmi

Round 2 - Coding Test 

NA fklwmoiwef,m ionfwno njnwfeio onfwp

Round 3 - Technical 

(2 Questions)

  • Q1. NAnak wel wenk weon
  • Q2. NAnank
Round 4 - One-on-one 

(2 Questions)

  • Q1. Wedlk k fwkllk own lnfw
  • Q2. Now odnw pmpw pnwpf
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Assignment 

HackersRank 2 questions

Round 2 - Technical 

(2 Questions)

  • Q1. Context API's in react
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing global data such as themes, user authentication, or language preferences.

    • Context API consists of three main parts: Provider...

  • Answered by AI
  • Q2. Hooks in react js
  • Ans. 

    Hooks in React JS are functions that let you use state and other React features without writing a class.

    • Hooks were introduced in React 16.8 to allow functional components to have state and lifecycle methods.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contain ...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. COnteaxt API, Hooks, Redux etc
  • Q2. React lifecycle and some basic sorting/searching alogo questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Will ask JavaScript and react js question

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Most questions about jmeter
Round 2 - Technical 

(1 Question)

  • Q1. Questions about overall work experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are accumulators in spark?
  • Ans. 

    Accumulators are shared variables that are updated by worker nodes and can be used for aggregating information across tasks.

    • Accumulators are used for implementing counters and sums in Spark.

    • They are only updated by worker nodes and are read-only by the driver program.

    • Accumulators are useful for debugging and monitoring purposes.

    • Example: counting the number of errors encountered during processing.

  • Answered by AI
  • Q2. Explain spark architecture
  • Ans. 

    Spark architecture is a distributed computing framework that consists of a driver program, cluster manager, and worker nodes.

    • Spark architecture includes a driver program that manages the execution of the Spark application.

    • It also includes a cluster manager that allocates resources and schedules tasks on worker nodes.

    • Worker nodes are responsible for executing the tasks and storing data in memory or disk.

    • Spark architectu...

  • Answered by AI
  • Q3. Write a query to find duplicate data using SQL
  • Ans. 

    Query to find duplicate data using SQL

    • Use GROUP BY and HAVING clause to identify duplicate records

    • Select columns to check for duplicates

    • Use COUNT() function to count occurrences of each record

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is pub/sub?
  • Ans. 

    Pub/sub is a messaging pattern where senders (publishers) of messages do not program the messages to be sent directly to specific receivers (subscribers).

    • Pub/sub stands for publish/subscribe.

    • Publishers send messages to a topic, and subscribers receive messages from that topic.

    • It allows for decoupling of components in a system, enabling scalability and flexibility.

    • Examples include Apache Kafka, Google Cloud Pub/Sub, and...

  • Answered by AI
  • Q2. What services have you used in GCP
  • Ans. 

    I have used services like BigQuery, Dataflow, Pub/Sub, and Cloud Storage in GCP.

    • BigQuery for data warehousing and analytics

    • Dataflow for real-time data processing

    • Pub/Sub for messaging and event ingestion

    • Cloud Storage for storing data and files

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on SQL ,GCP ,Pyspark

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Port of HTTPS
  • Ans. 

    HTTPS typically uses port 443 for secure communication over the internet.

    • HTTPS stands for HyperText Transfer Protocol Secure.

    • Port 443 is the default port for HTTPS traffic.

    • It encrypts data between the client and server using SSL/TLS.

    • Example: A website using HTTPS will have a URL starting with 'https://'.

    • Port 80 is used for HTTP, which is unencrypted.

  • Answered by AI
  • Q2. What is CIA triad
  • Ans. 

    The CIA triad represents the core principles of information security: Confidentiality, Integrity, and Availability.

    • Confidentiality: Ensures that sensitive information is accessed only by authorized individuals. Example: Encryption of personal data.

    • Integrity: Guarantees that data is accurate and unaltered. Example: Using checksums to verify file integrity.

    • Availability: Ensures that information and resources are accessib...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the most unprofessional interview experiences. I am intentionally not mentioning names. The role specs HR mentioned didnt match with the JD shared by HR later. The interviewer had no clue of what was the JD, why he is interviewing. His questions were vague and rude. Asked me to share my screen. After a question he would go on mute and come back that he didnt hear and asked me to repeat. I have taken close to 100 interviews myself and had the dignity to go on camera when I ask interviwee to be on camera. Worst times. Worst culture. interesting times.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. My Profile is AzureDevOps and interviewer asked me questions on Jenkins and Groovy Scripting
  • Q2. Interviewer is not aware of JD and my profile

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Altimetrik?
Ask anonymously on communities.

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 Microservices.
What are the top questions asked in Altimetrik interview?

Some of the top questions asked at the Altimetrik interview -

  1. convert string of multiple lines with 'n' words to multiple arrays of fixed siz...read more
  2. You own a Tea shop and I arrive to place a bulk order for tea. What questions w...read more
  3. ASP.NET page life cycle and events in it and how page will be render...read more
What are the most common questions asked in Altimetrik HR round?

The most common HR questions asked in Altimetrik interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. Where do you see yourself in 5 yea...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.

Overall Interview Experience Rating

3.6/5

based on 203 interview experiences

Difficulty level

Easy 14%
Moderate 78%
Hard 8%

Duration

Less than 2 weeks 68%
2-4 weeks 27%
4-6 weeks 1%
6-8 weeks 1%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 286 Interviews
Xoriant Interview Questions
4.1
 • 210 Interviews
Globant Interview Questions
3.7
 • 181 Interviews
ThoughtWorks Interview Questions
3.9
 • 156 Interviews
Apexon Interview Questions
3.3
 • 148 Interviews
Brillio Interview Questions
3.4
 • 138 Interviews
Luxoft Interview Questions
3.7
 • 128 Interviews
View all

Altimetrik Reviews and Ratings

based on 1.2k reviews

3.7/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.8

Salary

3.3

Job security

3.7

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 1.2k Reviews and Ratings
Performance Testing

Chennai

4-7 Yrs

Not Disclosed

React JS Developer

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Java Full Stack Developer

Pune,

Chennai

6-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.3k salaries
unlock blur

₹9.5 L/yr - ₹39 L/yr

Staff Engineer
1.1k salaries
unlock blur

₹20.7 L/yr - ₹36.8 L/yr

Senior Engineer
802 salaries
unlock blur

₹9 L/yr - ₹31 L/yr

Software Engineer
387 salaries
unlock blur

₹4.9 L/yr - ₹19.1 L/yr

Senior Staff Engineer
262 salaries
unlock blur

₹15 L/yr - ₹46 L/yr

Explore more salaries
Compare Altimetrik with

Accenture

3.8
Compare

Xoriant

4.1
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare
write
Share an Interview