Filter interviews by
A capital market is a financial market for buying and selling long-term debt or equity-backed securities.
Capital markets facilitate the raising of capital by connecting investors with companies or governments.
They include primary markets (where new securities are issued) and secondary markets (where existing securities are traded).
Examples of capital market instruments include stocks, bonds, and debentures.
Stock e...
I implement systematic processes and tools to ensure accurate and up-to-date documentation for vendor management.
Utilize a centralized document management system for easy access and version control.
Establish clear guidelines for documentation standards and formats.
Regularly review and update documents to reflect current practices and agreements.
Implement a checklist for onboarding new vendors to ensure all necessa...
Following a process involves understanding, documenting, and adhering to established steps to achieve desired outcomes.
Identify the process: Understand the specific process you need to follow, such as vendor onboarding.
Document the steps: Create a clear outline of each step involved, like contract negotiation and compliance checks.
Assign responsibilities: Determine who is responsible for each step, ensuring accoun...
During my internship, I worked on a project focused on enhancing network security through vulnerability assessments and threat analysis.
Conducted vulnerability assessments using tools like Nessus and OpenVAS to identify security weaknesses.
Developed a threat model for the organization's network infrastructure to prioritize risks.
Collaborated with the IT team to implement security patches and updates based on asses...
Incremental data loading updates only new or changed data, improving efficiency and reducing load times.
Identify the source of data changes, such as timestamps or version numbers.
Use Change Data Capture (CDC) to track changes in the source database.
Implement a staging area to temporarily hold the incremental data before loading.
Schedule regular intervals for incremental loads, such as hourly or daily.
Example: Use ...
Financial markets are platforms where buyers and sellers trade financial assets like stocks, bonds, and currencies.
Types of financial markets include stock markets (e.g., NYSE, NASDAQ) where shares of companies are traded.
Bond markets facilitate the buying and selling of debt securities, such as government bonds or corporate bonds.
Foreign exchange markets (Forex) allow for the trading of currencies, impacting glob...
SIPs are a method of investing in mutual funds, allowing regular, disciplined investments over time.
SIP stands for Systematic Investment Plan, a way to invest a fixed amount regularly in mutual funds.
Mutual funds pool money from multiple investors to invest in a diversified portfolio of stocks, bonds, or other securities.
SIPs can be monthly, quarterly, or at any regular interval, making investing accessible for in...
Automate a page using code
Identify the elements on the page that need to be interacted with
Use a programming language like Python or JavaScript to write scripts for automation
Utilize tools like Selenium WebDriver for web automation
Consider using frameworks like TestNG or JUnit for test automation
Different waits refer to various types of delays experienced in processes or systems, impacting efficiency and outcomes.
Types of waits include: queue wait (e.g., waiting in line at a store), process wait (e.g., waiting for a machine to finish a task).
In project management, waiting for approvals can delay timelines, impacting overall project delivery.
In healthcare, patient wait times can affect treatment outcomes a...
The capital market is a financial market where individuals and institutions trade financial securities.
It is a market for buying and selling long-term debt or equity-backed securities.
It includes stock exchanges and over-the-counter markets.
Investors can buy and sell stocks, bonds, and other financial instruments in the capital market.
It helps companies raise capital for expansion and growth.
Examples include the N...
I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.
UiPath Studio is for professional developers, while StudioX is for business users with no coding experience.
UiPath Studio is for professional developers who have coding experience.
StudioX is designed for business users with no coding experience.
StudioX has a more user-friendly interface and pre-built automation templates.
UiPath Studio offers more advanced features and customization options for developers.
StudioX allows...
Automation Test Suite is a collection of test cases that are automated to test the functionality of a software application.
Automation Test Suite helps in executing multiple test cases efficiently.
It helps in reducing manual effort and time required for testing.
Test suites can be scheduled to run at specific times or triggered based on certain events.
Examples of popular automation test suites include Selenium, UFT, and ...
It was basic questions of maths and logical reasoning
It’s related to behavioural question fully
I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.
Reasoning, English , Maths
Basic of Python, string, Loops
HR rounds assess candidates' fit for the company culture and their interpersonal skills through various questions.
Understand the company's values and align your answers accordingly.
Be prepared to discuss your strengths and weaknesses with examples.
Demonstrate your teamwork skills by sharing experiences from past projects.
Show enthusiasm for the role and the company during the interview.
Practice common HR questions like...
I applied via Campus Placement
I applied via Job Fair
Verbal, reasoning,aptitude
2Coding questions and it was moderate level
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
SCD type 2 is a method used in data warehousing to track historical changes by creating a new record for each change.
SCD type 2 stands for Slowly Changing Dimension type 2
It involves creating a new record in the dimension table whenever there is a change in the data
The old record is marked as inactive and the new record is marked as current
It allows for historical tracking of changes in data over time
Example: If a cust...
Read multiple CSV files, add a column, and save them to a new location using PySpark.
Use SparkSession to initialize PySpark: `spark = SparkSession.builder.appName('CSVProcessor').getOrCreate()`.
Read CSV files from a folder: `df = spark.read.csv('path/to/folder/*.csv', header=True)`.
Add a new column: `df = df.withColumn('new_column', lit('value'))`.
Write the modified DataFrame to a new location: `df.write.csv('path/to/o...
The capital market is a financial market where individuals and institutions trade financial securities.
It is a market for buying and selling long-term debt or equity-backed securities.
It includes stock exchanges and over-the-counter markets.
Investors can buy and sell stocks, bonds, and other financial instruments in the capital market.
It helps companies raise capital for expansion and growth.
Examples include the New Yo...
An abstract class is a class that cannot be instantiated and is used as a blueprint for other classes to inherit from.
Cannot be instantiated directly
May contain abstract methods that must be implemented by subclasses
Can have both abstract and non-abstract methods
Used to define common behavior for subclasses
Singleton pattern ensures a class has only one instance and provides a global point of access to it.
Create a private static instance variable of the class itself
Make the constructor private to prevent instantiation from outside the class
Provide a static method to access the singleton instance
Struts is a framework for building Java web applications based on the Model-View-Controller (MVC) design pattern.
Struts framework is based on MVC architecture
It uses ActionServlet as the controller
Struts configuration is done using XML files like struts-config.xml
It provides built-in support for form validation and error handling
Struts actions are mapped to URLs in struts-config.xml
I appeared for an interview in Mar 2025, where I was asked the following questions.
I have extensive experience in field engineering, focusing on project management, technical support, and client relations.
Managed multiple projects simultaneously, ensuring timely delivery and adherence to budget constraints.
Provided technical support for equipment installation and troubleshooting, improving operational efficiency by 20%.
Collaborated with cross-functional teams to develop innovative solutions for compl...
I have worked in various engineering roles, focusing on field operations, project management, and technical support across multiple industries.
Worked as a Field Engineer at XYZ Corp, managing on-site installations and troubleshooting equipment.
Collaborated with cross-functional teams to ensure project timelines were met, improving efficiency by 20%.
Conducted regular site inspections to ensure compliance with safety reg...
Object-Oriented Programming (OOP) concepts enhance software design through encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: Bundling data and methods in a class. Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.
Inheritance: Deriving new classes from existing ones. Example: 'ElectricCar' inherits from 'Car', adding features like 'batteryCapacity'.
Polymorphism: M...
Various technologies used in the project include Java, Spring Boot, Angular, MySQL, and Docker.
Java
Spring Boot
Angular
MySQL
Docker
Top trending discussions
The duration of Atos interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 248 interview experiences
Difficulty level
Duration
based on 4.5k reviews
Rating in categories
Associate Consultant
5.3k
salaries
| ₹3 L/yr - ₹12 L/yr |
Consultant
4.1k
salaries
| ₹7 L/yr - ₹27 L/yr |
Senior Consultant
2k
salaries
| ₹11 L/yr - ₹36 L/yr |
System Engineer
996
salaries
| ₹2.1 L/yr - ₹7.1 L/yr |
Software Engineer
704
salaries
| ₹3.2 L/yr - ₹12 L/yr |
Accenture
Wipro
Cognizant
Capgemini