Upload Button Icon Add office photos
Engaged Employer

i

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

Statusneo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Statusneo DevOps and Cloud Architect Interview Questions, Process, and Tips

Updated 28 Feb 2024

Statusneo DevOps and Cloud Architect Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Linux :- How to check which process is taking most memory What is the difference between 755 and 777 ? What is Agile and scrum What is DORA and SBOM GIT Merge versus Rebase Revert versus reset Do...
  • Ans. 

    To check which process is taking most memory in Linux, use the 'top' command. 755 and 777 are file permission codes. Agile and Scrum are project management methodologies. DORA and SBOM are related to DevOps practices. Git commands include merge, rebase, revert, and reset. Docker commands include run and CMD.

    • To check which process is taking most memory in Linux, use the 'top' command.

    • 755 and 777 are file permission code...

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

    DORA stands for DevOps Research and Assessment, a research organization focused on improving software delivery performance.

    • DORA conducts research on DevOps practices and their impact on software delivery performance.

    • They provide assessment tools and benchmarks for organizations to measure their DevOps maturity.

    • DORA's research has led to the development of the Accelerate State of DevOps report, which highlights best pra

  • Answered by AI
  • Q3. What is Agile and Scrum
  • Ans. 

    Agile is a methodology that promotes iterative development and collaboration, while Scrum is a specific framework within Agile.

    • Agile is a software development methodology that focuses on delivering value to customers through iterative development, continuous feedback, and collaboration.

    • Scrum is a specific framework within Agile that defines roles, events, and artifacts to help teams work together effectively.

    • Agile emph...

  • Answered by AI
  • Q4. What is SRE DEVOPS AND PLATFORM ENGINEERING
  • Ans. 

    SRE DevOps and Platform Engineering involves combining Site Reliability Engineering principles with DevOps practices to build and maintain scalable and reliable platforms.

    • Combines Site Reliability Engineering (SRE) principles with DevOps practices

    • Focuses on building and maintaining scalable and reliable platforms

    • Involves automation, monitoring, and continuous improvement

    • Emphasizes collaboration between development and ...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Three DSA questions one on likedlist one on BST and one on maps

Round 2 - Technical 

(2 Questions)

  • Q1. Cpp pointers explain smart pointers
  • Ans. 

    Smart pointers in C++ provide automatic memory management and help prevent memory leaks.

    • Smart pointers are objects that manage the memory of a pointer automatically.

    • They ensure that memory is deallocated when it is no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

  • Answered by AI
  • Q2. Cpp question based on OOPs concepts
Round 3 - Coding Test 

DSA questions on graph and lots of puzzles

Interview Preparation Tips

Topics to prepare for Ansys Software Private Limited Senior Engineer interview:
  • C++
  • DSA
  • OOPS
  • Puzzles
Interview preparation tips for other job seekers - Overall good experience, but the HR hasn't replied yet.

Skills evaluated in this interview

I appeared for an interview in Apr 2022.

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 - One-on-one 

(2 Questions)

  • Q1. Related to fpga qutioms
  • Q2. Ask About protocols and implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while we attend interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Questions asked related to topics that we mentioned in resume

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java Basics,Cloud Basics,simple level codes,API related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basics clear, OOPS DS concepts,REST API Concepts will help

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Interviewer asked me 20 technical questions and five programs with optimisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be elaborate, clear and try to recall from your experience

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing - 10AM-11:30AM
Online proctored test

  • Q1. 

    Binary Tree Right View Problem Statement

    Given a binary tree of integers, your task is to print the right view of it. The right view represents a set of nodes visible when the tree is viewed from the righ...

  • Ans. 

    The task is to print the right view of a binary tree, representing nodes visible from the right side in top-to-bottom order.

    • Traverse the tree level by level and keep track of the rightmost node at each level

    • Print the rightmost node of each level to get the right view of the tree

    • Use a queue for level order traversal and a map to store the rightmost nodes

  • Answered by AI
  • Q2. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing : 4PM-5PM
Environment - Online

There was a panel of 3 interviewers

  • Q1. How can you find the size of an array in C or C++ without using sizeof or any standard function?
  • Ans. 

    You can find the size of an array in C or C++ by dividing the total size of the array by the size of one element.

    • Calculate the total size of the array by multiplying the number of elements by the size of each element.

    • Divide the total size by the size of one element to get the size of the array.

    • For example, if you have an array of strings arr[] = {'hello', 'world', 'example'}, you can find the size by dividing the total

  • Answered by AI
  • Q2. Explain how indexing in a database works using B+ trees.
  • Ans. 

    B+ trees are used for indexing in databases to efficiently search and retrieve data.

    • B+ trees are balanced trees where each node can have multiple keys and child pointers.

    • Data is stored in leaf nodes, while non-leaf nodes are used for navigation.

    • B+ trees are commonly used in databases because of their ability to efficiently search and retrieve data.

    • Example: In a database table with an index on a specific column, B+ tree...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 mintues
Round difficulty - Easy

Timing - 11AM-12:15PM
Environment - online video call

Again there was a panel of 2 senior engineers

  • Q1. 

    Maximum Path Sum Problem Statement

    You are given an n-ary tree consisting of 'N' nodes. Your task is to determine the maximum sum of the path from the root to any leaf node.

    Example:

    Input:
    For the giv...
  • Ans. 

    Find the maximum sum of the path from the root to any leaf node in an n-ary tree.

    • Traverse the tree from root to leaf nodes while keeping track of the sum of each path.

    • At each node, calculate the sum of the path from the root to that node and update the maximum sum found so far.

    • Consider using depth-first search (DFS) or breadth-first search (BFS) for tree traversal.

    • Handle cases where nodes have negative values or where

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - 1 in NoidaEligibility criteria7.5 CGPAANSYS, Inc. interview preparation:Topics to prepare for the interview - System Design, core C++, Algorithms, Data Structures, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Brush Up on Computer Science Fundamentals
Tip 2 : Prepare a Brief Self-Introduction

Application resume tips for other job seekers

Tip 1 : Do not put fake resume
Tip 2 : Writing internship project helps.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I have been questioned on AEM Concepts, Sling Models, schedulers, servlets, OSGI services
  • Q2. Be prepared for most of the concepts in AEM

Interview Preparation Tips

Interview preparation tips for other job seekers - The overall interview experience was very good.

I applied via Apna Jobs and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Easy to score in coding test. 3 questions of easy medium and hard level

Round 2 - Aptitude Test 

English and aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview on college project and basic ds and algo questions. Asked binary search and some questions on C++
  • Ans. I explained in detail about my college project. Starting questions were in that.
  • Answered Anonymously
Round 4 - HR 

(1 Question)

  • Q1. Nothing much just a very informal conversation about college.
  • Ans. A very casual conversation and nothing technical.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Credera Associate Software Engineer interview:
  • Ds and algo
  • C++
  • Java
Interview preparation tips for other job seekers - Just be confident and prepare your college project thoroughly.

Interview Questionnaire 

6 Questions

  • Q1. Tell something about yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.

    • I have a Bachelor's degree in Computer Science.

    • I am proficient in Spring Framework and AngularJS.

    • I have worked on projects involving RESTful APIs and microservices architecture.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q2. Why do you want to join this company?
  • Ans. 

    I am impressed with the company's innovative approach and commitment to excellence.

    • I have researched the company and its products extensively and am excited about the potential for growth and development.

    • I am impressed with the company's reputation for innovation and cutting-edge technology.

    • I believe that the company's commitment to excellence aligns with my own values and goals.

    • I am excited about the opportunity to wo...

  • Answered by AI
  • Q3. What are your future plans?
  • Ans. 

    My future plans include continuous learning, honing my skills, and contributing to the growth of the company.

    • I plan to attend relevant conferences and workshops to stay updated with the latest technologies.

    • I want to work on challenging projects that will help me improve my skills.

    • I aim to become a valuable asset to the company by contributing to its growth and success.

    • I plan to mentor and guide junior developers to hel

  • Answered by AI
  • Q4. Mathematics
  • Q5. Programming
  • Q6. Logic

Interview Preparation Tips

Round: Test
Experience: It was a bit lengthy and I wasn't able to solve all the questions, but the rest was accurately completed by me.
Tips: One needs to know basic programming and logic. The rest is doable. Pay attention to time and the accuracy of your answers.
Duration: 120 minutes
Total Questions: 50

Round: Group Discussion
Experience: A few points were given to us and we had to proceed from there. I gave new ideas as well as new points of view on the already presented ideas. I also encouraged others to participate.
Tips: Don't be too quiet/passive or too loud/active. Let others also talk and don't talk about the same points again & again.
Duration: 15 minutes

Round: HR Interview
Experience: It was a good interview. I felt at ease and myself while talking about me. The CTO of the company was conducting it.
Tips: See the direction in which the interview is going and frame your answers accordingly. Tell them what they want to hear, but don't lie.

Round: Technical Interview
Experience: It was a telephonic interview, and the HR team present there was guiding me through it. The questions were easy.
Tips: Be confident while answering the questions. Don't think too much on it, and answer appropriately. Be clear and concise.

General Tips: As I said earlier as well, be yourself and be confident.
Skill Tips: Be adequately prepared on what you prepare for; know the ins and outs of the company you are sitting in for; be confident and clear on what you speak.
Skills: Programming, Logic Building, Common Aptitude, Personality
College Name: IIT Bombay
Motivation: I wanted to do programming which was also in the engineering domain. Hence Altair came as the perfect fit for me.
Funny Moments: I was not able to listen properly to the telephonic interview, but the CTO was impressed with me in the HR interview so he happily guided me through. I also found out that one of the seniors interviewing me was from the same place as that of mine, so we had a small discussion there as well. I felt at ease hence.

Statusneo Interview FAQs

How many rounds are there in Statusneo DevOps and Cloud Architect interview?
Statusneo interview process usually has 1 rounds. The most common rounds in the Statusneo interview process are Technical.
What are the top questions asked in Statusneo DevOps and Cloud Architect interview?

Some of the top questions asked at the Statusneo DevOps and Cloud Architect interview -

  1. Linux :- How to check which process is taking most memory What is the differen...read more
  2. What is SRE DEVOPS AND PLATFORM ENGINEER...read more
  3. What is Agile and Sc...read more

Tell us how to improve this page.

Statusneo DevOps and Cloud Architect Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 65 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Stefanini Interview Questions
2.9
 • 35 Interviews
GlobalStep Interview Questions
2.7
 • 28 Interviews
SpanIdea Interview Questions
3.7
 • 24 Interviews
View all
Senior Consultant
126 salaries
unlock blur

₹13 L/yr - ₹38 L/yr

Consultant
63 salaries
unlock blur

₹10 L/yr - ₹27 L/yr

Digital Consultant
49 salaries
unlock blur

₹8 L/yr - ₹24.6 L/yr

Principal Consultant
43 salaries
unlock blur

₹14.8 L/yr - ₹48 L/yr

Software Developer
39 salaries
unlock blur

₹5 L/yr - ₹19 L/yr

Explore more salaries
Compare Statusneo with

Apisero

4.3
Compare

Actalent Services

3.5
Compare

Cyber Infrastructure

3.5
Compare

TestingXperts

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