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 Technical Architect Interview Questions and Answers

Updated 9 Jul 2022

10 Interview questions

A Technical Architect was asked
Q. Explain the ASP.NET page life cycle, the events within it, and how a page is 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 JavaScrip...

A Technical Architect was asked
Q. What is Ahead-of-Time (AoT) compilation in 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 compil...

Technical Architect Interview Questions Asked at Other Companies

asked in IBM
Q1. How to manage clients, how to handle critical issues with example
asked in IBM
Q2. Given a scenario to design the architecture for IoT-based problem ... read more
asked in IBM
Q3. how you handle non functional requirements ? how you do capacity ... read more
asked in IBM
Q4. What modernizations have you implemented on Mainframes?
asked in IBM
Q5. What architectural principles or methodologies do you know?
A Technical Architect was asked
Q. What are the advantages 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 ...

A Technical Architect was asked
Q. Explain 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

A Technical Architect was asked
Q. What is ASP.Net cache and what are 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 resu...

A Technical Architect was asked
Q. What is Authentication and what are the different types?
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...

A Technical Architect was asked
Q. What is 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.

Are these interview questions helpful?
A Technical Architect was asked
Q. 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 man...

A Technical Architect was asked
Q. 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.NE...

A Technical Architect was asked
Q. 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.

Altimetrik Technical Architect Interview Experiences

1 interview 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

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Altimetrik?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Started from c# basics,. net, Design patterns, Current project architecture, Angular questions, Security,

Interview Preparation Tips

Interview preparation tips for other job seekers - basics must be clear

Technical Architect Interview Questions Asked at Other Companies

asked in IBM
Q1. How to manage clients, how to handle critical issues with example
asked in IBM
Q2. Given a scenario to design the architecture for IoT-based problem ... read more
asked in IBM
Q3. how you handle non functional requirements ? how you do capacity ... read more
asked in IBM
Q4. What modernizations have you implemented on Mainframes?
asked in IBM
Q5. What architectural principles or methodologies do you know?

I applied via Referral and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions asked in Technical Round are mostly from Core Java like Exception handling, Multithreading, Strings, Collection framework ,stream api and few from Coding questions from linked list. and few about...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview takes around 45 min. each there are
1. Technical Round -Based on Core Java
2. Manager Round -Based on Spring Microservices and also completely Technical.
3. HR Round -Ask about your expectation notice period .explain policies .
4. Salary Negotiation- if you have any counter offers or not. can you join early or not.
5. Offer Release.


Process took almost a week to get offer.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Online aptitude test

Round 2 - Coding Test 

10 questions, write in any programming language you know.

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers basic concepts will be more than enough.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2023.

Round 1 - Technical 

(4 Questions)

  • Q1. All possible questions around Agile Scrum
  • Q2. Questions around Defect management
  • Q3. Questions around Risk assessment
  • Q4. Questions around Jira and HP ALM
Round 2 - HR 

(3 Questions)

  • Q1. Behavioural questions
  • Q2. Questions around relocation, settlement and fitment / comfortness in new city
  • Q3. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on Agile Scrum processes, their possible scenario-based questions; Thorough preparation on defect management; CI/CD concepts ; REST APIs; Test management - planning and strategy; Effort estimations, metrics and reporting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jun 2024.

Round 1 - HR 

(1 Question)

  • Q1. General hr questions
Round 2 - Technical 

(1 Question)

  • Q1. Ab initio questions
Round 3 - One-on-one 

(1 Question)

  • Q1. With the project manager
Round 4 - Client Interview 

(1 Question)

  • Q1. Overall experience and technical questions
Round 5 - HR 

(1 Question)

  • Q1. Final salary and other talks
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Java 8 programming and features

Round 2 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Collection question
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - HR 

(6 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a seasoned Java Full Stack Developer with extensive experience in building scalable web applications and leading development teams.

    • Technical Expertise: Proficient in Java, Spring Boot, and Hibernate for backend development, and React and Angular for frontend solutions.

    • Team Leadership: Successfully led a team of 5 developers in a project that improved application performance by 30% through code optimization.

    • Agile M...

  • Answered by AI
  • Q2. Basic manual testing question and scenarios
  • Q3. API workflow and http codes
  • Q4. Basic database join question
  • Q5. Selenium and BDD framework
  • Q6. Java Oops and programming
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Basics of Java 8
  • Q2. Basics of Multithreading
  • Q3. Kafka topics/brokers
  • Q4. Streams coding question using groupingBy
  • Ans. 

    Using Java Streams, group elements by a specific property with groupingBy.

    • groupingBy is a collector that groups elements based on a classifier function.

    • Example: List<String> names = Arrays.asList('Alice', 'Bob', 'Alice'); Map<String, Long> grouped = names.stream().collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));

    • You can group by multiple criteria by using groupingBy in a nested man...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Advanced Sql query
  • Q2. Advanced Sql query on recursive cte
  • Ans. 

    Recursive CTEs in SQL allow for hierarchical data retrieval, enabling complex queries like traversing tree structures.

    • Recursive CTEs consist of two parts: the anchor member and the recursive member.

    • Example: To find all subordinates in an employee hierarchy, use a CTE that references itself.

    • Syntax: WITH RECURSIVE cte_name AS (SELECT ... UNION ALL SELECT ...)

    • Common use cases include organizational charts, bill of materia...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview covered a mix of SQL-based problem-solving and technical scenarios and other tools i worked on. While I appreciate the opportunity, I felt the format of the interview focused heavily on solving complex problems under time pressure, with limited context. This didn’t allow for a deeper discussion on how I approach real-world challenges or showcase my problem-solving skills in practical scenarios. Though there were areas I didn’t know off the top of my head, I believe it’s important to recognize that not knowing something doesn’t mean I can’t learn it quickly. Overall, the interview could have benefited from more interactive discussion, with a focus on understanding a candidate’s potential to grow and solve problems with evolving technologies.

Altimetrik Interview FAQs

How many rounds are there in Altimetrik Technical Architect interview?
Altimetrik interview process usually has 1 rounds. The most common rounds in the Altimetrik interview process are Technical.
How to prepare for Altimetrik Technical Architect 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 AWS, Java, Microservices, Azure and NoSQL.
What are the top questions asked in Altimetrik Technical Architect interview?

Some of the top questions asked at the Altimetrik Technical Architect interview -

  1. ASP.NET page life cycle and events in it and how page will be render...read more
  2. What is Authentication and different types in ...read more
  3. MVC URL Routing and normal url definition in ASP....read more

Tell us how to improve this page.

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
Apexon Interview Questions
3.3
 • 150 Interviews
Brillio Interview Questions
3.4
 • 139 Interviews
Luxoft Interview Questions
3.7
 • 128 Interviews
View all
Altimetrik Technical Architect Salary
based on 11 salaries
₹35.4 L/yr - ₹49 L/yr
45% more than the average Technical Architect Salary in India
View more details

Altimetrik Technical Architect Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

3.0

Job security

4.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
1.4k salaries
unlock blur

₹15 L/yr - ₹29.8 L/yr

Staff Engineer
1.1k salaries
unlock blur

₹20.4 L/yr - ₹36.8 L/yr

Senior Engineer
809 salaries
unlock blur

₹15.3 L/yr - ₹28 L/yr

Software Engineer
389 salaries
unlock blur

₹8.2 L/yr - ₹14 L/yr

Senior Data Engineer
244 salaries
unlock blur

₹15.8 L/yr - ₹28 L/yr

Explore more salaries
Compare Altimetrik with

Accenture

3.7
Compare

Xoriant

4.1
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare
write
Share an Interview