Upload Button Icon Add office photos
Engaged Employer

i

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

Vinca Cyber Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Vinca Cyber Interview Questions and Answers

Updated 27 Jan 2025

Vinca Cyber Interview Experiences

Popular Designations

2 interviews found

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

(1 Question)

  • Q1. Cyber security related question

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a good company for both freshers and experienced individuals, providing numerous opportunities for learning. I personally learned many things while working with Vinca, and I am grateful to Vinca for the great opportunity.

However, there are some drawbacks: management should adhere to established protocols, management should not interfere in personal lives, and the salary offerings could be enhanced.

Technical Engineer Interview Questions asked at other Companies

Q1. The hydraulic steering device of a dish antenna for satellite tracking works by adjusting the elevation using a hydraulic ram. Oil can be pumped into the ram to raise the elevation. The hydraulic seals leak pressure very slowly such that ad... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Interview will be taken by some other consultant. He doesn't know much about company. You ll be surprised later. One technical round. It took them 16days to complete my procedure. 1. Marketing manager too...
  • Q2. Don't join. I repeat .

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Join i repeat. Worst Management. Who gives freshers salary to experience candidates making them wait for more than 15days. Some other guy not from the company taking interview. What is going to happen next u don't know. Even if u provide them with n number of solutions or ideas they don't know how to manage or conduct process. After clearing all rounds u just wait to hear we can pay u this much only. From day 1 you ll say them about your expectations but nobody knows who is running company.

Digital Marketing Specialist Interview Questions asked at other Companies

Q1. Have you handled Google Ads, Linkedin Ads, Hubspot, and other digital marketing software?
View answer (2)

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Data structure and C++
  • Q2. Reverse Linked list
  • Q3. Multi threaded queue
  • Q4. Design pattern
  • Q5. Basic C++ concepts
  • Q6. Puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve data structure problems

I appeared for an interview before Mar 2021.

Round 1 - Technical 

(3 Questions)

  • Q1. How to check a number is power of 2
  • Ans. 

    To check if a number is a power of 2, we can use bitwise operations.

    • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

    • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

  • Answered by AI
  • Q2. Sort a stack without using another data structure
  • Ans. 

    Sort a stack without using another data structure

    • Use recursion to pop the top element and insert it at the bottom of the remaining stack

    • Repeat until the stack is sorted in ascending order

    • Time complexity: O(n^2), space complexity: O(n) due to recursion

  • Answered by AI
  • Q3. Check weather array have continuous increasing than decreasing value
  • Ans. 

    Check if array has continuous increasing and decreasing values

    • Loop through the array and check if each element is greater than the previous one

    • Once you find the maximum element, check if the remaining elements are in decreasing order

    • If yes, return true else false

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a cricinfo (LLD)
  • Ans. 

    Design a cricinfo (LLD)

    • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

    • Define the relationships between entities

    • Create a database schema to store the data

    • Implement APIs to fetch and update data

    • Design a UI to display the information

    • Consider scalability and performance

    • Ensure data security and privacy

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study basic Data Structure questions and also prepare for Low level design.
Do work on behavioral questions too.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

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

Interview Questionnaire 

5 Questions

  • Q1. Questions on linked list
  • Q2. Questions on resume
  • Q3. About my interests
  • Q4. My interest in symantec
  • Q5. Place to work

Interview Preparation Tips

College Name: IIT Madras

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

Interview Questionnaire 

3 Questions

  • Q1. How you find loop in a linked list
  • Ans. 

    To find a loop in a linked list, we use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at twice the speed of the other.

    • If there is a loop in the linked list, the two pointers will eventually meet.

    • To detect the meeting point, we reset one of the pointers to the head of the linked list and move both pointers at the same speed.

    • The meeting point is the start of the loop.

  • Answered by AI
  • Q2. What is LRU, MRU and LFU
  • Ans. 

    LRU, MRU and LFU are caching algorithms used to manage memory in computer systems.

    • LRU stands for Least Recently Used and removes the least recently used items from the cache when the cache is full.

    • MRU stands for Most Recently Used and removes the most recently used items from the cache when the cache is full.

    • LFU stands for Least Frequently Used and removes the least frequently used items from the cache when the cache i...

  • Answered by AI
  • Q3. Camel banana problem

Interview Preparation Tips

Round: Test
Experience: coding test in hacker rank. can code in any language except in C and C++.
Duration: 1 hour
Total Questions: 2

Round: Technical Interview
Experience: In technical round the questions are on OS, basics of C(mainly in linked lists) and maths puzzle

They mostly see how you are approaching towards a problem.
It is first time that I heard the camel banana problem. So I struggled for some time and came up with a solution. He said he liked the approach but it can be optimized.

Round: HR Interview
Experience: It started with explain about yourselves. and then he asked to explain about one project with technical details. Later he asked me to explain binary search for a guy who don't know much of technical knowledge. He continued with why we only do 2 partitions why can we make it up to 3. Later he asked me what I liked most in my mobile phone. I said chatting apps. So he asked me that if I was hired as a developer to make a chatting app how will I do it.
Tips: way of thinking and way of approaching towards a problem.

Round: HR Interview
Experience: This round was focused mainly on whether I like to work in Bangalore or not. How I first heard about Symantec. how I will suit for the company. what are my future plans.

Skills: C, OS, Math Puzzles
College Name: IIT Madras

Skills evaluated in this interview

I appeared for an interview in Feb 2017.

Interview Preparation Tips

Round: Test
Experience: Very first, the interviewers and their employees gave presentation about their products and company. They were very cool and very positive to motivate candidates. After that they started Round 1 that is test based on aptitude and logical problem, also containing c programmin and operating system problems.
Tips: If you have studied basics very well, you will clear the round 1 very easily. Study C programming and Linux Operating System concepts.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: I am not specifying any question above because 2nd round i.e Technical Round 1 was continued to abt 1 and hour hours taken by 1 interviewer. If you give all answers confindently, obviously they all must be correct, you will be qualified to next techincal round.
Tips: Same as mentioned in round 1.
Study C programming & Operating System.

Round: Technical Interview
Experience: This was Technical Round 2. It was taken by 3 interviewers asking questions randomly from random subject. Also, one took rapid fire round for 20-25 questions. If you qualified this round, then you can assume that you are selected. This round was also continued more than 1 hour.
Tips: Study Networking concepts

Round: HR Interview
Experience: If you are called for HR interview, then you can assume that you already selected as employee for company. This is round is just for formality to tell you CTC and location and joining, etc.
One thing I would like to mention that in each round they will ask you to tell about yourself. So prepare that too. In HR round, they asked me some tricky puzzles to solve since I mentioned that I am very good in maths so.

College Name: Datta Meghe College of Engineering

I applied via Walk-in and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is Excel what is vlookup what is your strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and bold

I applied via Naukri.com and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions only ... regarding job and experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident ... always say the truth ... never try to fake your details

Vinca Cyber Interview FAQs

How many rounds are there in Vinca Cyber interview?
Vinca Cyber interview process usually has 1-2 rounds. The most common rounds in the Vinca Cyber interview process are Technical and Resume Shortlist.
What are the top questions asked in Vinca Cyber interview?

Some of the top questions asked at the Vinca Cyber interview -

  1. Don't join. I repea...read more
  2. Cyber security related quest...read more

Tell us how to improve this page.

Vinca Cyber Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
HCL Infosystems Interview Questions
3.9
 • 140 Interviews
McAfee Interview Questions
4.0
 • 30 Interviews
Gen Interview Questions
4.0
 • 17 Interviews
K7 Computing Interview Questions
4.1
 • 3 Interviews
View all

Vinca Cyber Reviews and Ratings

based on 46 reviews

4.5/5

Rating in categories

4.5

Skill development

4.4

Work-life balance

4.1

Salary

4.4

Job security

4.3

Company culture

4.2

Promotions

4.3

Work satisfaction

Explore 46 Reviews and Ratings
Technical Engineer
19 salaries
unlock blur

₹1.7 L/yr - ₹6.5 L/yr

Technical Support Engineer
10 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Python Developer
4 salaries
unlock blur

₹3.3 L/yr - ₹6.5 L/yr

Senior Technical Engineer
4 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Network Security Engineer
4 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Vinca Cyber with

K7 Computing

4.1
Compare

QUICK HEAL TECHNOLOGIES

3.7
Compare

Seqrite

2.6
Compare

TCS

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