Upload Button Icon Add office photos

Filter interviews by

AllGoVision Technologies Interview Questions and Answers

Updated 8 Apr 2024
Popular Designations

10 Interview questions

A Software Engineer was asked
Q. Define and write a program for Heap using List in Python.
Ans. 

A Heap is a binary tree data structure where the key at each node is greater than or equal to the keys at its children.

  • Create a class for Heap with methods like insert, delete, and heapify.

  • Use a list to store the elements of the heap.

  • Implement the heapify function to maintain the heap property after insertions and deletions.

View all Software Engineer interview questions
A Software Engineer was asked
Q. Implement a stack using a list in Python.
Ans. 

Implement stack using list in Python

  • Create a list to store the elements of the stack

  • Use append() to push elements onto the stack

  • Use pop() to remove elements from the stack

View all Software Engineer interview questions
A Software Engineer was asked
Q. Write a Python function to find an element in an array.
Ans. 

Use Python's built-in 'in' keyword to find an element in an array of strings.

  • Iterate through the array and check if the element is present using 'in' keyword.

  • Return True if element is found, False otherwise.

  • Example: array = ['apple', 'banana', 'cherry'], element = 'banana', return True.

View all Software Engineer interview questions
A Senior Sales Consultant was asked
Q. Describe projects you have completed in the past and share your experience.
Ans. 

I have completed various projects in my previous roles as a sales consultant.

  • Successfully led a team to increase sales by 20% in Q3 of 2019

  • Developed and implemented a new sales strategy resulting in a 15% increase in revenue

  • Collaborated with marketing team to launch a new product line, resulting in $500,000 in sales within the first month

View all Senior Sales Consultant interview questions
A Marketing Manager was asked
Q. What is a famous street food in Mumbai?
Ans. 

The famous street food of Mumbai is Vada Pav.

  • Vada Pav is a vegetarian fast food consisting of a potato fritter served on a bread bun.

  • It is often served with chutney and fried green chillies.

  • It is a popular snack among Mumbaikars and is available at almost every street corner.

  • Other popular street foods in Mumbai include Pav Bhaji, Bhel Puri, and Sev Puri.

View all Marketing Manager interview questions
A Marketing Manager was asked
Q. What is the capital of Argentina?
Ans. 

The capital of Argentina is Buenos Aires.

  • Buenos Aires is the largest city in Argentina and the second-largest metropolitan area in South America.

  • It is known for its European-style architecture, tango dancing, and delicious food.

  • The city is home to many cultural landmarks, including the Teatro Colon, the Obelisk, and the Recoleta Cemetery.

View all Marketing Manager interview questions
A Software Engineer was asked
Q. Define Linked list, add, delete and traverse a Linked list. Difference between Singly and Doubly LL.
Ans. 

A linked list is a data structure where each element points to the next element in the sequence. Adding, deleting, and traversing a linked list involves manipulating these pointers.

  • Linked list: a data structure where each element (node) has a reference to the next element

  • Add to linked list: create a new node and update the pointer of the last node to point to the new node

  • Delete from linked list: update the pointer...

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. Define the classification performance metrics. ROC-AUC curve. What is the Precision-Recall tradeoff, when will there be no tradeoff.
Ans. 

Classification performance metrics evaluate the performance of a machine learning model in predicting categorical outcomes.

  • ROC-AUC curve measures the tradeoff between true positive rate and false positive rate at various thresholds.

  • Precision-Recall tradeoff involves balancing the precision and recall of a model. Higher precision typically means lower recall and vice versa.

  • There will be no tradeoff in Precision-Rec...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Define Dynamic memory allocation and the syntax in C. Explain the Memory map in C. Usage of Structures and Unions.
Ans. 

Dynamic memory allocation in C allows for allocating memory at runtime. Memory map in C shows how memory is organized. Structures and unions are used to group related data.

  • Dynamic memory allocation in C is done using functions like malloc(), calloc(), realloc().

  • Memory map in C shows the layout of memory segments like stack, heap, data, and code.

  • Structures in C allow grouping related data under a single name. Examp...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Singly Linked List
Ans. 

A singly linked list is a data structure where each element points to the next element in the list.

  • Each element in a singly linked list contains a value and a pointer to the next element.

  • Traversal in a singly linked list is done sequentially from the head to the tail.

  • Insertion and deletion operations are efficient in a singly linked list compared to an array.

View all Software Engineer interview questions

AllGoVision Technologies Interview Experiences

7 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Easy coding challenge
Round 2 - One-on-one 

(2 Questions)

  • Q1. Moderate coding challenge
  • Q2. System Design Question
Round 3 - HR 

(1 Question)

  • Q1. Standard HR round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

2 Coding questions on Google Form

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on C/C++ & DS
  • Q2. Singly Linked List
  • Ans. 

    A singly linked list is a data structure where each element points to the next element in the list.

    • Each element in a singly linked list contains a value and a pointer to the next element.

    • Traversal in a singly linked list is done sequentially from the head to the tail.

    • Insertion and deletion operations are efficient in a singly linked list compared to an array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company. Can layoff at any time without any reason. Company is going to get finished in 5 yrs

Skills evaluated in this interview

Developer Interview Questions & Answers

user image Anonymous

posted on 28 Feb 2024

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

(1 Question)

  • Q1. Scenario based questions
Round 2 - Technical 

(1 Question)

  • Q1. Work experience
Round 3 - HR 

(1 Question)

  • Q1. General topic , relocation , salary discussion.
Interview experience
4
Good
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. Why we should not assign uniform weights in neural network
  • Ans. 

    Uniform weights in neural network can lead to overfitting and slow learning.

    • Uniform weights can cause all neurons to behave similarly, leading to redundancy and lack of diversity.

    • It can also cause overfitting, where the network becomes too specialized to the training data and performs poorly on new data.

    • Non-uniform weights allow the network to learn more efficiently and effectively by assigning different importance to ...

  • Answered by AI
  • Q2. Difference between overfitting and underfitting
  • Ans. 

    Overfitting is when a model is too complex and fits the training data too well, while underfitting is when a model is too simple and cannot capture the underlying patterns in the data.

    • Overfitting occurs when a model is trained too well on the training data and cannot generalize well to new data

    • Underfitting occurs when a model is too simple and cannot capture the underlying patterns in the data

    • Overfitting can be detecte...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Normal discussion about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company.They follow hire and fire policy

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 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 - HR 

(1 Question)

  • Q1. Reason of leaving current job
Round 3 - Technical 

(1 Question)

  • Q1. Porjects done in past and share experiance
  • Ans. 

    I have completed various projects in my previous roles as a sales consultant.

    • Successfully led a team to increase sales by 20% in Q3 of 2019

    • Developed and implemented a new sales strategy resulting in a 15% increase in revenue

    • Collaborated with marketing team to launch a new product line, resulting in $500,000 in sales within the first month

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Projects won previously and technologies worked on

Interview Preparation Tips

Interview preparation tips for other job seekers - Be crisp and clear. Don't guess things. Share your esperance in detail
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before 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 - Technical 

(3 Questions)

  • Q1. Define Dynamic memory allocation and the syntax in C. Explain the Memory map in C. Usage of Structures and Unions.
  • Ans. 

    Dynamic memory allocation in C allows for allocating memory at runtime. Memory map in C shows how memory is organized. Structures and unions are used to group related data.

    • Dynamic memory allocation in C is done using functions like malloc(), calloc(), realloc().

    • Memory map in C shows the layout of memory segments like stack, heap, data, and code.

    • Structures in C allow grouping related data under a single name. Example: s...

  • Answered by AI
  • Q2. Define Linked list, add, delete and traverse a Linked list. Difference between Singly and Doubly LL.
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence. Adding, deleting, and traversing a linked list involves manipulating these pointers.

    • Linked list: a data structure where each element (node) has a reference to the next element

    • Add to linked list: create a new node and update the pointer of the last node to point to the new node

    • Delete from linked list: update the pointer of t...

  • Answered by AI
  • Q3. Define the classification performance metrics. ROC-AUC curve. What is the Precision-Recall tradeoff, when will there be no tradeoff.
  • Ans. 

    Classification performance metrics evaluate the performance of a machine learning model in predicting categorical outcomes.

    • ROC-AUC curve measures the tradeoff between true positive rate and false positive rate at various thresholds.

    • Precision-Recall tradeoff involves balancing the precision and recall of a model. Higher precision typically means lower recall and vice versa.

    • There will be no tradeoff in Precision-Recall w...

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

(3 Questions)

  • Q1. Define and write a program for Heap using List. (Python)
  • Ans. 

    A Heap is a binary tree data structure where the key at each node is greater than or equal to the keys at its children.

    • Create a class for Heap with methods like insert, delete, and heapify.

    • Use a list to store the elements of the heap.

    • Implement the heapify function to maintain the heap property after insertions and deletions.

  • Answered by AI
  • Q2. Implement stack as a list (Python).
  • Ans. 

    Implement stack using list in Python

    • Create a list to store the elements of the stack

    • Use append() to push elements onto the stack

    • Use pop() to remove elements from the stack

  • Answered by AI
  • Q3. Finding an element in an array. (Python)
  • Ans. 

    Use Python's built-in 'in' keyword to find an element in an array of strings.

    • Iterate through the array and check if the element is present using 'in' keyword.

    • Return True if element is found, False otherwise.

    • Example: array = ['apple', 'banana', 'cherry'], element = 'banana', return True.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. General discussion about the company and their projects. CTC was not discussed, it was sent over the email.
  • Q2. Are you willing to work overtime?

Interview Preparation Tips

Topics to prepare for AllGoVision Technologies Software Engineer interview:
  • Data Structures
  • Python
  • Machine Learning
Interview preparation tips for other job seekers - -Be strong in atleast one Programming language.
-The company uses Python, so learn OOPS and basic Data structures.

Skills evaluated in this interview

Marketing Manager Interview Questions & Answers

user image Suyesh Sanghi

posted on 19 Apr 2021

I applied via Walk-in and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is the capital of Argentina?
  • Ans. 

    The capital of Argentina is Buenos Aires.

    • Buenos Aires is the largest city in Argentina and the second-largest metropolitan area in South America.

    • It is known for its European-style architecture, tango dancing, and delicious food.

    • The city is home to many cultural landmarks, including the Teatro Colon, the Obelisk, and the Recoleta Cemetery.

  • Answered by AI
  • Q2. Who is the PM of India?
  • Q3. What is the famous street food of Mumbai/
  • Ans. 

    The famous street food of Mumbai is Vada Pav.

    • Vada Pav is a vegetarian fast food consisting of a potato fritter served on a bread bun.

    • It is often served with chutney and fried green chillies.

    • It is a popular snack among Mumbaikars and is available at almost every street corner.

    • Other popular street foods in Mumbai include Pav Bhaji, Bhel Puri, and Sev Puri.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Job. Keep it up.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about AllGoVision Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via LinkedIn and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1. tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice, but since Im not great at coding I didn't do well

AllGoVision Technologies Interview FAQs

How many rounds are there in AllGoVision Technologies interview?
AllGoVision Technologies interview process usually has 3-4 rounds. The most common rounds in the AllGoVision Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for AllGoVision Technologies 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 AllGoVision Technologies. The most common topics and skills that interviewers at AllGoVision Technologies expect are MySQL, C++, Analytics, MongoDB and Software Solution Sales.
What are the top questions asked in AllGoVision Technologies interview?

Some of the top questions asked at the AllGoVision Technologies interview -

  1. Define the classification performance metrics. ROC-AUC curve. What is the Preci...read more
  2. Define Dynamic memory allocation and the syntax in C. Explain the Memory map in...read more
  3. Define Linked list, add, delete and traverse a Linked list. Difference between ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 6 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

AllGoVision Technologies Reviews and Ratings

based on 13 reviews

3.1/5

Rating in categories

2.9

Skill development

2.9

Work-life balance

2.8

Salary

2.3

Job security

2.6

Company culture

2.5

Promotions

3.1

Work satisfaction

Explore 13 Reviews and Ratings
Sales Manager

New Delhi

5-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
34 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Test Engineer
12 salaries
unlock blur

₹2.8 L/yr - ₹4 L/yr

Software Developer
7 salaries
unlock blur

₹5.4 L/yr - ₹8 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹8.5 L/yr - ₹10 L/yr

Technical Support Engineer
5 salaries
unlock blur

₹4.1 L/yr - ₹7.9 L/yr

Explore more salaries
Compare AllGoVision Technologies with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview