Upload Button Icon Add office photos

Filter interviews by

VINSAK India Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Senior Engineer Interview Questions & Answers

HP India user image Abhishek Bandejia

posted on 5 Feb 2015

Interview Questionnaire 

2 Questions

  • Q1. Coding questions on data structures and oops
  • Q2. Various questions on cv, projects, por's, etc

Interview Preparation Tips

Round: Test
Experience: Questions were normal like any other aptitude or coding tests.
Tips: Time given was enough for other sections but you need to hurry a little in aptitude part.
Duration: 60 minutes
Total Questions: 60

Round: Technical Interview
Experience: The questions were basic, some where well known like reversing a link list using recursion, designing of car parking lot using concept of oops, find tree height/diameter, etc.
Tips: 1. They ask you to write complete code on paper. This sometimes turn out to be a challenging task when you don't have compiler to correct you on basic things. Practice writing codes on paper.
2. They surely ask questions on oops, like polymorphism, inheritance, etc. besides their definition, also practice writing sudo codes to explain them

Round: HR Interview
Experience: Mainly i was asked questions on my internship experience and POR's.
Tips: They will try to grill you on some questions like 'Why we should hire you?', have a clear reason in your mind. Your other answers should not contradict with your reasons

General Tips: I don't know about other colleges but HP recruits small number of students from my university. Coding questions were average level and can easily be tackled. Many students were rejected after HR interview so don't take it lightly. They do grill you in a very good style if they are in doubt about your selection
Skills: willingness, Enthusiasm, Coding skills, Aptitude skills
College Name: IIT Guwahati

Interview Questionnaire 

13 Questions

  • Q1. ISO / OSI Model all layers
  • Ans. 

    The ISO/OSI model is a conceptual framework that standardizes the functions of a communication system into seven layers.

    • The ISO/OSI model stands for International Organization for Standardization/Open Systems Interconnection model.

    • It is a layered model that helps in understanding and designing network protocols.

    • The seven layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each la...

  • Answered by AI
  • Q2. Socket Programming
  • Q3. Linux : How to lock a file
  • Ans. 

    To lock a file in Linux, use the flock command or the fcntl system call.

    • The flock command can be used to lock a file by acquiring an exclusive or shared lock.

    • The fcntl system call can be used to lock a file by setting the F_SETLK or F_SETLKW command.

    • Locking a file prevents other processes from modifying or accessing it until the lock is released.

    • Locking can be done at the file level or at specific regions within a file...

  • Answered by AI
  • Q4. ACID property
  • Q5. Binary Search
  • Q6. Testing
  • Q7. Normalizaton
  • Q8. CSS Full form . Why we use CSS in HTML page
  • Ans. 

    CSS stands for Cascading Style Sheets. It is used to style the appearance of HTML elements on a webpage.

    • CSS helps in separating the content of a webpage from its design, making it easier to maintain and update.

    • It allows for consistent styling across multiple pages of a website.

    • CSS can be used to control layout, colors, fonts, and other visual aspects of a webpage.

    • It enables responsive design, making websites adapt to d...

  • Answered by AI
  • Q9. How to find a loop in linked list
  • Ans. 

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

    • Use two pointers, one moving at a speed of one node at a time and the other at a speed of two nodes at a time.

    • If there is a loop, the two pointers will eventually meet at the same node.

    • To find the starting point of the loop, move one pointer back to the head and then move both pointers at a speed of one node at a time.

    • The point where they m...

  • Answered by AI
  • Q10. OOps Concept
  • Q11. Projects
  • Q12. Your interests
  • Ans. 

    I enjoy exploring new technologies, solving complex problems, and collaborating with others to create innovative solutions.

    • Exploring new technologies

    • Solving complex problems

    • Collaborating with others

    • Creating innovative solutions

  • Answered by AI
  • Q13. How do you see software industry after 10 years

Interview Preparation Tips

Round: Test
Experience: 1. Aptitute

2. DS & C : Maninly queue , Dequeue and linked list

3. C++ : Theory part

4. Network : OSI Layer's working

College Name: NA

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Personal and check your attitude

Interview Preparation Tips

Round: Test
Experience: Aptitude
Tips: Read
Duration: 1 hour
Total Questions: 30

Round: Technical Interview
Experience: Last year project
Tips: Do it. Dont purchase the project and show

Round: HR Interview
Experience: Prepare about myself

College Name: Dr D.Y.Patil University

I applied via Company Website and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About cloud services, difference between azure and aws?
  • Q2. What is sql,mysql and no sql?
  • Ans. 

    SQL is a relational database management system, MySQL is an open-source RDBMS, and NoSQL is a non-relational database management system.

    • SQL is used to manage relational databases and is based on the relational model.

    • MySQL is an open-source RDBMS that uses SQL as its query language.

    • NoSQL is a non-relational database management system that does not use SQL and is used for unstructured data.

    • NoSQL databases are often used

  • Answered by AI
  • Q3. What is Virtual Machine, how it is helpful in current cloud environment?
  • Ans. 

    A virtual machine is a software emulation of a physical computer that can run multiple operating systems on a single physical machine.

    • Virtual machines allow for efficient use of hardware resources by allowing multiple operating systems to run on a single physical machine.

    • They provide a secure and isolated environment for running applications, as each virtual machine is completely independent of the others.

    • Virtual machi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied for this profile internally, as i was working with xerox earlier also but in a non-technical profile, so applied 2-3 times in internal job postings, luckily i cracked the interview in my 3rd attempt, i would like to say that never give up just keep on trying

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Feb 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. How you solve palindrome Reverse an string
  • Ans. 

    To solve a palindrome, compare the string with its reverse. To reverse a string, iterate through it in reverse order.

    • Iterate through the string in reverse order to create the reversed string.

    • Compare the original string with the reversed string to check if it is a palindrome.

    • Handle cases where the input string is empty or null.

  • Answered by AI
  • Q2. Revers a string
  • Ans. 

    Reverse a string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end to reverse the string

    • Return the reversed string

  • Answered by AI
  • Q3. Multiple jagged array how to iterate
  • Ans. 

    Use nested loops to iterate through each array and each element in a jagged array of strings.

    • Use a nested loop to iterate through each array in the jagged array

    • Within the nested loop, iterate through each element in the current array

    • Access each element using the indices of the arrays

  • Answered by AI
  • Q4. What is static value
  • Ans. 

    Static value is a value that remains constant and does not change.

    • Static value does not vary or fluctuate.

    • It remains the same regardless of external factors.

    • Examples include mathematical constants like pi (π) or physical constants like the speed of light.

  • Answered by AI
  • Q5. How to use debugging
  • Ans. 

    Debugging is the process of identifying and fixing errors in code to ensure it runs smoothly.

    • Use print statements to track the flow of the program and identify where the error occurs

    • Utilize debugging tools like breakpoints to pause the program at specific points and inspect variables

    • Step through the code line by line to understand the execution flow and pinpoint the issue

    • Check for syntax errors, logical errors, and run

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There were 2 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. What is sales and marketing
  • Ans. 

    Sales and marketing are two interconnected activities that aim to promote and sell products or services to customers.

    • Sales involves the process of identifying potential customers, persuading them to purchase a product or service, and closing the sale.

    • Marketing encompasses activities such as market research, product development, advertising, and branding to create awareness and generate demand for the product or service...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be natural as your are.

I applied via Approached by Company and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Give your brief introduction , tell us something that is not mentioned in you resume.
  • Ans. Myself hritik , i am bca graduate from jnvu Jodhpur , i have been from last 3 years in this corporate sector , i have already worked with brands like canon , lumix , justdial , i have some more intrestes like reading novels , listing music , playing guitar sometimes singing as well , exploring places meeting new people.
  • Answered by Ritik Jawa
  • Q2. Tell us something about your last job experience , why do you think that you're fine for the placement , why we should give you this job.
  • Ans. Its been a glorious ride with the last brand i participated , i enjoyed my space and loved working with the team and mates , we have been from hard to harsh challenges and we saw them as opportunities to learn more and grow a lot. I m here because i had great time with last organization and now i wanna explore more , learn more soo i can grow myself more.
  • Answered by Ritik Jawa
  • Q3. Do you have any questions fo me.

Interview Preparation Tips

Topics to prepare for Canon Sales Executive interview:
  • Present G.k
  • Recent news , updates of company
  • Learn about your ownself
  • Knowledge about product they have
Interview preparation tips for other job seekers - Greet them with wishes as per your time schedule , be calm keep the flow with answers , be confident amd positive with your answers and this postiveness should be shown in your words and sentences and conversation , that confidence should shine from your face and eyes , make an good eye contact while delivering the interview , carry littel smile , interview is not about the knowledge you hold , it is all about the personality you have and how you handle situations and take decisions , be creative with some answers. And there you go , you'll definately got selected.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What do you hope to achieve in this role?
  • Ans. 

    I hope to gain valuable hands-on experience, develop new skills, and contribute positively to the team.

    • Gain practical experience in the field

    • Develop new skills and knowledge

    • Contribute positively to the team by completing tasks efficiently and effectively

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Be thorough with resume and projects you've added. All questions were just around resume

Interview Questionnaire 

4 Questions

  • Q1. What is your passion?
  • Q2. Is this opportunity relevant for your experience
  • Q3. How's you see when you are not happy with this profession after you join?
  • Q4. How you face a risky task when the company give?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply every opportunity.. just find and keep searching for your correct one✌️

VINSAK India Interview FAQs

How to prepare for VINSAK India 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 VINSAK India. The most common topics and skills that interviewers at VINSAK India expect are Sales Management, Packaging, Printing, Printing and Packaging and Customer Service.

Tell us how to improve this page.

Interview Questions from Similar Companies

HP India Interview Questions
4.1
 • 139 Interviews
Xerox Interview Questions
3.8
 • 21 Interviews
Canon Interview Questions
4.0
 • 17 Interviews
Ricoh Interview Questions
3.9
 • 9 Interviews
Epson Interview Questions
4.5
 • 7 Interviews
Aplab Interview Questions
3.6
 • 3 Interviews
View all

VINSAK India Reviews and Ratings

based on 14 reviews

4.3/5

Rating in categories

4.0

Skill development

4.3

Work-life balance

3.7

Salary

4.2

Job security

4.1

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 14 Reviews and Ratings
Senior Executive

Bangalore / Bengaluru

4-10 Yrs

Not Disclosed

Senior Executive HR & Administration

Navi Mumbai

3-7 Yrs

Not Disclosed

Mechanical Designer

Mumbai,

Navi Mumbai

5-7 Yrs

Not Disclosed

Explore more jobs
Service Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Field Service Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Store Incharge
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare VINSAK India with

Monotech Systems

3.8
Compare

TechNova Imaging Systems

4.2
Compare

Aplab

3.6
Compare

Ricoh

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