Upload Button Icon Add office photos

Filter interviews by

Canarys Automations Devops Consultant Interview Questions and Answers for Freshers

Updated 26 May 2022

Canarys Automations Devops Consultant Interview Experiences for Freshers

1 interview found

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. Regarding devops tools
Round 3 - HR 

(1 Question)

  • Q1. Regarding package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be passionate about the software that you are looking for , do well

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Online apitude containing 10 question without camera

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was in online mode. There were 20 mcq questions and 5 coding questions ranging from easy to hard

Round 2 - Group Discussion 

After the Aptitude test, the gd was kept in offline mode ( at office ), the topic was "the pros and cons of online classes

Round 3 - Technical 

(1 Question)

  • Q1. In the 1st technical round, basic questions regarding the languages which i have mentioned in resume was asked. I mentioned python and C in my resume and a coding problem was asked to solve and to further ...
Round 4 - Technical 

(1 Question)

  • Q1. In the second technical OOPS concepts and DSA questions were asked

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Developer interview:
  • DSA
  • Algorithms
  • Coding
  • resume
Interview preparation tips for other job seekers - If you pass the last technical round then you will be selected in HR round for the same.

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Hard

This round was very difficult. I never do these much difficulty level of coding questions. But i give my best, and just do every questions by using step by step process.

  • Q1. Hourglass Pattern

    You are given an integer N and you have to print the following pattern.

    For N=5:

    For N=6:

    Alt Text

    Input Format:
    The first and only line of input contains an integer, that denotes the va...

  • Q2. BFS in Graph

    You are given an undirected and disconnected graph G(V, E) having V vertices numbered from 0 to V-1 and E edges. Your task is to print its BFS traversal starting from the 0th vertex.

    BFS or ...

  • Ans. Using queue

    Let us consider a function BFS that accepts a list of edges, EDGES, and the number of vertices VERTEX as a parameter and do: 

    1. Create ADJACENCYMATRIX from EDGES.
    2. Define a boolean array VISITED to store nodes that are already visited.
    3. Iterate over VISITED[i] for each 0<= i < VISITED.LENGTH, and check:
      1. If VISITED[i] is FALSE, call BFSHELPER function for ADJACENCYMATRIX, i and VISITED.

    Now, the function BF...

  • Answered by CodingNinjas
  • Q3. Sort a stack

    Given a stack, sort the elements inside that stack in ascending order using only push and pop operation. You can use one additional stack only.

    For eg.

    Input Stack :  5 (top)
                ...
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round is also coding round in this round we have a small video call interaction too, in which hr ask few questions to only those whose coding question is correct.

  • Q1. Next smaller Palindrome

    You are given a number 'N' in the form of a string 'S', which is a palindrome. You need to find the greatest number strictly less than 'N' which is also a pa...

  • Ans. Brute Force
    • Given the fact that the input number is a palindrome itself makes this problem very trivial.
    • Let us assume that the given string str is a palindrome, so we know that ‘S’ comprises of two halves  ‘S1’ and ‘S2’ i.e ‘S’ = ‘S1' + ‘S2', where ‘S1' and ‘S2’ are two strings, and ‘S2’ is the reverse of ‘S1’(in case of odd length palindromes ‘S2’ won’t have the last character of ‘S1’). So a change in any of the h...
  • Answered by CodingNinjas
  • Q2. Rotting Oranges

    You have been given a grid containing some oranges. Each cell of this grid has one of the three integers values:

  • Value 0 - representing an empty cell.
  • Value 1 - representing a fresh...
  • Ans. Naïve Solution

    The idea is very simple and naive. We will process the rotten oranges second by second. Each second, we rot all the fresh oranges that are adjacent to the already rotten oranges. The time by which there are no rotten oranges left to process will be our minimum time.

     

    In the first traversal of the grid, we will process all the cells with value 2 (rotten oranges). We will also mark their adjacent cells ...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 cgpaZIGRAM interview preparation:Topics to prepare for the interview - OOPS , Data Structures, Dynamic Programming, Algorithms from variuos coding platforms , Database Management System, Operating System, Web developmentTime required to prepare for the interview - 2 monthInterview preparation tips for other job seekers

Tip 1 : Relax and don't stress. Practice
Tip 2 : Build Resume according to Job Description , but don't lie.
Tip 3 : Have good projects and knowledge regarding important subjects related to interviews

Application resume tips for other job seekers

Tip 1 : Include only genuine information, never lie in resume , it will impact to bad impression. 
Tip 2 : Skills relevant to Job Description
Tip 3 : Resume should not be more than 2 pages 
Tip 4 : Have some projects and internship on your resume because it will give good impression

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What do you want to do in future?
  • Ans. 

    I want to become a technical lead and work on innovative projects.

    • I plan to gain more experience in software development and project management.

    • I want to learn new technologies and keep up with industry trends.

    • I hope to mentor and guide junior developers to help them grow in their careers.

    • I aspire to work on projects that have a positive impact on society.

  • Answered by AI
  • Q2. Where do you see yourself in the next 10 years?
  • Ans. 

    In 10 years, I see myself as a senior software developer leading a team of developers to create innovative solutions.

    • Leading a team of developers to create innovative solutions

    • Continuing to learn and stay up-to-date with new technologies

    • Mentoring junior developers

    • Contributing to open-source projects

    • Attending and speaking at tech conferences

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Moderate stuff was there, not very difficult to crack.
Tips: Just try to stay cool and solve the questions.
Duration: 90 min minutes
Total Questions: 50-60

Round: Test
Experience: There were 3 coding questions.
One of them was from linked-list (a simple one)
And another was from the tree (to be solved by recursion and this one was also easy)
And the last question was from Dynamic Programming (moderate difficulty)
Tips: Solve the two easy questions with the best possible algorithm that you can.
And if you are able to solve the last one then its ok otherwise don't leave it, atleast write some lines of code.
And I would like to suggest geeksforgeeks for the preparation of this coding round.
Duration: 90 min minutes
Total Questions: 3

Round: Test
Experience: I was given 2 questions with their codes (one of them was of 100 lines and another code was about 250 lines).
Both the codes were having some errors and we have to rectify them.
First of all I was asked to understand the given codes and draw a flow chart describing the algorithm of the code.
And then I was asked to find out the errors in the given code.
Tips: Just stick to the code.
This round was not that much easy as the previous ones.
You have to stick to the code till the last.
Duration: 3 hours minutes
Total Questions: 2

Round: Test
Experience: I was given some APIs of a server and I have to write a client program that uses these APIs to design a game for knight-moves in a 8X8 chess board.
Tips: The main issue was there in synchronising the client requests to the server.
You must have the basic knowledge of server-client programs.
Duration: 3 hours minutes
Total Questions: 1

Round: Technical Interview
Experience: I don't remember the questions but this round was not so difficult as the last two rounds.
There were simple technical questions related to what you have done in your internship and basic OS,DBMS.
Tips: Stay calm and look relaxed.

Round: HR Interview
Experience: Most of the questions were about my family background.
Tips: Just keep calm and smiling.
Don't try to over-react and the most important thing is be yourself.

General Tips: 1: Be Confident.
2: Keep Smiling.
3: Do not be Panic.
4: Remember they are here to hire you but not reject you.
5: Do not loose hope.
6: Believe at yourself.
7: Start preparing early.
8: Do demo interviews with your friend.
Skill Tips: Follow geeksforgeeks and do practise the server-client programs.
Skills: Coding, Client-Server Programs, Aptitude , OS basics, OOPs, DBMS, Reasoning skills
College Name: NIT DURGAPUR
Motivation: Every body joins a comapny for making a software or earning money. But I was always motivated to MAKE MONEY. I have taken this job because they have very extensive work in Share Market and they have lots of MBA from IIM's, Lots of CAs, CS. Thats why i have choosen Edelweiss. I have rejected epic System USA for this profile.

Interview Questionnaire 

3 Questions

  • Q1. Based on API coding Round
  • Q2. Designing + project
  • Q3. HR

Interview Preparation Tips

Round: Test
Experience: 30 MCQ questions testing basic logical reasoning, quantitative aptitude, analytical skills.
2 coding questions --I skipped 1st that was a mistake as it was the easiest. Basic array adhoc question.
2nd-greedy algorithm based find number of platforms for a train schedule.
1 API coding on trie data structure. Functions were all there. Problem--Given a word with a letter missing...find and print possible words from the dictionary. for example--
Input- dristisofts 5
Output- drishtisofts
drisetisofts
1 debugging question-toughest of them all for me...2d-matrix find the rectangle with largest sum.
Tips: Basic Level of Questions for me. I never explicitly prepared for those. Doable.
Try both 1st and 2nd...they will be easy...C and java are only possible languages given so can't use stl.
API will be easy only lengthy...don't panic...
If you have time, you will try 4th.

Duration: 180 minutes
Total Questions: 34

Round: Test
Experience: Completely networking based problem. based on TCP protocol. packets are being dropped and changed find a way to stop it. I was able to pass all test cases. (they were having some internal problems with there test cases).
Tips: Exciting round. Use re-transmission and sequence id and hash coding. Focus on everything. Interviews will be based on these.
Duration: 60 minutes
Total Questions: 1

Round: Test
Experience: N=4. find errors and generalise for N.
Tips: Easy-peasy.
Duration: 60 minutes
Total Questions: 1

Round: Technical Interview
Experience: Lovely experience. Duration -2hours. Interviewer was a chill guy. Interview started with some light moments and we discussed about my experience with the company I did my internship with. Then there was questioning about what I did in my API coding round. I was asked to explain point by point about how I understood the problem and how I solved it. Then he started grilling me on questions based on it. One by one questions were put in some way that I had to revisit everything what I learnt in my 2nd year about transmission protocol. Everything, starting with what was the hash code used to how the window size is decided and how to reduce traffic by sending cumulative ack.
Tips: Better prepare networking before coming. Everything, every exception.

Round: Technical Interview
Experience: I was asked to tell any two of my projects. And this is where I think I got an edge over others. My resume was filled with many projects and we discussed two of my most recent projects. I had learnt about Oauth protocol and RESTful APIs so we discussed about it. Then there was this problem about a company visiting for campus recruiting wanting to conduct a test on Hackerearth + what if lights went off and students want to continue where they had left --the problem was to design a databse based on these conditions and then some questions were asked on the database I had made. Finally there was an interview scheduling problem.50 students. 3 rounds(1->P1,P2 2->P2,P3 3->P4). design an algorithm to conduct the interviews taking minimum time to process all 50 students.
Tips: Prepare your projects and DBMS as well. Be confident, build approaches to tackle problems and try finding loopholes in it and then work on those. They will be focussing more on how you will tackle a general problem and not the solution.

Round: HR Interview
Experience: Introductions with family background. Psychometric test. and then I was told to ask about the company. Interviewer was very cool.
Tips: Easy - peasy.

General Tips: Do away with any nervousness. The interviewers will be extremely friendly. Just do your best. If you know it, it isn't that hard. Hints would be given. They just test your approach and knowledge of the subject.
Skill Tips: TCP concepts and socket programming. Projects on that would be lovely.
Skills: Networking, DBMS
College Name: NIT Jalandhar
Funny Moments: The interview was held in guest rooms lying down on bed. I was even asked to take rest and sleep for an hour before interviews alongside their bed.

Canarys Automations Interview FAQs

How many rounds are there in Canarys Automations Devops Consultant interview for freshers?
Canarys Automations interview process for freshers usually has 3 rounds. The most common rounds in the Canarys Automations interview process for freshers are Resume Shortlist, Technical and HR.
What are the top questions asked in Canarys Automations Devops Consultant interview for freshers?

Some of the top questions asked at the Canarys Automations Devops Consultant interview for freshers -

  1. Regarding devops to...read more
  2. Regarding package discuss...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 787 Interviews
View all
Canarys Automations Devops Consultant Salary
based on 14 salaries
₹1.2 L/yr - ₹7 L/yr
72% less than the average Devops Consultant Salary in India
View more details
Software Engineer
54 salaries
unlock blur

₹2.4 L/yr - ₹9.2 L/yr

Senior Software Engineer
41 salaries
unlock blur

₹6.2 L/yr - ₹16 L/yr

Technical Consultant
22 salaries
unlock blur

₹4.5 L/yr - ₹12.5 L/yr

Devops Engineer
16 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Devops Consultant
14 salaries
unlock blur

₹1.2 L/yr - ₹7 L/yr

Explore more salaries
Compare Canarys Automations with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview