Upload Button Icon Add office photos

Filter interviews by

Vernacular.AI Interview Questions and Answers

Updated 11 Jun 2022

Vernacular.AI Interview Experiences

Popular Designations

2 interviews found

I applied via Referral and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why you want to join this company
  • Q2. What do you know about company or what we do

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was easy ,they take two three rounds

Data Annotator Interview Questions asked at other Companies

Q1. What is insurance? Whats is data annotation? Types of data annotation?
View answer (1)

I applied via Referral and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Assignment 

It was easy assignment

Round 2 - One-on-one 

(4 Questions)

  • Q1. Why do you want to join skit.ai
  • Q2. What is data annotation
  • Ans. 

    Data annotation is the process of labeling or tagging data to make it understandable for machines.

    • It involves adding metadata to data sets

    • It helps in training machine learning models

    • Examples include labeling images with objects or sentiments in text

    • It can be done manually or with the help of tools

    • It is important for improving accuracy and efficiency of AI systems

  • Answered by AI
  • Q3. How did you come to know about skit.ai
  • Q4. Do you know about what is the role of ai or bots
  • Ans. 

    AI or bots are computer programs designed to perform tasks that typically require human intelligence.

    • AI and bots can be used for various purposes such as customer service, data analysis, and automation of repetitive tasks.

    • They can be trained to learn from data and improve their performance over time.

    • Examples of AI and bots include chatbots, virtual assistants, and recommendation systems.

    • AI and bots have the potential t...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Where are you from ? tell me about yourself & give your background to me

Interview Preparation Tips

Topics to prepare for Vernacular.AI Data Associate interview:
  • Data annotation
  • voice annotation
  • how to bots work
Interview preparation tips for other job seekers - Just study all the things from skit.ai/product-overview

Skills evaluated in this interview

Data Associate Interview Questions asked at other Companies

Q1. What do you know about data associate
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Off-campus interviews in Bangalore

Interview Preparation Tips

Round: Test
Experience: Only a few students will get shortlisted who do all the questions correctly.

Round: Other Interview
Experience: First 4 rounds on day 1 and this are just to shortlist for more rounds on some other day.
Tips: They will focus on almost all the concepts of computer science.You need to practice a lot and start it right now. Should be easy if you have prepared well enough. Use your holidays to start preparing for placements.

General Tips: Sooner you start, better your placement will be as lack of practice & last day study works only for exams but never for interviews. You'll get enough time to prepare for interviews once you get shortlisted. Focus on it even if you are placed already.
Skill Tips: They will focus on almost all the concepts of computer science.
Skills: C , Aptitude
College Name: NIT SURATHKAL

I appeared for an interview in Dec 2016.

Interview Preparation Tips

Round: Technical Interview
Experience: On-site interview (5 hours).

4 back-to-back 45-minute coding interviews, followed by a design interview, with a lunch break with a Googler in the middle.

The first coding interview was a set of (surprisingly) trivial (no algorithms needed) incremental coding questions.

The two next coding interviews were problems straight from the "Cracking the coding interview" book. Even though I divulged that I'd solved pretty much exactly the same problem before, they didn't give me an alternative problem and I quickly coded up a general and optimal solution for the problems. Follow-up in-depth questions were minimal and not hard.

The last coding question was a pure algorithm question related to search trees/tries. No coding required, spent the whole time reasoning about the most effective algorithm. This was a bit of a brain twister.

The design question was related to high-level system design (not OO design) for storage and search in geographic data. Focus was effective search as well as scalability both in traffic and data volumes.

Tips: Read "Cracking the coding interview" or other similar literature. Solve all the problems and you should be good to go. If you solve a bunch of problems at HackerRank (or similar) as well, you'll have the added bonus of training on how to generalize the algorithms.

I applied via Referral

Interview Questionnaire 

3 Questions

  • Q1. Given two sorted arrays, say A and B, find A ­ B. Here, A ­ B means all those elements present in A but not in B. The expected time complexity was O(m + n), if A is of size m and B is of size n
  • Ans. 

    Find A-B of two sorted arrays A and B in O(m+n) time complexity.

    • Create two pointers, one for each array, and compare the elements at those pointers.

    • If the element in A is smaller, add it to the result array and move the A pointer forward.

    • If the element in B is smaller, move the B pointer forward.

    • Repeat until one of the pointers reaches the end of its array.

    • Add any remaining elements in A to the result array.

    • Time comple...

  • Answered by AI
  • Q2. 1. Write a routine to output the elements of the inorder traversal of a binary tree one by one in its each call. eg: Assuming the inorder traversal is 1, 2, 3, 4, 5, the routine should return 1 in its fi...
  • Ans. 

    The routine should output the elements of the inorder traversal of a binary tree one by one in each call.

    • Implement an inorder traversal algorithm recursively

    • Use a global variable or pass a reference to keep track of the current element

    • Call the routine repeatedly to get the next element in each call

  • Answered by AI
  • Q3. Given a set of courses along with the prerequisite courses for these courses, write a program to find the minimum number of semesters required to wrap up all the courses
  • Ans. 

    Program to find minimum semesters required to complete courses with prerequisites

    • Create a graph with courses as nodes and prerequisites as edges

    • Use topological sorting to find the order of courses to be taken

    • Calculate the minimum number of semesters based on the order obtained

    • Handle cases where there are cycles in the graph

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Questions on linked list, basic logic and an adhoc math problem. Questions were very doable, but time maybe the only constraint
Tips: Manage time, get used to fluently coding in C Java or C++. You wont have access to Internet, man pages during contest so practice coding g without them.
Duration: 3 minutes
Total Questions: 75

Skills:
Duration: 2
College Name: IIT Madras

I applied via Campus Placement and was interviewed in Jan 2016. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Finding a loop in a directed graph, find the last element in a binary tree
  • Ans. 

    To find a loop in a directed graph, use Floyd's cycle-finding algorithm. To find the last element in a binary tree, traverse the tree and return the rightmost leaf node.

    • For finding a loop in a directed graph, use Floyd's cycle-finding algorithm which uses two pointers moving at different speeds.

    • To find the last element in a binary tree, traverse the tree recursively or iteratively and return the rightmost leaf node.

  • Answered by AI
  • Q2. On circular queue and finding the last number which is highest and contains same number. Of digits a the given numbber
  • Ans. 

    The question is about finding the last number in a circular queue that has the highest number of digits.

    • Implement a circular queue data structure

    • Iterate through the circular queue to find the last number with the highest number of digits

    • Compare the number of digits of each number in the circular queue

    • Keep track of the last number with the highest number of digits

  • Answered by AI
  • Q3. Tell me your passions and what. Is the one thing I want to know about you

Interview Preparation Tips

Round: Test
Experience: Coding round based on logic was given
Tips: Practice coding
Duration: 2 hours
Total Questions: 3

College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Circular queues, binary trees, recursion
  • Q2. Asked about project

Interview Preparation Tips

Round: Test
Experience: 3 very simple questions on hackerrank.
Duration: 1 hour 30 minutes
Total Questions: 3

Round: Group Discussion
Duration: 1 hour

Round: Technical Interview
Experience: Asked me to code up a simple question

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Binary tree question. Check if left child is less than right child. Recursive and iterative implementation
  • Ans. 

    Check if left child is less than right child in a binary tree

    • Traverse the tree recursively and compare left and right child values

    • Use a stack to traverse the tree iteratively and compare left and right child values

    • Return true if all left children are less than right children, else false

  • Answered by AI
  • Q2. Check if a string is a substring in another string. Discussed speed (not time complexity). not neccessarily always correct but fast
  • Ans. 

    Use built-in string method to check substring presence for faster execution.

    • Use 'indexOf' method to check if substring is present in the main string.

    • If the method returns -1, the substring is not present.

    • If the method returns a non-negative integer, the substring is present.

  • Answered by AI
  • Q3. Maze question. write code on paper in 5 mins. automatically check if function is correct (not testcases)

Interview Preparation Tips

Round: Technical Interview
Tips: Practice writing code on paper

College Name: IIT Madras

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: A bit challenging but interesting.
Tips: 1) Solve as many problems as possible on the website "InterviewBit".
Duration: 75 minutes
Total Questions: 3

General Tips: Don't
Skill Tips: Need to have the ability to code on paper. This needs practice

Skills:
Duration: 2 months
College Name: IIT Madras
Motivation: An exciting company to work at.

Vernacular.AI Interview FAQs

How many rounds are there in Vernacular.AI interview?
Vernacular.AI interview process usually has 3 rounds. The most common rounds in the Vernacular.AI interview process are Assignment, One-on-one Round and Behavioral.
How to prepare for Vernacular.AI 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 Vernacular.AI. The most common topics and skills that interviewers at Vernacular.AI expect are Automation, Python, Machine Learning, Research and SAAS.
What are the top questions asked in Vernacular.AI interview?

Some of the top questions asked at the Vernacular.AI interview -

  1. do you know about what is the role of ai or b...read more
  2. what is data annotat...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 830 Interviews
Zoho Interview Questions
4.3
 • 509 Interviews
Gupshup Interview Questions
3.5
 • 31 Interviews
yellow.ai Interview Questions
3.2
 • 17 Interviews
MyOperator Interview Questions
3.5
 • 17 Interviews
Jio Haptik Interview Questions
3.4
 • 15 Interviews
Exotel Interview Questions
3.1
 • 12 Interviews
Kaleyra Interview Questions
4.1
 • 3 Interviews
View all

Vernacular.AI Reviews and Ratings

based on 9 reviews

3.3/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

3.3

Salary

3.6

Job security

3.4

Company culture

2.8

Promotions

3.6

Work satisfaction

Explore 9 Reviews and Ratings
Data Associate
9 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Data Annotator
5 salaries
unlock blur

₹1.8 L/yr - ₹2.6 L/yr

Sales Development Representative
4 salaries
unlock blur

₹5 L/yr - ₹9.6 L/yr

Machine Learning Engineer
3 salaries
unlock blur

₹12.4 L/yr - ₹17 L/yr

Explore more salaries
Compare Vernacular.AI with

Jio Haptik

3.4
Compare

yellow.ai

3.2
Compare

Gupshup

3.5
Compare

Uniphore Software Systems

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