Upload Button Icon Add office photos

Filter interviews by

Cyber Security Infotech Interview Questions and Answers

Updated 16 Oct 2023

Cyber Security Infotech Interview Experiences

Popular Designations

2 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Solving coding problem

Round 2 - Technical 

(5 Questions)

  • Q1. Solving problem
  • Q2. Who many package?
  • Q3. ProdTake a company data
  • Q4. What are the types of hacker
  • Ans. 

    Types of hackers include white hat, black hat, grey hat, script kiddie, hacktivist, and state-sponsored hackers.

    • White hat hackers: Ethical hackers who use their skills to improve security.

    • Black hat hackers: Malicious hackers who exploit vulnerabilities for personal gain.

    • Grey hat hackers: A mix of white and black hat hackers who may break laws but not for malicious purposes.

    • Script kiddies: Inexperienced hackers who use ...

  • Answered by AI
  • Q5. What is the ethical hacker
  • Ans. 

    An ethical hacker is a cybersecurity expert who legally hacks into systems to identify vulnerabilities and improve security.

    • Ethical hackers are hired by organizations to test the security of their systems and networks.

    • They use the same techniques as malicious hackers, but with permission and for the purpose of improving security.

    • Ethical hackers must adhere to strict ethical guidelines and laws while conducting their te...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyber Security Infotech Ethical Hacking Trainer interview:
  • Ethical Hacking
  • Coding

Ethical Hacking Trainer Interview Questions asked at other Companies

Q1. What are the types of hacker
View answer (1)

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

I applied via Company Website and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your current job?
  • Ans. 

    I am currently working as a Software Engineer at XYZ Company.

    • I am responsible for developing and maintaining software applications.

    • I collaborate with a team of developers to design and implement new features.

    • I troubleshoot and debug issues to ensure smooth functioning of the software.

    • I participate in code reviews and provide feedback to improve code quality.

    • I stay updated with the latest technologies and trends in the ...

  • Answered by AI
  • Q2. Ordinary factor I work confidently and responsibly, protect the workplace and stick to my work

Interview Preparation Tips

Interview preparation tips for other job seekers - I advise you to submit a distinguished CV and to be confident in your work and commitment to the time imposed on you

Associate Information Technology Consultant Interview Questions asked at other Companies

Q1. There is a bulb producing company and some of the produced bulbs got defected due to different reasons. Company wants to develop a module where they monitors the ratio of working bulbs vs defeated bulbs. Which technical skills or what type ... read more
View answer (1)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Assignment 

The task was a Codility type

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 Resume tips
Round 2 - Coding Test 

Easy problem on java

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the CV details

I applied via LinkedIn and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Data structure and C++
  • Q2. Reverse Linked list
  • Q3. Multi threaded queue
  • Q4. Design pattern
  • Q5. Basic C++ concepts
  • Q6. Puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve data structure problems
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Threading: Write and use a mutex?
  • Ans. 

    A mutex is a synchronization primitive that ensures only one thread can access a resource at a time.

    • Create a mutex object using the appropriate library or language-specific function.

    • Lock the mutex before accessing the shared resource to prevent other threads from accessing it.

    • Unlock the mutex after finishing the operation on the shared resource to allow other threads to access it.

    • Example: pthread_mutex_t mutex; pthread...

  • Answered by AI
  • Q2. Find the memory leak in a given set of code.
  • Ans. 

    Identify memory leak in code

    • Check for any dynamically allocated memory that is not being freed

    • Look for any infinite loops or recursive functions that consume memory

    • Use memory profiling tools like Valgrind to detect leaks

    • Check for any global variables that are not properly managed

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Technical 

(3 Questions)

  • Q1. How to check a number is power of 2
  • Ans. 

    To check if a number is a power of 2, we can use bitwise operations.

    • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

    • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

  • Answered by AI
  • Q2. Sort a stack without using another data structure
  • Ans. 

    Sort a stack without using another data structure

    • Use recursion to pop the top element and insert it at the bottom of the remaining stack

    • Repeat until the stack is sorted in ascending order

    • Time complexity: O(n^2), space complexity: O(n) due to recursion

  • Answered by AI
  • Q3. Check weather array have continuous increasing than decreasing value
  • Ans. 

    Check if array has continuous increasing and decreasing values

    • Loop through the array and check if each element is greater than the previous one

    • Once you find the maximum element, check if the remaining elements are in decreasing order

    • If yes, return true else false

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a cricinfo (LLD)
  • Ans. 

    Design a cricinfo (LLD)

    • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

    • Define the relationships between entities

    • Create a database schema to store the data

    • Implement APIs to fetch and update data

    • Design a UI to display the information

    • Consider scalability and performance

    • Ensure data security and privacy

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study basic Data Structure questions and also prepare for Low level design.
Do work on behavioral questions too.

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning And aptitude test

Round 2 - Coding Test 

C++, python and Java programming

Interview Preparation Tips

Topics to prepare for Gen Software Engineer interview:
  • C++
  • Python
Interview preparation tips for other job seekers - I am interested for this company opportunity for giving me and I am so happy and giving me for work from home job
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Oct 2024.

Round 1 - Coding Test 

Non-overlapping interval( the minimum number of intervals you need to remove to make the rest of the intervals non-overlapping).

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - HR 

(1 Question)

  • Q1. CAP theorem, TCP/UDP, SQL/NOSQL, process and thread

Interview Preparation Tips

Interview preparation tips for other job seekers - They did not provide a valid reason for not progressing the profile after the first introductory call.
Contribute & help others!
anonymous
You can choose to be anonymous

Cyber Security Infotech Interview FAQs

How many rounds are there in Cyber Security Infotech interview?
Cyber Security Infotech interview process usually has 2-3 rounds. The most common rounds in the Cyber Security Infotech interview process are Resume Shortlist, One-on-one Round and Coding Test.
What are the top questions asked in Cyber Security Infotech interview?

Some of the top questions asked at the Cyber Security Infotech interview -

  1. What are the types of hac...read more
  2. What is the ethical hac...read more
  3. Ordinary factor I work confidently and responsibly, protect the workplace and s...read more

Recently Viewed

SALARIES

The Indian Hotels Company

DESIGNATION

SALARIES

ITC

DESIGNATION

DESIGNATION

DESIGNATION

Tell us how to improve this page.

Cyber Security Infotech Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Gen Interview Questions
4.0
 • 17 Interviews
Safe Security Interview Questions
2.9
 • 8 Interviews
FireEye Interview Questions
4.3
 • 5 Interviews
View all

Cyber Security Infotech Reviews and Ratings

based on 12 reviews

2.7/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

2.9

Salary

2.5

Job security

2.9

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 12 Reviews and Ratings
Consultant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Digital Marketing Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cyber Security Infotech with

Securelayer7 Technologies

4.2
Compare

Kratikal Tech Private Limited

3.7
Compare

Safe Security

2.9
Compare

QUICK HEAL TECHNOLOGIES

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent