Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Securonix Cloud Engineer Interview Questions and Answers

Updated 12 Apr 2023

Securonix Cloud Engineer Interview Experiences

1 interview found

Cloud Engineer Interview Questions & Answers

user image M.NAVEEN KUMAR

posted on 4 Mar 2023

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

I applied via Naukri.com and was interviewed before Mar 2022. There were 4 interview rounds.

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 

(1 Question)

  • Q1. About devops technical
Round 3 - Technical 

(1 Question)

  • Q1. All devops and cloud
Round 4 - HR 

(1 Question)

  • Q1. Notice period and package

Interview Preparation Tips

Interview preparation tips for other job seekers - One by one

Interview questions from similar companies

I was interviewed in May 2017.

Interview Questionnaire 

17 Questions

  • Q1. What is angular js
  • Ans. 

    AngularJS is a JavaScript framework for building dynamic web applications.

    • AngularJS is a client-side MVC framework.

    • It allows developers to build single-page applications.

    • It extends HTML with new attributes and tags.

    • AngularJS uses two-way data binding to automatically synchronize data between the model and the view.

    • It provides dependency injection and modularization features.

    • Some popular examples of websites built with

  • Answered by AI
  • Q2. What is directive
  • Ans. 

    A directive is a programming construct that provides instructions to a compiler or interpreter.

    • Directives are used to control the behavior of a program or to provide additional information to the compiler or interpreter.

    • They are typically written as special comments or statements in the code.

    • Examples of directives include #include in C/C++ to include header files, #pragma to control compiler-specific behavior, and #def

  • Answered by AI
  • Q3. What is factory
  • Ans. 

    A factory is a design pattern that provides an interface for creating objects of a certain class.

    • A factory encapsulates the object creation logic and hides it from the client.

    • It allows the client to create objects without knowing the specific class or implementation details.

    • Factories can be used to create different types of objects based on certain conditions or parameters.

    • They promote loose coupling and flexibility in...

  • Answered by AI
  • Q4. What is services
  • Ans. 

    Services are software components that perform specific tasks or provide functionality to other software applications.

    • Services are self-contained and independent modules that can be accessed by other software components.

    • They can be used to handle business logic, data processing, communication with external systems, etc.

    • Examples of services include web services, microservices, RESTful APIs, and cloud services.

    • Services ca...

  • Answered by AI
  • Q5. What is the difference between factory and service
  • Ans. 

    A factory is responsible for creating and managing objects, while a service is responsible for providing specific functionality or performing tasks.

    • A factory is used to create and initialize objects, often based on certain parameters or configurations.

    • A service is a component that provides specific functionality or performs tasks for other components or systems.

    • Factories are commonly used in object-oriented programming...

  • Answered by AI
  • Q6. Write a program to sort
  • Ans. 

    A program to sort an array of strings.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare strings using a comparison function.

    • Implement the sorting algorithm in a function that takes the array as input and modifies it in place.

  • Answered by AI
  • Q7. Write a program to display words separated by space
  • Ans. 

    This program displays words separated by spaces.

    • Use an array of strings to store the words.

    • Iterate through the array and print each word followed by a space.

    • Exclude the space after the last word.

  • Answered by AI
  • Q8. What is provider
  • Ans. 

    A provider is a software component or service that supplies data, functionality, or resources to other software applications.

    • A provider is responsible for delivering data, services, or resources to other software components or applications.

    • Providers can be APIs, libraries, frameworks, or any other software component that offers functionality to other software.

    • Examples of providers include database management systems, c

  • Answered by AI
  • Q9. What is$watch and $ digest
  • Ans. 

    The $watch and $digest are two important concepts in AngularJS for data binding and updating the view.

    • $watch is a function in AngularJS that allows you to watch for changes in a specific variable or expression.

    • $digest is a function in AngularJS that triggers a process called the digest cycle, which updates the bindings and synchronizes the model and view.

    • The $watch function takes two parameters: the variable or express...

  • Answered by AI
  • Q10. What is ng-repeat
  • Ans. 

    ng-repeat is a directive in AngularJS used to repeat HTML elements for each item in an array.

    • ng-repeat is used to create a loop in AngularJS

    • It is commonly used to display a list of items from an array

    • The directive is placed on an HTML element and uses the 'item in array' syntax

    • It can also be used with filters and sorting

    • Example:

    • {{ item }}
  • Answered by AI
  • Q11. How to get value from ng-getValue=""
  • Ans. 

    ng-getValue is not a standard attribute in Angular. It may be a custom directive or a typo.

    • Check if ng-getValue is a custom directive or attribute in your Angular application

    • Verify if it is being used correctly in the HTML template

    • If it is a typo, correct it to the appropriate attribute or directive

  • Answered by AI
  • Q12. How do you develop CSS without using bootstrap
  • Ans. 

    Developing CSS without using bootstrap involves writing custom CSS code to style web pages.

    • Write CSS code to define styles for HTML elements

    • Use CSS selectors to target specific elements

    • Apply CSS properties to modify the appearance of elements

    • Create media queries for responsive design

    • Implement CSS animations and transitions

    • Optimize CSS code for performance

  • Answered by AI
  • Q13. What is CDN
  • Ans. 

    CDN stands for Content Delivery Network. It is a distributed network of servers that deliver web content to users based on their geographic location.

    • CDN improves website performance by reducing latency and increasing page load speed.

    • CDN caches content in multiple locations, allowing users to access it from a server closest to them.

    • CDN can handle high traffic loads and distribute it across multiple servers.

    • Popular CDN p...

  • Answered by AI
  • Q14. How do you display different color in atable using css for odd even rows
  • Ans. 

    To display different colors in a table using CSS for odd and even rows, you can use the :nth-child() selector.

    • Use the :nth-child(odd) selector to target odd rows and apply a specific color using the background-color property.

    • Use the :nth-child(even) selector to target even rows and apply a different color using the background-color property.

    • For example, you can use CSS code like this: tr:nth-child(odd) { background-c...

  • Answered by AI
  • Q15. How do you develop CSS for different devices
  • Ans. 

    To develop CSS for different devices, use media queries, responsive design principles, and testing on various devices.

    • Use media queries to apply different CSS styles based on the device's screen size

    • Follow responsive design principles to ensure the layout adapts to different devices

    • Test the CSS on various devices to ensure compatibility and responsiveness

  • Answered by AI
  • Q16. What is $ rootscope
  • Ans. 

    The $rootscope is a service in AngularJS that provides a global scope for sharing data between controllers.

    • It is a part of the AngularJS framework.

    • It is used to share data between controllers.

    • It is a singleton object accessible throughout the application.

    • It can be used to broadcast and listen to events.

  • Answered by AI
  • Q17. What is jquery
  • Ans. 

    jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a JavaScript library.

    • It simplifies HTML document traversal and manipulation.

    • It provides easy event handling and animation.

    • jQuery is fast, small, and feature-rich.

  • Answered by AI

Interview Preparation Tips

Skills: angular JS, Java Programming, css, Javascript

Skills evaluated in this interview

I applied via Job Portal and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good

Interview Questionnaire 

3 Questions

  • Q1. What are different annotations you used in sprig framework
  • Ans. 

    Annotations used in Spring framework

    • 1. @Autowired - for automatic dependency injection

    • 2. @Controller - for defining a controller class

    • 3. @RequestMapping - for mapping HTTP requests to controller methods

    • 4. @Service - for defining a service class

    • 5. @Repository - for defining a repository class

    • 6. @Component - for defining a generic Spring-managed component

    • 7. @Value - for injecting values from properties files or environme...

  • Answered by AI
  • Q2. How to consume a restful web service
  • Ans. 

    To consume a RESTful web service, use HTTP methods like GET, POST, PUT, DELETE to interact with the API endpoints.

    • Identify the API endpoint and its HTTP method

    • Send a request to the endpoint using the appropriate HTTP method

    • Receive the response from the API

    • Parse the response and use the data as required

  • Answered by AI
  • Q3. How to get second highest salary in a company

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Linked list, file handling

Interview Preparation Tips

Interview preparation tips for other job seekers - BE prepared to introduce yourself

Interview Questionnaire 

1 Question

  • Q1. Coding on heap sort
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort works by first building a heap from the input array.

    • Then it repeatedly extracts the maximum element from the heap, and places it at the end of the sorted array.

    • The heap is then updated to exclude the extracted element, and the process is repeated until the heap is empty.

    • Heap sort has a worst-case and average time complexi...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Explain defect life cycle
  • Ans. 

    Defect life cycle is the process of identifying, reporting, prioritizing, fixing, and verifying defects in software.

    • Defect is identified by testing or user feedback

    • Defect is reported to development team

    • Defect is prioritized based on severity and impact

    • Defect is fixed by development team

    • Defect fix is verified by testing team

    • Defect is closed if verified or reopened if not fixed properly

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Eventloop,async await,promises,mocha,codecoverage tools,graphql experience,
  • Q2. Spread operator,Es6 features,wat is difference between arrow,normal function,some business process tool,value by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Every area they will ask questions ,graphql ,mocha

I applied via Company Website and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Question related technologies you have worked on and there versions..how your production cycle worked in last company and some oops related questions
  • Q2. Be confident they don't take more than 2-3 rounds.your basic must be perfect

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't take more than 2-3 rounds.be confident and basics must be perfect

I applied via Referral and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Mostly core java.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to clear concepts of core java.
Contribute & help others!
anonymous
You can choose to be anonymous

Securonix Interview FAQs

How many rounds are there in Securonix Cloud Engineer interview?
Securonix interview process usually has 4 rounds. The most common rounds in the Securonix interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Securonix Cloud Engineer interview?

Some of the top questions asked at the Securonix Cloud Engineer interview -

  1. About devops techni...read more
  2. All devops and cl...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Finastra

No Interviews

INTERVIEWS

Securonix

No Interviews

SALARIES

Publicis Sapient

SALARIES

Wipro

INTERVIEWS

Mindgraph

No Interviews

Tell us how to improve this page.

Securonix Cloud Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Swiggy Interview Questions
3.8
 • 438 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Zepto Interview Questions
3.5
 • 202 Interviews
Naukri Interview Questions
4.0
 • 186 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
BlackBuck Interview Questions
3.8
 • 174 Interviews
View all
Securonix Cloud Engineer Salary
based on 10 salaries
₹4.5 L/yr - ₹12 L/yr
5% less than the average Cloud Engineer Salary in India
View more details

Securonix Cloud Engineer Reviews and Ratings

based on 3 reviews

3.8/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.3

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cloud Security Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Securonix with

Splunk

4.4
Compare

OpenText Technologies

3.7
Compare

IBM

4.0
Compare

RSA Security

3.8
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