Upload Button Icon Add office photos
Engaged Employer

i

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

Hanu Software Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Hanu Software Solutions Cloud Engineer Interview Questions and Answers

Updated 5 Apr 2024

Hanu Software Solutions Cloud Engineer Interview Experiences

3 interviews found

Cloud Engineer Interview Questions & Answers

user image Jayant Gehlot

posted on 25 Sep 2022

I applied via Campus Placement and was interviewed in Aug 2022. There were 4 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 - Coding Test 

There were aptitude and coding questions related to arrays and linked list of medium level.

Round 3 - Group Discussion 

We were asked to conduct GD on the topic night owls vs early birds.

Round 4 - HR 

(2 Questions)

  • Q1. About family,relocation
  • Q2. Some questions related to. B.tech subjects

Interview Preparation Tips

Topics to prepare for Hanu Software Solutions Cloud Engineer interview:
  • Data Structures
  • Algorithms
  • Computer Networking
  • Database management system
  • Object Oriented Programming
  • Operating Systems
Interview preparation tips for other job seekers - The hr and technical interviewers were very friendly so keep your calm and answer , the interview process can be cleared easily if are an over-all good candidate.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test was there for first round

Round 2 - HR 

(1 Question)

  • Q1. Hr round was the second round
Round 3 - One-on-one 

(1 Question)

  • Q1. One on one round with manager pf the team

Interview Preparation Tips

Interview preparation tips for other job seekers - keep practicing and working hard and prepare for all rounds

Cloud Engineer Interview Questions Asked at Other Companies

Q1. Can you please elaborate the best practices of Authentication and ... read more
asked in LeadSquared
Q2. Tell me about where the AWS is use and why this service are using ... read more
asked in 66degrees
Q3. SQL query : Write a query to find the employees from employee tab ... read more
Q4. Have you ever involved in configuring Architecture for web based ... read more
Q5. What were the best monitoring tools available in Cloud providers ... read more

I applied via Campus Placement and was interviewed in Apr 2022. There were 4 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 - Coding Test 

Dsa question and mcq were asked

Round 3 - Group Discussion 

Random topic there were 12-13 friends

Round 4 - HR 

(2 Questions)

  • Q1. Normal hr questions like hobbies etc
  • Q2. Where do i see after few years

Interview Preparation Tips

Interview preparation tips for other job seekers - It works on cloud so better have some certifications

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked a question on counting continuous max occurences of 1 in a string

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep knowledge of programming is a must

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.
Round 1 - Aptitude Test 

50 Questions in 1 hour

Round 2 - Coding Test 

Pattern and basic programming questions

Round 3 - Technical 

(1 Question)

  • Q1. Basic Java, SQL, and project-related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice place to work, the staff and the colleagues were very supportive and give importance to your decisions or choices.
Round 1 - Coding Test 

Simple String or list releted questions for Arranging a string some conditions wise

Round 2 - Technical 

(1 Question)

  • Q1. Count number after decimal value What is decorator What is abstraction in python
  • Ans. 

    To count number after decimal value in Python, use string manipulation or math module.

    • Use string manipulation to count number of digits after decimal point

    • Use math module to round off the number and then subtract the original number to get the digits after decimal point

    • Example: num = 3.14159, str_num = str(num), decimal_index = str_num.index('.') + 1, digits_after_decimal = len(str_num) - decimal_index

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Maily focus on logical Questions and Make any one Language proficient then you can give answer
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Ten reasoning questions, ten quantitative questions, and fifteen technical questions involving pseudo code, for a total of thirty-five questions to be completed in thirty minutes.

Round 2 - Coding Test 

Three questions to solve test cases from LeetCode and similar platforms: one from arrays, one from strings, and one from stacks.

Round 3 - Technical 

(1 Question)

  • Q1. Many questions related to development , some reasoning questions, simple programs and most form resume
Round 4 - Technical 

(1 Question)

  • Q1. To write a program for some sorting tech etc.. basic DSA
Round 5 - HR 

(1 Question)

  • Q1. About personality development and Resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow all mentioned in resumen and do the basics
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test are just basic Array and linkedList question

Round 2 - Technical 

(3 Questions)

  • Q1. Explain 4 pillar of oops
  • Ans. 

    The 4 pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components of an object, protecting its integrity.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects of different classes to be treated as objects of a

  • Answered by AI
  • Q2. Internal working of Hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • Retrieving a value involves hashing the ...

  • Answered by AI
  • Q3. Crud operation implementation
  • Ans. 

    Implementation of Create, Read, Update, and Delete operations in a software system.

    • Use SQL queries for database operations

    • Create separate functions for each operation

    • Handle errors and exceptions properly

    • Test thoroughly to ensure functionality

    • Consider security measures to prevent unauthorized access

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why are you chaning the organisation?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a new environment to learn and develop new skills

    • Interested in working on different projects and technologies

    • Seeking better career advancement opportunities

    • Wanting to work in a more collaborative team environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins Aptitude Question

Round 2 - Coding Test 

30 mins - 3 Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Describe Rest API
  • Ans. 

    Rest API is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • Rest API stands for Representational State Transfer Application Programming Interface.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations.

    • RESTful APIs use URLs to access resources, and return data in JSON or XML format.

    • Stateless communication allows for scalability and flexibilit...

  • Answered by AI
  • Q2. What is various Response code. Diffenrence b/w 200 & 201, 400 & 403
  • Ans. 

    Response codes indicate the status of a HTTP request. 200 & 201 are success codes, while 400 & 403 are client error codes.

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: The server cannot process the request due to a client error

    • 403 - Forbidden: The server understood the request, but refuses to authorize it

  • Answered by AI

Skills evaluated in this interview

Hanu Software Solutions Interview FAQs

How many rounds are there in Hanu Software Solutions Cloud Engineer interview?
Hanu Software Solutions interview process usually has 3-4 rounds. The most common rounds in the Hanu Software Solutions interview process are Coding Test, HR and Resume Shortlist.
How to prepare for Hanu Software Solutions Cloud 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 Hanu Software Solutions. The most common topics and skills that interviewers at Hanu Software Solutions expect are Cloud, Azure, PAAS, Powershell and Cloud Computing.
What are the top questions asked in Hanu Software Solutions Cloud Engineer interview?

Some of the top questions asked at the Hanu Software Solutions Cloud Engineer interview -

  1. some questions related to. B.tech subje...read more
  2. one on one round with manager pf the t...read more
  3. hr round was the second ro...read more

Tell us how to improve this page.

Hanu Software Solutions Cloud Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Equifax Interview Questions
3.3
 • 32 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
VDart Interview Questions
4.0
 • 27 Interviews
EagleView Interview Questions
3.3
 • 20 Interviews
View all
Hanu Software Solutions Cloud Engineer Salary
based on 175 salaries
₹3.6 L/yr - ₹13.7 L/yr
At par with the average Cloud Engineer Salary in India
View more details

Hanu Software Solutions Cloud Engineer Reviews and Ratings

based on 19 reviews

2.5/5

Rating in categories

2.6

Skill development

2.6

Work-life balance

2.1

Salary

2.6

Job security

2.4

Company culture

2.1

Promotions

2.2

Work satisfaction

Explore 19 Reviews and Ratings
Cloud Engineer
175 salaries
unlock blur

₹3.6 L/yr - ₹13.7 L/yr

Senior Cloud Engineer
86 salaries
unlock blur

₹6.1 L/yr - ₹16 L/yr

Senior Process Associate
38 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

Process Associate
35 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

Quality Analyst
28 salaries
unlock blur

₹2.2 L/yr - ₹3.1 L/yr

Explore more salaries
Compare Hanu Software Solutions with

Saama Technologies

3.7
Compare

Jumio

3.7
Compare

DISYS

3.0
Compare

Data-Core Systems

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