Upload Button Icon Add office photos

Filter interviews by

Canarys Automations Associate Software Engineer Interview Questions and Answers

Updated 27 Nov 2023

Canarys Automations Associate Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Its completely project scenario based questions. mostly they asked about Rest API
  • Q2. Rest Api based interview questions

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Please check aptitude question in google

Round 2 - Coding Test 

Related to Javascript

Round 3 - HR 

(1 Question)

  • Q1. Expectations and why do you want to join?
Round 4 - Group Discussion 

Discussion related to company

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - Aptitude Test 

Moderate to High Level

Round 3 - Technical 

(1 Question)

  • Q1. Moderate to High Level
Round 4 - HR 

(1 Question)

  • Q1. Normal HR discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

WRITE CODE FOR MERGE SORT and explain your code

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked conceptual questions abouts OOPS concept

I applied via campus placement at Siddaganga Institute of Technology (SIT) and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic SQL Queries, some very basic Java questions, the interviewer herself didn't know much about coding in general.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yodlee is a big company will several departments, every department has its own requirements.

I was inducted into the IAE department as an ASE through pool-campus placement.

The issue at Yodlee is that it's IAE department that they actively hire for, is the worst department as far as technical growth and knowledge are concerned. There is no learning. Hence usually the interviewers (mostly the directors, managers, and leads in IAE) who have been in the organization for a very large part of their career, are also very weak as far as their technical skills are concerned. Their political and toxic managerial skills skyrocket though. They stay there for too long and become virtually outdated in terms of their technical skills.

Therefore you can rest be assured that the interview quality will be well below average as far as IAE is concerned. I am not sure about other departments, but I would not assume otherwise. I would suggest, if you have to absolutely join IAE in Yodlee, just an average preparation would be more than enough. If you have other opportunities, I would suggest prioritizing them over Yodlee.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at DMI College of Engineering, Chennai and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Very basic aptitude concepts asked 40 questions 1 hr time

Round 2 - Coding Test 

2 problems to be solved. Myself solved 1 problem but my friends solved 1.5 problem and taken grade is(partially correct) using Google and AI. At last there selected students who are all solved 1 problem also

Round 3 - Technical 

(6 Questions)

  • Q1. Detailed project explanation
  • Q2. Internship experience
  • Q3. OOPS concepts and Resume screening
  • Q4. SQL joins and basics
  • Q5. Favourite programming language asked and said to solve a 2 simple coding problems
  • Q6. The person who solved 1.5 questions out of 2 questions using Google and AI where caught in technical round
Round 4 - HR 

(1 Question)

  • Q1. Beware in HR round Answering to HR questions is seriously hard . Prepare well and be ready to answer question. HR asking questions is about your point of view.

Interview Preparation Tips

Topics to prepare for Infiniti Software Solutions Software Trainee interview:
  • Oops
  • SQL joins
  • Coding
  • Project
Interview preparation tips for other job seekers - Be genuine in coding round. Student who don't use ai only selected. Prepare well for technical specially OOPS concepts, SQL joins and coding
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Consist 3 coding questions medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about java concept
  • Q2. Sql query basics
Round 3 - Technical 

(2 Questions)

  • Q1. Asked medium to advance level oops java concept
  • Q2. Deep discussion over project
Round 4 - Technical 

(2 Questions)

  • Q1. Hard level linked list questions
  • Q2. Advanced level sql query

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql and oop concepts well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. TCP/IP related questions, what happens when you search a webpage?
  • Q2. Past projects discussions
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions on how would you tackle a particular scenario
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude questions with 2-3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Input-wwwrrrrttttuu Output - w3r4t4u2
  • Q2. Interpreter vs compiler
  • Ans. 

    Interpreter executes code line by line, compiler translates code into machine code before execution.

    • Interpreter translates code into machine code line by line during runtime

    • Compiler translates code into machine code before execution

    • Interpreted languages include Python, JavaScript

    • Compiled languages include C, C++

  • Answered by AI

Canarys Automations Interview FAQs

How many rounds are there in Canarys Automations Associate Software Engineer interview?
Canarys Automations interview process usually has 2 rounds. The most common rounds in the Canarys Automations interview process are Resume Shortlist and Technical.
What are the top questions asked in Canarys Automations Associate Software Engineer interview?

Some of the top questions asked at the Canarys Automations Associate Software Engineer interview -

  1. its completely project scenario based questions. mostly they asked about Rest ...read more
  2. Rest Api based interview questi...read more

Tell us how to improve this page.

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
15 salaries
unlock blur

₹4 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