i
Ascendion
Filter interviews by
Ascendion is a technology services firm specializing in digital transformation and software development solutions.
Founded in 2021, Ascendion focuses on delivering innovative technology solutions.
They offer services in software development, cloud solutions, and data analytics.
Ascendion emphasizes a culture of collaboration and continuous learning.
They work with various industries, including healthcare, finance, and...
Ascendion fosters career growth through mentorship, training programs, and a culture of continuous learning.
Mentorship programs connect employees with experienced professionals for guidance and support.
Regular training sessions and workshops are offered to enhance skills in emerging technologies.
Career development plans are tailored to individual goals, ensuring alignment with company objectives.
Opportunities for ...
Design patterns are reusable solutions to common software design problems, enhancing code maintainability and scalability.
Creational patterns (e.g., Singleton, Factory Method) deal with object creation mechanisms.
Structural patterns (e.g., Adapter, Composite) focus on class and object composition.
Behavioral patterns (e.g., Observer, Strategy) define how objects interact and communicate.
Design patterns promote best...
Filters, map, and pipes in Angular are tools for transforming data in templates and components.
Filters: Used to format data in templates, e.g., {{ dateValue | date:'short' }}.
Map: A method in RxJS for transforming emitted values from observables, e.g., observable$.pipe(map(value => value * 2)).
Pipes: Custom or built-in functions that take input data and return transformed output, e.g., {{ numberValue | currency...
What people are saying about Ascendion
ETL stands for Extract, Transform, Load, a process for integrating and managing data from multiple sources into a data warehouse.
Extract: Collecting data from various sources like databases, APIs, or flat files. Example: Pulling sales data from an SQL database.
Transform: Cleaning and converting data into a suitable format. Example: Changing date formats or aggregating sales data by month.
Load: Storing the transfor...
Core concepts of data science include data collection, cleaning, analysis, modeling, and visualization to derive insights.
Data Collection: Gathering data from various sources like databases, APIs, or web scraping. Example: Using APIs to collect Twitter data.
Data Cleaning: Removing inconsistencies and errors in the data to ensure quality. Example: Handling missing values or duplicates.
Data Analysis: Exploring and a...
SQL is a standard language for managing and manipulating relational databases, focusing on data retrieval and management.
Data Definition Language (DDL): SQL commands like CREATE, ALTER, and DROP are used to define and modify database structures. Example: CREATE TABLE users (id INT, name VARCHAR(100));
Data Manipulation Language (DML): SQL commands such as INSERT, UPDATE, and DELETE are used to manipulate data withi...
Inheritance allows a class to inherit properties and methods from another class, promoting code reuse and hierarchical relationships.
Base Class: The class from which properties and methods are inherited is called the base class or parent class. Example: 'Animal' class.
Derived Class: The class that inherits from the base class is called the derived class or child class. Example: 'Dog' class inherits from 'Animal'.
C...
AI is transforming industries by enhancing efficiency, enabling data-driven decisions, and fostering innovation across various fields.
AI improves data processing speed, allowing for real-time analytics, such as in financial trading systems.
Machine learning algorithms can predict customer behavior, enhancing marketing strategies, like personalized recommendations on e-commerce sites.
AI-driven automation reduces man...
API stands for Application Programming Interface, enabling software applications to communicate and interact with each other.
APIs allow different software systems to exchange data and functionalities.
For example, a weather app uses an API to fetch data from a weather service.
APIs can be RESTful, SOAP, or GraphQL, each with different protocols and structures.
They are essential for integrating third-party services, ...
My last company was a multinational IT firm specializing in cloud services.
Provided cloud services to clients worldwide
Had a diverse team of IT professionals
Implemented cutting-edge technologies like AI and blockchain
Focused on cybersecurity measures to protect client data
I have a strong knowledge of IT infrastructure including networking, servers, storage, and virtualization.
Understanding of networking principles such as TCP/IP, DNS, DHCP
Experience with server administration including Windows Server and Linux
Knowledge of storage technologies like SAN, NAS, and RAID
Familiarity with virtualization platforms such as VMware or Hyper-V
Ability to troubleshoot hardware and software issues in ...
I appeared for an interview in Jan 2025, where I was asked the following questions.
I appeared for an interview in Feb 2025.
posted on 26 Jan 2024
I appeared for an interview in Nov 2024, where I was asked the following questions.
I appeared for an interview in Jun 2025, where I was asked the following questions.
The company's roles and responsibilities encompass various functions to ensure effective operations and employee satisfaction.
Recruitment: Attracting and selecting qualified candidates, e.g., conducting interviews and assessments.
Employee Development: Providing training and career growth opportunities, e.g., workshops and mentorship programs.
Performance Management: Evaluating employee performance and providing feedback...
Embracing adaptability has been a crucial life lesson, shaping my resilience and growth in various situations.
Adaptability allows for better problem-solving; for instance, when faced with unexpected changes at work, I learned to pivot quickly.
Being open to change has led to new opportunities; I once took on a project outside my expertise, which expanded my skill set.
Resilience in the face of challenges has taught me th...
I completed an internship at XYZ Company, where I gained hands-on experience in recruitment and talent management.
Assisted in screening resumes and conducting initial interviews, improving my understanding of candidate evaluation.
Participated in team meetings to discuss recruitment strategies, enhancing my collaboration skills.
Developed job descriptions and posted them on various platforms, learning about effective job...
I simplified a complex recruitment process for a hiring manager unfamiliar with our applicant tracking system.
Identified the specific areas of confusion regarding the applicant tracking system.
Used analogies related to everyday tasks to explain the process, like comparing it to organizing a filing cabinet.
Provided a step-by-step guide and visual aids to illustrate the workflow.
Encouraged questions throughout the explan...
Ascendion fosters career growth through mentorship, training programs, and a culture of continuous learning.
Mentorship programs connect employees with experienced professionals for guidance and support.
Regular training sessions and workshops are offered to enhance skills in emerging technologies.
Career development plans are tailored to individual goals, ensuring alignment with company objectives.
Opportunities for cross...
Middleware is software that acts as a bridge between different applications or systems, facilitating communication and data exchange.
Middleware helps different software components communicate with each other
It can provide services such as authentication, data transformation, and message queuing
Examples include Apache Kafka, RabbitMQ, and Microsoft BizTalk
Request pipeline is a series of steps that a request goes through from start to finish in a software system.
Request pipeline helps in processing and handling incoming requests efficiently.
Each step in the pipeline performs a specific task such as authentication, validation, processing, and response generation.
Examples of request pipeline include HTTP request processing in web servers like Apache or Nginx.
Dependency injection in Dot net core is a design pattern where classes receive their dependencies from external sources rather than creating them.
Dependency injection allows for better decoupling of components in an application.
In Dot net core, dependency injection is built into the framework and can be easily configured in the Startup class.
Services are registered in the ConfigureServices method of the Startup class a...
Extension methods are a way to add new methods to existing types without modifying the original type.
Extension methods allow you to add new functionality to existing types without modifying them
They are defined as static methods in a static class
They must be in the same namespace as the type being extended
Extension methods are called like regular instance methods
I have worked with various architectures including monolithic, microservices, serverless, and event-driven.
Monolithic architecture involves building a single, indivisible unit for an application.
Microservices architecture breaks down the application into smaller, independent services.
Serverless architecture allows developers to focus on writing code without worrying about infrastructure.
Event-driven architecture enable...
Request delegate is a function that handles incoming HTTP requests and generates responses.
Request delegate is used in ASP.NET Core to process HTTP requests.
It can be used to route requests to appropriate controllers or actions.
Request delegates can be middleware components in the request processing pipeline.
Packages in Dot net core are collections of reusable code that can be easily distributed and managed.
Packages contain libraries, frameworks, and tools that can be used in .NET Core applications.
They are distributed via NuGet, a package manager for .NET.
Packages help in managing dependencies and simplifying the development process.
Example: Entity Framework Core is a popular package used in .NET Core applications.
I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.
Swift UI coding question
I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.
OOPS concept, Collections, HashMap, List and Restassured CRUD Call coding
I appeared for an interview in Jul 2024.
Playwright installation, add 2+"2" in typescript
Install Playwright using npm install playwright
Create a TypeScript file and add the following code: const result = 2 + parseInt('2');
Run the TypeScript file using tsc filename.ts && node filename.js
Check the result variable to see the output
SQL JOIN queries combine rows from two or more tables based on a related column between them.
INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM TableA INNER JOIN TableB ON TableA.id = TableB.id;
LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM TableA LEFT JOIN TableB ON TableA.id = TableB.id;
RIGHT JOIN: Returns all re...
I appeared for an interview in Jun 2025, where I was asked the following questions.
Some of the top questions asked at the Ascendion interview -
The duration of Ascendion interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 116 interview experiences
Difficulty level
Duration
based on 491 reviews
Rating in categories
4-6 Yrs
Not Disclosed
5-7 Yrs
Not Disclosed
3-6 Yrs
Not Disclosed
Senior Software Engineer
133
salaries
| ₹12.6 L/yr - ₹22 L/yr |
Lead Engineer
79
salaries
| ₹21.5 L/yr - ₹33.5 L/yr |
Software Engineer
69
salaries
| ₹7.8 L/yr - ₹13 L/yr |
Senior Engineer
69
salaries
| ₹10 L/yr - ₹18.2 L/yr |
Software Developer
55
salaries
| ₹5.2 L/yr - ₹13.1 L/yr |
ITC Infotech
CMS IT Services
KocharTech
3i Infotech