Upload Button Icon Add office photos

Filter interviews by

AllGoVision Technologies Interview Questions and Answers

Updated 8 Apr 2024

AllGoVision Technologies Interview Experiences

Popular Designations

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

Top AllGoVision Technologies Software Engineer Interview Questions and Answers

Q1. Define Dynamic memory allocation and the syntax in C. Explain the Memory map in C. Usage of Structures and Unions.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (210)
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

Top AllGoVision Technologies Software Engineer Interview Questions and Answers

Q1. Define Dynamic memory allocation and the syntax in C. Explain the Memory map in C. Usage of Structures and Unions.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (210)

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.

Developer Interview Questions asked at other Companies

Q1. Which programming language do you use regular in work
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(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

Top AllGoVision Technologies Software Engineer Interview Questions and Answers

Q1. Define Dynamic memory allocation and the syntax in C. Explain the Memory map in C. Usage of Structures and Unions.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (210)

AllGoVision Technologies interview questions for popular designations

 Software Engineer

 (4)

 Marketing Manager

 (1)

 Senior Sales Consultant

 (1)

 Developer

 (1)

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

Senior Sales Consultant Interview Questions asked at other Companies

Q1. What can you do to achieve your target if you don't get proper leads from us?
View answer (2)
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:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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

Top AllGoVision Technologies Software Engineer Interview Questions and Answers

Q1. Define Dynamic memory allocation and the syntax in C. Explain the Memory map in C. Usage of Structures and Unions.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (210)

Jobs at AllGoVision Technologies

View all

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.

Marketing Manager Interview Questions asked at other Companies

Q1. What the big opportunities to handle a sales in a worse situation i.e when prices & demand are low & vice versa
View answer (2)

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Mar 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do you get the second to last element from a SQL table?
  • Ans. 

    To get the second to last element from a SQL table, use the OFFSET-FETCH clause.

    • Use the ORDER BY clause to sort the table in descending order.

    • Use the OFFSET-FETCH clause to skip the last row and fetch the second to last row.

    • Example: SELECT column_name FROM table_name ORDER BY column_name DESC OFFSET 1 ROWS FETCH NEXT 1 ROWS ONLY;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice by building a simple full stack web application.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident , easy to crack

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

Tell us how to improve this page.

AllGoVision Technologies Interview Process

based on 6 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

HCLTech Interview Questions
3.5
 • 3.8k Interviews
Siemens Interview Questions
4.1
 • 421 Interviews
Bosch Interview Questions
4.2
 • 331 Interviews
Nihilent Interview Questions
3.3
 • 58 Interviews
Securitas Interview Questions
3.8
 • 30 Interviews
View all

AllGoVision Technologies Reviews and Ratings

based on 13 reviews

3.2/5

Rating in categories

3.0

Skill development

2.9

Work-life balance

2.9

Salary

2.4

Job security

2.6

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 13 Reviews and Ratings
Deployment Manager

Bangalore / Bengaluru

8-13 Yrs

₹ 10-20 LPA

Explore more jobs
Software Engineer
32 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Test Engineer
10 salaries
unlock blur

₹2.8 L/yr - ₹4.8 L/yr

Software Developer
7 salaries
unlock blur

₹5.4 L/yr - ₹8 L/yr

Technical Support Engineer
7 salaries
unlock blur

₹2.8 L/yr - ₹7.9 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹8.5 L/yr - ₹10 L/yr

Explore more salaries
Compare AllGoVision Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.7
Compare

Infosys

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