Premium Employer

i

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

Seclore Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Seclore Cloud Operations Engineer Interview Questions, Process, and Tips

Updated 8 Nov 2024

Seclore Cloud Operations Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. How many EBS can be attached to single EC2
  • Ans. 

    The maximum number of EBS volumes that can be attached to a single EC2 instance is 40.

    • Maximum of 40 EBS volumes can be attached to a single EC2 instance

    • Each EBS volume can be up to 16 TiB in size

    • EBS volumes can be attached and detached while the instance is running

  • Answered by AI
  • Q2. Prerequisites for S3 Cross Region Replication
  • Ans. 

    Prerequisites for S3 Cross Region Replication include enabling versioning, configuring IAM roles, and ensuring proper bucket policies.

    • Enable versioning on both source and destination buckets

    • Configure IAM roles with proper permissions for replication

    • Ensure proper bucket policies are in place for cross region replication

  • Answered by AI
  • Q3. Docker Restart will change which attributes of comtainer
  • Ans. 

    Docker Restart changes the container's attributes like IP address, hostname, and uptime.

    • IP address of the container will change after restart

    • Hostname of the container may change

    • Uptime of the container will be reset

    • Any changes made to the container's filesystem will be lost

  • Answered by AI
  • Q4. S3 vs EFS scenario based use cases.
  • Ans. 

    S3 is ideal for storing static files like images and videos, while EFS is better for shared file storage among multiple EC2 instances.

    • S3 is object storage, suitable for storing large amounts of unstructured data like images, videos, backups, and logs.

    • EFS is a file storage service that can be mounted on multiple EC2 instances, making it ideal for shared file systems and databases.

    • Use S3 for static website hosting, data ...

  • Answered by AI
  • Q5. Linux Commands and Chmod Calculation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Linux Based Questions , S3, EFS and EBS.

Skills evaluated in this interview

Cloud Operations Engineer Jobs at Seclore

View all

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Basic js concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is difference between flip-flop and Latches?
  • Ans. 

    Flip-flops and latches are sequential logic circuits used to store and manipulate binary data.

    • Flip-flops are edge-triggered devices, while latches are level-sensitive devices.

    • Flip-flops have separate clock and data inputs, while latches have a single input for both clock and data.

    • Flip-flops are used in synchronous circuits, while latches are used in asynchronous circuits.

    • Flip-flops are more complex and require more cir...

  • Answered by AI
  • Q2. Where is the money needed to recruited you for embedur system?.The Hr will ask.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply or just putting resume to this company.As the hr will make money with this job. They don't deseve Talented candidates.They want referrals and salary cuts for hr to hire you.Instead of hiring candidates for software position, They should hire best Hr first (definitely in chennai)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Written test was in python where we have output based questions

Round 2 - Technical 

(1 Question)

  • Q1. Move zeros to the end of the array
  • Ans. 

    Move all zeros in an array of strings to the end.

    • Iterate through the array and move all zeros to the end by swapping with non-zero elements.

    • Maintain a pointer to keep track of the position to swap with zeros.

    • Example: Input: ['a', 'b', 'c', '0', 'd', '0'], Output: ['a', 'b', 'c', 'd', '0', '0']

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA covering graph and linked list hard problems

Round 2 - Technical 

(2 Questions)

  • Q1. Frontend focussed
  • Q2. Javascript and react
Round 3 - HR 

(2 Questions)

  • Q1. Managerial and behavioral questions
  • Q2. System design was also asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. Experience with Scala
  • Ans. 

    I have 3 years of experience working with Scala in developing backend applications.

    • Developed RESTful APIs using Scala Play framework

    • Utilized Akka for building highly concurrent and distributed systems

    • Worked on data processing tasks using Apache Spark with Scala

  • Answered by AI
  • Q2. Experience with Java
  • Ans. 

    Extensive experience with Java programming language

    • Proficient in Java programming for over 5 years

    • Developed multiple applications using Java, including web applications and desktop applications

    • Strong understanding of object-oriented programming concepts in Java

    • Experience with Java frameworks such as Spring and Hibernate

    • Familiar with Java development tools like Eclipse and IntelliJ IDEA

  • Answered by AI
  • Q3. Experience with airflow
  • Ans. 

    Airflow is an open-source platform to programmatically author, schedule, and monitor workflows.

    • Airflow is used for orchestrating complex workflows in data pipelines.

    • It allows users to define workflows as Directed Acyclic Graphs (DAGs).

    • Airflow provides a web-based UI for monitoring and managing workflows.

    • It supports various integrations with different systems and tools.

    • Example: Using Airflow to schedule ETL jobs for dat

  • Answered by AI
  • Q4. Big data project
  • Q5. System design discussion

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Duration: 1hr
Topics: Array, LinkedList,Stack

Round 2 - Technical 

(2 Questions)

  • Q1. Write code for Insertion in a binary tree.
  • Ans. 

    Code for insertion in a binary tree

    • Create a new node with the given data

    • If the tree is empty, make the new node as root

    • Else, traverse the tree to find the appropriate position to insert the new node

    • If the data is less than the current node, go to the left subtree

    • If the data is greater than the current node, go to the right subtree

    • Repeat until an appropriate position is found

    • Set the new node as the child of the appropri

  • Answered by AI
  • Q2. Write code for quick sort
  • Ans. 

    Quick sort is a divide-and-conquer algorithm that sorts an array by partitioning it into two sub-arrays.

    • Choose a pivot element from the array

    • Partition the array around the pivot element

    • Recursively apply quick sort to the left and right sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Various DBMS related question(JOINS, SORT, LIMIT)
Round 4 - HR 

(2 Questions)

  • Q1. Tell us about yourself.
  • Q2. Why do want to join the company

Interview Preparation Tips

Topics to prepare for Hughes Systique Corporation Software Engineer interview:
  • C++
  • Data Structures
  • SQL
Interview preparation tips for other job seekers - Just be confident and explain your thought process and go with the flow

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 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 

(1 Question)

  • Q1. Based on your previous experience
Round 3 - Coding Test 

Simple coding questions in your preferred language

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 Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic javascript and angular
Round 2 - Technical 

(1 Question)

  • Q1. Js and angular questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview before Oct 2023.

Round 1 - Coding Test 

It was easy round with 2 questions from hacker rank

Seclore Interview FAQs

How many rounds are there in Seclore Cloud Operations Engineer interview?
Seclore interview process usually has 1 rounds. The most common rounds in the Seclore interview process are Technical.
How to prepare for Seclore Cloud Operations Engineer 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 Seclore. The most common topics and skills that interviewers at Seclore expect are Docker, AWS, Ansible, Apache and Batch Script.
What are the top questions asked in Seclore Cloud Operations Engineer interview?

Some of the top questions asked at the Seclore Cloud Operations Engineer interview -

  1. Docker Restart will change which attributes of comtai...read more
  2. How many EBS can be attached to single ...read more
  3. Prerequisites for S3 Cross Region Replicat...read more

Tell us how to improve this page.

Seclore Cloud Operations Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Seclore Securing Information Wherever It Goes.

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
3.9
 • 208 Interviews
Zeta Interview Questions
3.4
 • 71 Interviews
embedUR Systems Interview Questions
3.2
 • 48 Interviews
Subex Interview Questions
3.5
 • 35 Interviews
CoinDCX Interview Questions
3.7
 • 29 Interviews
MoEngage Interview Questions
4.0
 • 26 Interviews
Demandbase Interview Questions
3.9
 • 17 Interviews
View all
Seclore Cloud Operations Engineer Salary
based on 4 salaries
₹8 L/yr - ₹11.5 L/yr
7% more than the average Cloud Operations Engineer Salary in India
View more details

Seclore Cloud Operations Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior CloudOps Engineer

Mumbai

4-7 Yrs

Not Disclosed

Explore more jobs
Product Engineer
48 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Senior Product Engineer
16 salaries
unlock blur

₹14.5 L/yr - ₹30 L/yr

Application Support Engineer
12 salaries
unlock blur

₹6 L/yr - ₹13.5 L/yr

Senior Quality Engineer
12 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Quality Engineer
11 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Seclore with

Fractal Analytics

4.0
Compare

Subex

3.5
Compare

Zeta

3.4
Compare

Hughes Systique Corporation

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