Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cyber Infrastructure Team. If you also belong to the team, you can get access from here

Cyber Infrastructure Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cyber Infrastructure Interview Questions and Answers

Updated 29 May 2025
Popular Designations

23 Interview questions

A Python Software Developer was asked 3w ago
Q. How can you remove duplicate numbers from a list?
Ans. 

You can remove duplicates from a list in Python using various methods like set(), list comprehension, or loops.

  • Use set(): Convert the list to a set and back to a list. Example: list(set([1, 2, 2, 3])) results in [1, 2, 3].

  • List comprehension: Create a new list while checking for duplicates. Example: [x for i, x in enumerate(original_list) if x not in original_list[:i]].

  • Using a loop: Iterate through the list and app...

View all Python Software Developer interview questions
A Python Software Developer was asked 3w ago
Q. How can I count the common words between two given strings?
Ans. 

Count common words in two strings by splitting, using sets, and finding intersections.

  • Split both strings into lists of words using the split() method.

  • Convert the lists to sets to eliminate duplicates.

  • Use set intersection to find common words.

  • Example: 'hello world' and 'world of python' -> common words: {'world'}.

View all Python Software Developer interview questions
A Python Software Developer was asked 3w ago
Q. What is the difference between a module and a package in programming?
Ans. 

A module is a single file of Python code, while a package is a collection of modules organized in a directory structure.

  • A module is a single Python file (e.g., `math.py`).

  • A package is a directory containing multiple modules and a special `__init__.py` file (e.g., `mypackage/`).

  • Modules can be imported directly (e.g., `import math`).

  • Packages allow for hierarchical organization of modules (e.g., `from mypackage impor...

View all Python Software Developer interview questions
A Python Software Developer was asked 3w ago
Q. How can an HTTP URL be accessed or run without using an API?
Ans. 

Accessing an HTTP URL can be done using various methods like web scraping, browser automation, or direct HTTP requests.

  • Use the 'requests' library in Python to make GET or POST requests to the URL.

  • Example: response = requests.get('http://example.com')

  • Utilize web scraping tools like BeautifulSoup to extract data from HTML pages.

  • Example: soup = BeautifulSoup(response.content, 'html.parser')

  • Employ browser automation t...

View all Python Software Developer interview questions
A BD Executive was asked 1mo ago
Q. Sell this pen.
Ans. 

This pen is not just a writing tool; it's a gateway to creativity, ideas, and communication, designed for every occasion.

  • Versatile Use: Perfect for jotting down notes in a meeting, signing important documents, or sketching your next big idea.

  • Ergonomic Design: The pen is crafted for comfort, ensuring a smooth writing experience without hand fatigue, ideal for long writing sessions.

  • Quality Ink: It features high-qual...

View all BD Executive interview questions
A Software Developer Trainee was asked 2mo ago
Q. Write an SQL query to find the second largest salary from an employee table.
Ans. 

To find the second largest salary in SQL, we can use various methods like subqueries or the DISTINCT keyword.

  • Use a subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Use DISTINCT: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

  • Use ROW_NUMBER(): SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rank FROM employe...

View all Software Developer Trainee interview questions
A Jr. Designer (ux ui design) was asked 10mo ago
Q. Redesign the UI of a given website in Figma/XD.
Ans. 

Revamp the UI of a given website using Figma/XD

  • Analyze the current website's UI to identify areas for improvement

  • Create wireframes and mockups of the new UI design in Figma/XD

  • Focus on improving user experience and usability

  • Use consistent design elements and color schemes

  • Seek feedback from stakeholders for iterative improvements

Are these interview questions helpful?
A Jr. Designer (ux ui design) was asked 10mo ago
Q. What tools are you familiar with?
Ans. 

I am familiar with tools such as Adobe XD, Sketch, Figma, InVision, and Zeplin.

  • Adobe XD

  • Sketch

  • Figma

  • InVision

  • Zeplin

A Jr. Designer (ux ui design) was asked 10mo ago
Q. What is the difference between UI and UX?
Ans. 

UI is the user interface, focusing on the look and feel of a product, while UX is the user experience, focusing on the overall experience of the user interacting with the product.

  • UI is the visual aspect of a product, including colors, typography, and layout.

  • UX is the overall experience of a user interacting with a product, including ease of use, efficiency, and satisfaction.

  • UI design focuses on creating visually a...

A Jr. Designer (ux ui design) was asked 10mo ago
Q. Which part was more challenging, UI or UX, for you?
Ans. 

Both UI and UX have their own challenges, but I find UX more challenging due to the need for in-depth research and understanding of user behavior.

  • Understanding user needs and behavior

  • Creating user personas and user flows

  • Conducting usability testing and gathering feedback

Cyber Infrastructure Interview Experiences

36 interviews found

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 tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself Tell me about your final year project Your family background
Round 3 - Technical 

(1 Question)

  • Q1. Tell me about yourself Class and object Constructor Polymorphism Multithreading Exception handling
Round 4 - Coding Test 

Pattern program
Multithreading program
And overriding program

Interview Preparation Tips

Interview preparation tips for other job seekers - They only want experience candidates overall interview is good .
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. How can you remove duplicate numbers from a list?
  • Ans. 

    You can remove duplicates from a list in Python using various methods like set(), list comprehension, or loops.

    • Use set(): Convert the list to a set and back to a list. Example: list(set([1, 2, 2, 3])) results in [1, 2, 3].

    • List comprehension: Create a new list while checking for duplicates. Example: [x for i, x in enumerate(original_list) if x not in original_list[:i]].

    • Using a loop: Iterate through the list and append u...

  • Answered by AI
  • Q2. How can I count the common words between two given strings?
  • Ans. 

    Count common words in two strings by splitting, using sets, and finding intersections.

    • Split both strings into lists of words using the split() method.

    • Convert the lists to sets to eliminate duplicates.

    • Use set intersection to find common words.

    • Example: 'hello world' and 'world of python' -> common words: {'world'}.

  • Answered by AI
  • Q3. What is the difference between a module and a package in programming?
  • Ans. 

    A module is a single file of Python code, while a package is a collection of modules organized in a directory structure.

    • A module is a single Python file (e.g., `math.py`).

    • A package is a directory containing multiple modules and a special `__init__.py` file (e.g., `mypackage/`).

    • Modules can be imported directly (e.g., `import math`).

    • Packages allow for hierarchical organization of modules (e.g., `from mypackage import mym...

  • Answered by AI
  • Q4. How can an HTTP URL be accessed or run without using an API?
  • Ans. 

    Accessing an HTTP URL can be done using various methods like web scraping, browser automation, or direct HTTP requests.

    • Use the 'requests' library in Python to make GET or POST requests to the URL.

    • Example: response = requests.get('http://example.com')

    • Utilize web scraping tools like BeautifulSoup to extract data from HTML pages.

    • Example: soup = BeautifulSoup(response.content, 'html.parser')

    • Employ browser automation tools ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Give your best effort without hesitation, as they are only asking basic question.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Normal apti reasoning test checking normal intelligence with some basic technical questions.

Round 2 - Group Discussion 

Topic was physical cash V/s Digital cash.

Round 3 - Technical 

(1 Question)

  • Q1. About project in detail
Round 4 - Technical 

(1 Question)

  • Q1. About project in detail
Round 5 - HR 

(1 Question)

  • Q1. Intro,family background,ready to locate

Software Engineer Interview Questions & Answers

user image Rajkumar Prajapat

posted on 5 Jan 2025

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops concept ? SQL Queries ?

Java Developer Interview Questions & Answers

user image Rinku Yadav

posted on 16 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Oop concept, Multithread, String

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for sql as well

Interview Questions & Answers

user image Anonymous

posted on 7 Aug 2024

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

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

Round 1 - One-on-one 

(6 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    Passionate Jr. Designer with a background in UX/UI design and a strong eye for detail.

    • Graduated with a degree in Graphic Design

    • Proficient in Adobe Creative Suite

    • Experience with wireframing and prototyping tools like Sketch and InVision

    • Strong understanding of user-centered design principles

    • Worked on projects involving mobile app design and website development

  • Answered by AI
  • Q2. What are the tools you are familiar with?
  • Ans. 

    I am familiar with tools such as Adobe XD, Sketch, Figma, InVision, and Zeplin.

    • Adobe XD

    • Sketch

    • Figma

    • InVision

    • Zeplin

  • Answered by AI
  • Q3. Difference between uiand ux?
  • Ans. 

    UI is the user interface, focusing on the look and feel of a product, while UX is the user experience, focusing on the overall experience of the user interacting with the product.

    • UI is the visual aspect of a product, including colors, typography, and layout.

    • UX is the overall experience of a user interacting with a product, including ease of use, efficiency, and satisfaction.

    • UI design focuses on creating visually appeal...

  • Answered by AI
  • Q4. What was your last project, give me a brief about it?
  • Ans. 

    My last project was designing a mobile app for a fitness tracking platform.

    • Researched user needs and preferences for fitness tracking apps

    • Created wireframes and prototypes for user testing

    • Designed a clean and intuitive user interface with a focus on usability

    • Collaborated with developers to ensure smooth implementation of design elements

  • Answered by AI
  • Q5. What was the most critical part for that project?
  • Ans. 

    The most critical part of the project was ensuring seamless user experience through intuitive navigation and clear visual hierarchy.

    • Creating user personas to understand target audience needs

    • Conducting usability testing to identify pain points and areas for improvement

    • Iterating on design based on feedback received from stakeholders

    • Implementing responsive design principles for optimal user experience across devices

  • Answered by AI
  • Q6. Which part was more challenging ui or ux for you?
  • Ans. 

    Both UI and UX have their own challenges, but I find UX more challenging due to the need for in-depth research and understanding of user behavior.

    • Understanding user needs and behavior

    • Creating user personas and user flows

    • Conducting usability testing and gathering feedback

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Rewamp a ui of a given website in figma/xd
  • Ans. 

    Revamp the UI of a given website using Figma/XD

    • Analyze the current website's UI to identify areas for improvement

    • Create wireframes and mockups of the new UI design in Figma/XD

    • Focus on improving user experience and usability

    • Use consistent design elements and color schemes

    • Seek feedback from stakeholders for iterative improvements

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyber Infrastructure interview:
  • figma
Interview preparation tips for other job seekers - stay confident, prepair the basics.

Skills evaluated in this interview

PPC Executive Interview Questions & Answers

user image Anonymous

posted on 21 May 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. How to setup conversion tracking?
  • Q2. How to optimize target audience?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is class what is object what is different between private protected and public and default
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class. Private, protected, public, and default are access modifiers in object-oriented programming.

    • A class is a template or blueprint that defines the properties and behaviors of objects.

    • An object is an instance of a class, created using the class blueprint.

    • Private access modifier restricts access to class members within the same class.

    • Pro...

  • Answered by AI
  • Q2. What is object ?
  • Ans. 

    An object is a self-contained entity that consists of both data and behavior.

    • Objects are instances of classes in object-oriented programming.

    • They encapsulate data and provide methods to manipulate that data.

    • Objects can interact with each other through method calls and message passing.

    • Examples of objects include a car, a person, or a bank account.

  • Answered by AI
  • Q3. What is public?
  • Ans. 

    Public is a keyword in programming languages that denotes the accessibility of a class, method, or variable.

    • Public is one of the access modifiers in object-oriented programming.

    • It allows the class, method, or variable to be accessed from any other class or package.

    • Public members are part of the public API of a software component.

    • Example: public class MyClass { ... }

    • Example: public void myMethod() { ... }

    • Example: public...

  • Answered by AI
  • Q4. What is private?
  • Ans. 

    In programming, private is an access modifier that restricts the visibility of a class member to within its own class.

    • Private is used to encapsulate data and prevent direct access from outside the class.

    • Private members can only be accessed through public methods or properties.

    • Private variables are often used to store internal state or implementation details.

    • Private methods are used for internal logic and are not meant ...

  • Answered by AI
  • Q5. What is protected
  • Ans. 

    protected is an access modifier in object-oriented programming that restricts access to members within the same package or subclasses.

    • protected is one of the four access modifiers in Java, along with public, private, and default.

    • Members declared as protected can be accessed within the same package or by subclasses.

    • Protected members are not accessible outside the package unless accessed through inheritance.

    • Example: prot...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyber Infrastructure Software Developer interview:
  • OOPS
  • Java
Interview preparation tips for other job seekers - Know what you have written in your resume

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Personal details
Round 2 - Coding Test 

Pattern, star , hollow pattern

Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. How would you ensure a server is secure?
  • Ans. 

    To ensure a server is secure, one must implement various security measures such as firewalls, encryption, regular updates, access control, and monitoring.

    • Implement firewalls to control incoming and outgoing traffic

    • Use encryption to protect data in transit and at rest

    • Regularly update software and patches to fix vulnerabilities

    • Implement access control measures to restrict unauthorized access

    • Monitor server activity for an...

  • Answered by AI
  • Q2. What steps can you take to prevent identity theft?
  • Ans. 

    To prevent identity theft, one can take steps such as monitoring financial accounts regularly, using strong passwords, being cautious with personal information, and shredding sensitive documents.

    • Monitor financial accounts regularly for any suspicious activity

    • Use strong, unique passwords for online accounts

    • Be cautious when sharing personal information online or over the phone

    • Shred sensitive documents before disposing of...

  • Answered by AI
  • Q3. Explain Social phishing and the steps you can take to prevent it?
  • Ans. 

    Social phishing is a type of cyber attack that involves manipulating individuals into divulging confidential information.

    • Social phishing involves attackers using social engineering tactics to trick individuals into revealing sensitive information such as passwords or financial details.

    • Common methods of social phishing include impersonating trusted entities like banks or government agencies, creating fake social media p...

  • Answered by AI
  • Q4. What are spyware attacks and how to prevent them?
  • Ans. 

    Spyware attacks are malicious software that secretly gathers information about a person or organization.

    • Spyware can be installed on a device without the user's knowledge through malicious links, emails, or software downloads.

    • To prevent spyware attacks, users should regularly update their operating systems and security software.

    • Avoid clicking on suspicious links or downloading attachments from unknown sources.

    • Use a repu...

  • Answered by AI
  • Q5. What are some of the most common types of cyberattacks
  • Ans. 

    Common types of cyberattacks include phishing, malware, ransomware, DDoS attacks, and social engineering.

    • Phishing: fraudulent emails or messages to trick individuals into revealing sensitive information

    • Malware: malicious software designed to damage or gain unauthorized access to a computer system

    • Ransomware: encrypts files on a victim's system and demands payment for decryption

    • DDoS attacks: overwhelm a system with traff...

  • Answered by AI
Round 2 - HR 

(5 Questions)

  • Q1. Tell me about your self/ Introduce your self?
  • Q2. Why this role attracts you?
  • Q3. What do you know about the our company?
  • Q4. Can you work under pressure ?
  • Q5. Are you willing to relocate

Skills evaluated in this interview

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 Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Good questions and dsa arrays and string questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Oops related questions
  • Q2. DSA questions
Round 3 - Technical 

(1 Question)

  • Q1. All combined questions

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Cyber Infrastructure?
Ask anonymously on communities.

Cyber Infrastructure Interview FAQs

How many rounds are there in Cyber Infrastructure interview?
Cyber Infrastructure interview process usually has 2-3 rounds. The most common rounds in the Cyber Infrastructure interview process are Technical, HR and Coding Test.
How to prepare for Cyber Infrastructure 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 Cyber Infrastructure. The most common topics and skills that interviewers at Cyber Infrastructure expect are MySQL, Communication Skills, C#, Angular and Python.
What are the top questions asked in Cyber Infrastructure interview?

Some of the top questions asked at the Cyber Infrastructure interview -

  1. What is class what is object what is different between private protected and pu...read more
  2. What is the difference between a module and a package in programmi...read more
  3. How can I count the common words between two given strin...read more
What are the most common questions asked in Cyber Infrastructure HR round?

The most common HR questions asked in Cyber Infrastructure interview are -

  1. Why are you looking for a chan...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your strengths and weakness...read more
How long is the Cyber Infrastructure interview process?

The duration of Cyber Infrastructure interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 30 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 78%
2-4 weeks 22%
View more

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 66 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.7
 • 41 Interviews
Stefanini Interview Questions
3.0
 • 36 Interviews
Statusneo Interview Questions
3.9
 • 32 Interviews
GlobalStep Interview Questions
2.6
 • 29 Interviews
SpanIdea Interview Questions
3.6
 • 26 Interviews
View all

Cyber Infrastructure Reviews and Ratings

based on 283 reviews

3.5/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.2

Salary

3.4

Job security

3.5

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 283 Reviews and Ratings
Junior Python Developer

Indore

1-3 Yrs

₹ 2.6-8 LPA

Sr. MERN Full Stack Developer

Indore

4-6 Yrs

Not Disclosed

Jr. AI/ML Developer

Indore

1-2 Yrs

Not Disclosed

Explore more jobs
Software Developer
269 salaries
unlock blur

₹3.3 L/yr - ₹8 L/yr

Junior Software Developer
105 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Senior Software Developer
47 salaries
unlock blur

₹5.4 L/yr - ₹11.5 L/yr

Junior Developer
46 salaries
unlock blur

₹2.5 L/yr - ₹5.9 L/yr

Senior Developer
28 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Explore more salaries
Compare Cyber Infrastructure with

AgreeYa Solutions

3.2
Compare

Apisero

4.3
Compare

Actalent Services

3.6
Compare

Stefanini

3.0
Compare
write
Share an Interview