Upload Button Icon Add office photos

Atos

Compare button icon Compare button icon Compare

Filter interviews by

Atos Senior Security Analyst Interview Questions and Answers

Updated 23 Jan 2023

Atos Senior Security Analyst Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 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 - Technical 

(3 Questions)

  • Q1. Explain different ransomware attacks
  • Ans. 

    Ransomware attacks encrypt files and demand payment for decryption.

    • Encrypts files and demands payment for decryption

    • May use social engineering tactics to trick victims into downloading malware

    • May spread through phishing emails, malicious websites, or infected software

    • Examples include WannaCry, Petya, and Locky

  • Answered by AI
  • Q2. What is Port number of SMB
  • Ans. 

    The port number of SMB is 445.

    • SMB stands for Server Message Block.

    • SMB is a protocol used for file sharing and printer sharing.

    • Port 445 is used for direct TCP/IP connection without NetBIOS.

    • Port 139 is also used for SMB over NetBIOS.

  • Answered by AI
  • Q3. What is SMB relay attack
  • Ans. 

    SMB relay attack is a type of attack where an attacker intercepts and relays SMB traffic to gain unauthorized access to a target system.

    • The attacker intercepts SMB traffic between two systems and relays it to gain access to the target system.

    • The attack can be carried out using tools like Responder or Metasploit.

    • The attack can be prevented by disabling SMBv1, using SMB signing, and implementing network segmentation.

    • An e...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. General discussion about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn in detail and study based on real life cyberattack and tactics

Skills evaluated in this interview

Interview questions from similar companies

I applied via Walk-in and was interviewed in May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on OAM , OIM , Cyberark

Interview Preparation Tips

Interview preparation tips for other job seekers - What ever product / technology / experience u mention, please mention those in which you have in depth knowledge.

It's the most basic thing , don't say things that you have not worked on or worked for 1-2months , that will surely cause issue.

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

Interview Questionnaire 

1 Question

  • Q1. Normally they come up in interview with 4-5 guys, they were asking to start scenario based one by one person, question starting from infrastructure of organization, architecture of RSA Netwitness, descr...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold & calm, show your interest, be confidence, stick with your answers
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About 3 way handshake
  • Q2. About difference between encoding and hashing
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2022. There were 2 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 - Technical 

(3 Questions)

  • Q1. What is EDR ?
  • Ans. 

    EDR stands for Endpoint Detection and Response, a security solution that monitors and responds to endpoint threats.

    • EDR solutions provide real-time visibility into endpoint activity and behavior.

    • They use advanced analytics and machine learning to detect and respond to threats.

    • EDR solutions can also provide forensic analysis to investigate incidents and identify root causes.

    • Examples of EDR solutions include Carbon Black,...

  • Answered by AI
  • Q2. How EDR works and
  • Ans. 

    EDR stands for Endpoint Detection and Response. It is a security solution that monitors and responds to endpoint threats.

    • EDR solutions use agents installed on endpoints to collect data and send it to a central server for analysis.

    • They use behavioral analysis and machine learning to detect and respond to threats in real-time.

    • EDR solutions can also provide forensic data to investigate incidents and improve security postu...

  • Answered by AI
  • Q3. Process related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume well and try to get the JD about the profile from HR and study the topics accordingly

Interview Questionnaire 

2 Questions

  • Q1. Basic VAPT conceptual questions
  • Q2. Technical web app Pt

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge is enough
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. All about siem and implementation

I applied via Naukri.com and was interviewed in Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Normal Accounts related question like describe Depreciation, ammortization, and what do you mean by Reporting (RTR Activity).
  • Q2. Some interviewer may ask what do you mean by EBITDA as in my case be prepared for this type of bouncers as well .
  • Q3. Then they will ask you your previous work related question. In my case they ask if there is GL to SL mismatch what will you do to solve it.
  • Q4. Then why do we do depreciation of companies what is the need for it
  • Ans. 

    Depreciation is necessary to allocate the cost of an asset over its useful life.

    • Depreciation helps in matching the cost of an asset with the revenue it generates.

    • It allows for the recognition of the wear and tear, obsolescence, and loss of value of assets over time.

    • Depreciation expense reduces taxable income, resulting in tax savings for companies.

    • It helps in determining the true profitability and financial position of...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident remember it's not that the interviewer knows everything but be convincing don't say blah blah if you don't know anything .
Read the basics and if you are experienced be sure to explain every detail of how you used to do work.
Best of luck.

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

They give some MCQ question from c#, .net,SQL, angular. Fizz Buzz type coding.

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops concepts, splitter, 3 highest salary in SQL, procedure and functions difference. Basic questions of c#.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not hard. They ask about your project and your role.

Atos Interview FAQs

How many rounds are there in Atos Senior Security Analyst interview?
Atos interview process usually has 3 rounds. The most common rounds in the Atos interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in Atos Senior Security Analyst interview?

Some of the top questions asked at the Atos Senior Security Analyst interview -

  1. What is Port number of ...read more
  2. What is SMB relay att...read more
  3. Explain different ransomware atta...read more

Tell us how to improve this page.

Atos Senior Security Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.3k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 805 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all
Atos Senior Security Analyst Salary
based on 144 salaries
₹5 L/yr - ₹15.4 L/yr
22% less than the average Senior Security Analyst Salary in India
View more details

Atos Senior Security Analyst Reviews and Ratings

based on 10 reviews

3.6/5

Rating in categories

3.1

Skill development

3.9

Work-life balance

2.5

Salary

3.6

Job security

3.2

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 10 Reviews and Ratings
Associate Consultant
5.2k salaries
unlock blur

₹3 L/yr - ₹11.5 L/yr

Consultant
4k salaries
unlock blur

₹7 L/yr - ₹27 L/yr

Senior Consultant
2k salaries
unlock blur

₹10.6 L/yr - ₹36 L/yr

System Engineer
934 salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

Software Engineer
847 salaries
unlock blur

₹2.4 L/yr - ₹11 L/yr

Explore more salaries
Compare Atos with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview