Upload Button Icon Add office photos

Filter interviews by

Vermillion Communication Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I was interviewed before Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Questions related to Quant and Verbal.
Coding questions checked whether the basics are clear or not.

  • Q1. 

    Binary Palindrome Check

    Given an integer N, determine whether its binary representation is a palindrome.

    Input:

    The first line contains an integer 'T' representing the number of test cases. 
    The next 'T'...
  • Ans. 

    Check if the binary representation of a given integer is a palindrome.

    • Convert the integer to binary representation.

    • Check if the binary representation is a palindrome by comparing it with its reverse.

    • Return true if it is a palindrome, false otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaNo Backlogs, 6 CGPAJio Platforms Limited interview preparation:Topics to prepare for the interview - Programming, Quant, Java, OOPS, Algorithms, Data Structures, Operating SystemsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare for Aptitude Questions well since most companies have aptitude questions in the screening round. So you can proceed with further rounds only when you are well versed with Aptitude
Tip 2 : Be good with at least one programming language. Does not matter which language it is. It can be Java, C, C++, Python or any other language. Most of the coding rounds will be on websites which support multiple programming languages. Java and C are the languages which will be supported everywhere.
Tip 3 : Be prepared with at least the basics of various subjects. For CS students, these subjects could be Operating System, OOPS, Data Structures and Algorithms. Most of the interviewers will check if your basics are clear. Advanced topics are required only for few companies.
Tip 4 : If you don't know the answer to a particular question, then be honest and let me know that you are not aware of that topic instead of making something up. Most of the interviewers have 10+ years of experience and they can easily make out if you know a topic or are just making something up.
Tip 5 : If you have completed an internship, then probably your interview would be about your experience and the projects done at the internship. Be sure to state your experience and your contributions clearly.
Tip 6 : Projects are an important topic for the interview. Before the interviews, revise the projects you had completed or are working on currently. The projects need not be some external projects. These can be academic and final year projects. Make sure you know everything about the project.

Application resume tips for other job seekers

Tip 1 : For freshers, always put the Education section before the Experience/Internship section and mention the educational details in reverse chronological order starting with the most recent college/university. No need to mention SSC and HSC. If you are an undergrad student, only mention the undergrad college. 
Tip 2 : Always showcase 2-3 projects. The first being the final year project (could be in-progress at the time of the interview) and others can be academic profile.
Tip 3 : Mention your LinkedIn Profile, GitHub profile (For CS students), your blog URL (if you have one) and other portfolio links (relevant to your course of study)
Tip 4 : Skip the objective section. This section is usually not required since you are directly applying for that specific company.
Tip 5 : ALWAYS PROOFREAD YOUR RESUME. Make sure that your resume does not contain any spelling or grammatical errors.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Two coding questions were given in the first round to be solved in 60 minutes.

  • Q1. 

    Rearrange Array Elements Problem Statement

    Given an array A containing 'N' integers and an integer m, rearrange the elements of the array such that the differences between the array elements and m are sor...

  • Ans. 

    Rearrange array elements based on their differences from a given integer.

    • Calculate the differences between each element and the given integer.

    • Sort the elements based on their differences while maintaining the original order for elements with the same difference.

    • Implement a function to rearrange the array elements as per the given criteria.

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    The task is to find all nodes in a binary tree that are at a distance K from a given node.

    • Traverse the binary tree to find the given node

    • From the given node, perform a depth-first search to find all nodes at distance K

    • Use a list to store the values of the nodes at distance K

    • Return the list of values in any order

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.

  • Q1. 

    Triangle of Numbers Pattern

    Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34545
    4567654

    Explanation:

    The pat...

  • Ans. 

    Print a triangle pattern of numbers based on a given number 'N'.

    • Iterate through each row and print the numbers accordingly

    • Use spaces to center-align the numbers in each row

    • Increment the numbers in each row as per the pattern

  • Answered by AI
  • Q2. What is the difference between a web server and an application server?
  • Ans. 

    Web server serves static content over HTTP, while application server runs dynamic content and business logic.

    • Web server handles HTTP requests and responses, serving static content like HTML, images, and CSS.

    • Application server executes business logic, runs dynamic content, and interacts with databases.

    • Web server examples include Apache, Nginx, while application server examples include Tomcat, JBoss.

    • Web server focuses on...

  • Answered by AI
  • Q3. How does the internet work?
  • Ans. 

    The internet is a global network of interconnected computers that communicate using standardized protocols.

    • The internet is made up of a vast number of interconnected networks of computers.

    • Data is transmitted over the internet using protocols such as TCP/IP.

    • Websites are hosted on servers connected to the internet, and users access them using web browsers.

    • Internet Service Providers (ISPs) provide access to the internet f...

  • Answered by AI
  • Q4. Write a SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

    • Use the 'SELECT DISTINCT' statement to get unique salary values

    • Order the salaries in descending order using 'ORDER BY' clause

    • Use 'LIMIT' and 'OFFSET' to get the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Chitkara University. Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - They took my interview in five rounds but in all the rounds they were asking only one question. TELL ME SOMETHING ABOUT YOURSELF ?
My Interview with their sales VP SANDEEP JUNEJA was good and relevant to the point.
Otherwise all the other rounds were almost same which was not needed it can be Completed in 1-2 round.

I applied via Job Portal and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Data structure
  • Q2. Java concepts
  • Q3. Handson coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Get handson in any language but be confident

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

Interview Questionnaire 

2 Questions

  • Q1. Data Structures
  • Q2. Algorithms knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Study DSA and be thorough with projects.

I applied via Naukri.com and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About yourself, your current project, Skillset you have, question related Excel.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR is very unprofessional, she shortlisted people on their English speaking skills for a technical role she sent me wrong meeting invite twice and when I called her after week she told me I was not shortlisted.
Than why the short listed mail was sent ?
If you are applying make sure you have some internal links

I applied via Referral and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself ? 2. What is IP Address ? 3. How do you manage the work force in your current assignment?

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak your mind. This will help you and company know well each other.

I applied via LinkedIn and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Data structures
  • Q2. Advanced android

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview panel is very good just basics should be clear

Interview Questionnaire 

1 Question

  • Q1. Questions related to Data Structures like Array, Stack, Queue.. etc., Questions related to Algorithms Like Dynamic Programming and Questions from DBMS.

I applied via Campus Placement and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Graph Question:- There is a chessboard. It is different from the normal chessboard. White and black blocks can be anywhere. Source and destination block are given. I was asked to find the path with a mini...
  • Q2. Find the sum of k smallest number in a BST.
  • Ans. 

    Find sum of k smallest numbers in a BST.

    • Traverse the BST in-order and add the k smallest numbers to a sum variable.

    • Use a priority queue to keep track of the k smallest numbers.

    • If k is greater than the number of nodes in the BST, return the sum of all nodes.

    • If k is 0, return 0.

  • Answered by AI
  • Q3. System design of BookMyShow. Design the algorithm and database for the seat booking system. How this the system will handle the case when the payment gets failed. Again he asked me to write the query for...
  • Ans. 

    Design algorithm and database for seat booking system of BookMyShow and handle failed payments.

    • Create a database with tables for movies, theaters, seats, bookings, and payments

    • Use a locking mechanism to prevent double booking of seats

    • If payment fails, release the locked seats and notify the user

    • Write a query to get the timestamp in SQL: SELECT CURRENT_TIMESTAMP;

  • Answered by AI
  • Q4. Write the code for the time stamp in C.
  • Ans. 

    Code for time stamp in C

    • Use the time.h header file

    • Call the time() function to get the current time in seconds

    • Convert the time to a string using strftime() function

    • Use the format string to specify the desired format of the time stamp

  • Answered by AI
  • Q5. Write the code for rearranging the array in consecutive pair multiplication. For example consider an array with 10 element A0, A1, A2......A9. The resultant array will be A0*A1, A1*A2, A2*A3, and so on. Th...
  • Ans. 

    Rearrange array in consecutive pair multiplication in descending order.

    • Create a new array to store the multiplied values

    • Use a loop to iterate through the original array and multiply consecutive pairs

    • Write a compare function to sort the new array in descending order

  • Answered by AI
  • Q6. Write the code to rearrange the array in maximum-minimum form.
  • Ans. 

    Code to rearrange an array in maximum-minimum form.

    • Sort the array in descending order.

    • Create a new array and alternate between adding the maximum and minimum values from the sorted array.

    • Return the new array.

    • Time complexity: O(nlogn)

    • Space complexity: O(n)

  • Answered by AI
  • Q7. What is stoi function (stoi() function)? Its uses and code to Implement stoi function.
  • Ans. 

    stoi() function converts a string to an integer.

    • stoi() is a C++ function that takes a string as input and returns an integer.

    • It is used to convert a string of digits into an integer.

    • It can also handle negative numbers and ignore leading whitespace.

    • Example: int num = stoi("123"); // num is now 123

  • Answered by AI
  • Q8. Write code for Longest Common Substring. (time limit for writing this code was 5-6 minutes)
  • Ans. 

    Code for finding the longest common substring in an array of strings.

    • Iterate through the first string and check for all possible substrings

    • Check if the substring is present in all other strings

    • Keep track of the longest common substring found so far

    • Return the longest common substring

  • Answered by AI
  • Q9. Q: What is a Transaction in DBMS and ACID properties? Q: What is Thread and how it is different from the Process? Q: What are some Linux commands. Write any 5 commands? Q: Why sudo is used for commands?...
  • Ans. 

    Answers to common technical questions in a software engineering interview

    • A transaction in DBMS is a sequence of operations that must be treated as a single unit of work. ACID properties ensure reliability and consistency of transactions.

    • A thread is a lightweight process that shares memory and resources with other threads in the same process. A process is a separate instance of a program.

    • Common Linux commands include ls...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you speak.

Take your step forward. Try to be firstly interviewed if choice arrives ( They get screwed up at the end and ask questions that the previous candidates failed ).

Before approaching the solution to be clear with edge test-cases. Once you are completely sure then come up with an approach.

Skills evaluated in this interview

Vermillion Communication Interview FAQs

How to prepare for Vermillion Communication 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 Vermillion Communication. The most common topics and skills that interviewers at Vermillion Communication expect are SEM, SEO, Adobe Premiere Pro, Client Coordination and Communication Skills.

Tell us how to improve this page.

Interview Questions from Similar Companies

Bharti Airtel Interview Questions
4.0
 • 847 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
Jio Platforms Interview Questions
3.5
 • 195 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
Network 18 Interview Questions
3.5
 • 26 Interviews
Sun TV Network Interview Questions
3.6
 • 12 Interviews
Rediff.com Interview Questions
4.5
 • 4 Interviews
View all

Vermillion Communication Reviews and Ratings

based on 25 reviews

3.6/5

Rating in categories

3.5

Skill development

3.3

Work-life balance

3.3

Salary

3.1

Job security

3.0

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 25 Reviews and Ratings
Social Media Executive

Gurgaon / Gurugram

0-5 Yrs

Not Disclosed

Content Writer

Gurgaon / Gurugram

1-3 Yrs

Not Disclosed

Graphic Designer

Gurgaon / Gurugram

1-5 Yrs

Not Disclosed

Explore more jobs
SEO Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Accounts Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Accounts Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Vermillion Communication with

Rediff.com

4.5
Compare

Info Edge

3.9
Compare

Jagran Prakashan

3.9
Compare

HT Media

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