Upload Button Icon Add office photos
Engaged Employer

i

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

Awiros Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Awiros Computer Vision Engineer Interview Questions and Answers

Updated 4 Jun 2024

Awiros Computer Vision Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Discussion on computer vision deployment technologies.
  • Q2. Discussion on machine learning models.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was mostly around the technical questions on the projects/technologies on which I had worked during previous employment and during education. The good thing was that the goal of the interviewer was to check the knowledge of technologies relevant for the position, it was not like viva.
Advice: Be honest while explaining your relevant work for JD, don't exaggerate.
Overall, it was a positive experience.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AngelList

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. A technical Round with questions about machine learning, deep learning and computer vision. There were a couple of programming questions to test the programming proficiency
  • Q2. Explain Support Vector Machines
  • Ans. 

    Support Vector Machines are supervised learning models used for classification and regression analysis.

    • SVMs are based on the concept of finding the hyperplane that best divides a dataset into classes.

    • They work by mapping data points into a high-dimensional feature space and finding the optimal separating hyperplane.

    • SVMs can handle both linear and non-linear data by using different kernel functions.

    • They are effective fo...

  • Answered by AI
  • Q3. Write a Program to print a checker board pattern on an input image
  • Ans. 

    Program to print a checker board pattern on an input image

    • Create a blank image with desired dimensions

    • Iterate through the image pixels and fill alternate squares with black and white colors

    • Display the final checker board pattern image

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Technical round about ML, DL and CV
Round 4 - Technical 

(3 Questions)

  • Q1. This was the final round with testing abilities in Data Structures and Alogrithms
  • Q2. An algorithm was shown and asked to explain the same. Could be any algorithm
  • Q3. Prove Pythagorus Theorem.
  • Ans. 

    The Pythagorean Theorem states that in a right-angled triangle, the square of the length of the hypotenuse is equal to the sum of the squares of the lengths of the other two sides.

    • In a right-angled triangle, let the lengths of the two shorter sides be a and b, and the length of the hypotenuse be c.

    • According to Pythagorean Theorem, a^2 + b^2 = c^2.

    • For example, in a triangle with sides of length 3, 4, and 5, 3^2 + 4^2 =

  • Answered by AI

Skills evaluated in this interview

Computer Vision Engineer Interview Questions Asked at Other Companies

Q1. Can you train model using MATLAB for image classifications?
Q2. How would you approach the problem of training a model to detect ... read more
asked in B Garage
Q3. 1. Draw the YOLO v4 complex Architecture. 2. Why is SIFT invarian ... read more
asked in Adagrad AI
Q4. Rotate an image in your choice of language
asked in Awiros
Q5. Write a Program to print a checker board pattern on an input imag ... read more

Computer Vision Engineer Jobs at Awiros

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

I was attended for technical f2f round for Android app developer, they asked to develop sample app with large json parsing in grid view. It's good and nice.

Round 2 - Technical 

(1 Question)

  • Q1. Once you successfully implemented coding, they will take technical f2f round. It will mainly in all topics of android.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more coding questions in all advanced topics and logical questions

I applied via Campus Placement and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Linked List, Stack, BST

Interview Preparation Tips

Interview preparation tips for other job seekers - be ready with ds algo and have some side projects

Interview Questionnaire 

3 Questions

  • Q1. Why should we hire you?
  • Q2. What are your weaknesses?
  • Q3. What are your goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Make list of questions that you would like to ask during the interview
Be prepared
Display confidence during interview

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

Interview Questionnaire 

4 Questions

  • Q1. Explain the difference b/w quick sort and merge sort ?
  • Ans. 

    Quick sort is a divide and conquer algorithm that sorts the array by selecting a pivot element and partitioning the other elements around it. Merge sort is also a divide and conquer algorithm that divides the array into two halves, sorts them separately and then merges them.

    • Quick sort has an average time complexity of O(n log n) while merge sort has a time complexity of O(n log n) in all cases.

    • Quick sort is an in-place...

  • Answered by AI
  • Q2. System Design for Naukri.com platform
  • Ans. 

    System design for Naukri.com platform

    • Identify user requirements and design the system architecture accordingly

    • Use scalable and reliable technologies for high traffic handling

    • Implement features like job search, job posting, resume upload, etc.

    • Ensure data security and privacy of users

    • Integrate with third-party services like payment gateways, social media platforms, etc.

  • Answered by AI
  • Q3. ADD two numbers (Linked List ) / leetcode question
  • Q4. Highest subset sum subarray ?
  • Ans. 

    Highest sum of contiguous subarray in an array

    • Use Kadane's algorithm to find the maximum sum subarray

    • Initialize max_so_far and max_ending_here to 0

    • Loop through the array and update max_ending_here and max_so_far

    • Return max_so_far as the highest subset sum subarray

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 technical rounds . If you have clear concepts of Ds & Algo , it will do .Questions were mainly asked from DP, arrays and strings .Other than that some system design problems were also asked which includes the Design of Naukri.com.

Skills evaluated in this interview

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

Interview Questionnaire 

3 Questions

  • Q1. ADD two linkedlist (Leetcode Question)
  • Ans. 

    Add two linked lists and return the sum as a linked list.

    • Traverse both linked lists and add the corresponding nodes.

    • Handle carry over while adding nodes.

    • Create a new linked list to store the sum and return it.

  • Answered by AI
  • Q2. Knowledge about different tech stacks
  • Q3. Diff b/w quick sort and merge sort
  • Ans. 

    Quick sort is faster but unstable, while merge sort is slower but stable.

    • Quick sort uses a pivot element to divide the array into two parts and recursively sorts them.

    • Merge sort divides the array into two halves, sorts them separately, and then merges them.

    • Quick sort has an average time complexity of O(n log n), while merge sort has a time complexity of O(n log n) in all cases.

    • Quick sort is not stable, meaning that the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good . All of the interviewers were friendly .It was a nice discussion.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Say thanks
Round 1 - Aptitude Test 

Logical questions and reasoning questions and direction questions

Round 2 - Coding Test 

3 coding questions upto 3 u write 2 codeing questions and pass all test cases

Round 3 - HR 

(2 Questions)

  • Q1. Business discussion and about ur self and about ur family
  • Q2. What u salary package and show u government proof

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java important topics for encapsulation and Abstraction interheritence and polymorphism and sql what is join and ddl statement

I applied via Company Website and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ questions,coding, languages

Round 2 - Coding Test 

All programming questions

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • Java, python
Interview preparation tips for other job seekers - Job searching,use information about interviews and networks

Awiros Interview FAQs

How many rounds are there in Awiros Computer Vision Engineer interview?
Awiros interview process usually has 2-3 rounds. The most common rounds in the Awiros interview process are Technical and Resume Shortlist.
How to prepare for Awiros Computer Vision 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 Awiros. The most common topics and skills that interviewers at Awiros expect are Computer Vision, Deep Learning, Machine Learning, C++ and Python.
What are the top questions asked in Awiros Computer Vision Engineer interview?

Some of the top questions asked at the Awiros Computer Vision Engineer interview -

  1. Write a Program to print a checker board pattern on an input im...read more
  2. Explain Support Vector Machi...read more
  3. Prove Pythagorus Theor...read more

Tell us how to improve this page.

Awiros Computer Vision Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.9
 • 153 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
Treebo Hotels Interview Questions
3.2
 • 22 Interviews
Simpl Interview Questions
2.8
 • 17 Interviews
KrazyBee Interview Questions
3.7
 • 15 Interviews
EazyDiner Interview Questions
3.2
 • 14 Interviews
TripFactory Interview Questions
2.0
 • 13 Interviews
Bijak Interview Questions
3.2
 • 13 Interviews
View all
Awiros Computer Vision Engineer Salary
based on 9 salaries
₹14 L/yr - ₹20 L/yr
61% more than the average Computer Vision Engineer Salary in India
View more details

Awiros Computer Vision Engineer Reviews and Ratings

based on 2 reviews

3.7/5

Rating in categories

4.5

Skill development

3.3

Work-life balance

3.7

Salary

3.7

Job security

3.3

Company culture

3.3

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
Computer Vision Engineer
9 salaries
unlock blur

₹14 L/yr - ₹20 L/yr

Associate Product Manager
4 salaries
unlock blur

₹13 L/yr - ₹19 L/yr

Product Manager
4 salaries
unlock blur

₹14 L/yr - ₹30 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹25 L/yr - ₹44 L/yr

Enterprise Account Manager
4 salaries
unlock blur

₹17.5 L/yr - ₹20 L/yr

Explore more salaries
Compare Awiros with

Cogoport

2.9
Compare

KrazyBee

3.7
Compare

Treebo Hotels

3.2
Compare

Woodenstreet.com

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