Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Veeline Media Technician Interview Questions and Answers

Updated 15 Feb 2025

Veeline Media Technician Interview Experiences

1 interview found

Technician Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. What is your name
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common first and last name

    • No middle name

  • Answered by AI
  • Q2. What is your father name
  • Ans. 

    My father's name is John Smith.

    • His first name is John

    • His last name is Smith

    • He goes by the nickname 'Jack'

    • He is a retired engineer

  • Answered by AI
  • Q3. What is your mother name
  • Ans. 

    My mother's name is Sarah.

    • Her name is Sarah

    • She is a loving and caring mother

    • She enjoys gardening and cooking

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Crf and sub Shop lesser and foaming machine and lagavag all plants

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Normal fill in the bkanks

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic questions
  • Q2. Introduction about yourself and go through your experience.
  • Ans. 

    I am a dedicated and experienced professional with a background in marketing and project management.

    • Over 5 years of experience in marketing and project management roles

    • Successfully led multiple marketing campaigns resulting in increased brand awareness

    • Managed cross-functional teams to deliver projects on time and within budget

    • Strong analytical and problem-solving skills

    • Proficient in data analysis and reporting tools su

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in your ability

Technician Interview Questions & Answers

Info Edge user image Sparsh Sabharwal

posted on 16 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Work problems, puzzle

Round 2 - Coding Test 

Linked list,hashtree

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

Find the nth number in a fibonacci series

Interview Questionnaire 

1 Question

  • Q1. Ask only in resume points
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Braring fiting electrician theory
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jun 2022. 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 Resume tips
Round 2 - Technical 

(5 Questions)

  • Q1. Previous working description
  • Ans. 

    I worked as a software engineer at XYZ company.

    • Developed and maintained software applications

    • Collaborated with cross-functional teams to identify and solve technical issues

    • Participated in code reviews and testing

    • Implemented new features and enhancements

    • Provided technical support to clients and end-users

  • Answered by AI
  • Q2. Manufacturing layout of related fields.
  • Ans. 

    Manufacturing layout refers to the arrangement of equipment, machinery, and personnel in a manufacturing facility.

    • The layout should be designed to optimize production efficiency and minimize waste.

    • Factors to consider include the flow of materials, the location of storage areas, and the placement of workstations.

    • Examples of manufacturing layouts include product-oriented, process-oriented, and cellular layouts.

  • Answered by AI
  • Q3. Describe Manufacturing tools
  • Ans. 

    Manufacturing tools are equipment used in the production of goods.

    • Manufacturing tools include machines such as lathes, milling machines, and drill presses.

    • Hand tools such as wrenches, pliers, and screwdrivers are also used in manufacturing.

    • Inspection tools such as calipers and micrometers are used to ensure quality control.

    • Robotics and automation tools are becoming increasingly common in modern manufacturing.

    • Examples o...

  • Answered by AI
  • Q4. Managerial questions
  • Q5. Six Sigma define DMAIC procedure
  • Ans. 

    DMAIC is a Six Sigma methodology used to improve processes by identifying and eliminating defects.

    • DMAIC stands for Define, Measure, Analyze, Improve, and Control

    • It is a data-driven approach to problem-solving

    • It helps in reducing variability and improving quality

    • Example: DMAIC can be used to improve the efficiency of a manufacturing process by identifying the root cause of defects and implementing solutions to eliminate

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all manufacturing tools in pratical form that needs to do practically on floor as well as in soft

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I had one interview for approx. an hour, it includes both Technical and HR round, well mostly technical. Interview starts with tell me something about yourself. Asked in detailed about algorithms/web based projects mentioned in CV, make sure that whatever you have written you have complete knowledge about it. Asked to code few basic algorithms questions. Do mention about small project if you have done related to web development.
If interviewer says if you want to ask any question, its always better to ask one or two question.

  • Q1. Can you introduce yourself?
  • Q2. What is a Binary Search Tree (BST)?
  • Ans. 

    A Binary Search Tree (BST) is a data structure where each node has at most two children, with the left child being less than the parent and the right child being greater.

    • Nodes in a BST are arranged in a hierarchical order where the left subtree of a node contains only nodes with keys less than the node's key, and the right subtree contains only nodes with keys greater than the node's key.

    • BST allows for efficient search...

  • Answered by AI
  • Q3. 

    Binary Search Tree Insertion

    Given the root node of a binary search tree and a positive integer, you need to insert a new node with the given value into the BST so that the resulting tree maintains the pr...

  • Ans. 

    Insert a new node with a given value into a binary search tree while maintaining the properties of a BST.

    • Traverse the BST starting from the root node and compare the value to be inserted with each node's value to determine the correct position for insertion.

    • Insert the new node as a leaf node in the appropriate position to maintain the BST properties.

    • Ensure that the resulting tree is a valid binary search tree by follow...

  • Answered by AI
  • Q4. 

    Delete Node in Binary Search Tree Problem Statement

    You are provided with a Binary Search Tree (BST) containing 'N' nodes with integer data. Your task is to remove a given node from this BST.

    A BST is a ...

  • Ans. 

    Delete a given node from a Binary Search Tree (BST) and return the inorder traversal of the modified BST.

    • Traverse the BST to find the node to be deleted.

    • Handle different cases like node with no children, one child, or two children.

    • Update the pointers of the parent node and child nodes accordingly.

    • Perform inorder traversal after deletion to get the modified BST.

  • Answered by AI
  • Q5. 

    Clone Linked List with Random Pointer Problem Statement

    Given a linked list where each node has two pointers: one pointing to the next node and another which can point randomly to any node in the list or ...

  • Ans. 

    Yes, the cloning of a linked list with random pointer can be accomplished without utilizing extra space.

    • Use a hashmap to store the mapping between original nodes and their corresponding cloned nodes.

    • Iterate through the original linked list to create the cloned nodes and update the hashmap.

    • Iterate through the original linked list again to set the next and random pointers of the cloned nodes using the hashmap.

    • Time comple...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPATimes Internet interview preparation:Topics to prepare for the interview - SQL, Algorithms, Data Structures, C++, PHPTime required to prepare for the interview - 6 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 : Must verify your CV from your seniors/batchmates. 
Tip 2 : Include all the projects, intern work or hall activities or anything you have done on your own which is related to or interest of company. If you know any back-end/front-end (javascript, php, mysql etc) language do mention. I think the cv shortlist was completely based on previous work and technical skills related to Web Development/Design mentioned in the CV.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Tips: Prepare for CAT. Be Fast. Develop a decent proficiency in English.

Round: Interview
Experience: There could be Multiple rounds. You will be grilled thoroughly on your CV. Logical Puzzle Solving skills will be put to test. Your common sense about the internet will also provide a boost.
Tips: Do not prepare. Be yourself. CV should not be exaggerated. Prepare a CV customized for the company.

General Tips: Be Yourself and Win it!
College Name: IIT KHARAGPUR
Motivation: Best in business.

Interview Questionnaire 

18 Questions

  • Q1. Introduce yourself.
  • Q2. Being from a non-CS background (Civil Engineering branch), he asked me which coding language i am best at
  • Q3. Find the second largest prime number from a given array of positive integers. Also return it's index in most optimal way
  • Ans. 

    Find the second largest prime number and its index from an array of positive integers.

    • Iterate through the array and check if each number is prime

    • Store the largest and second largest prime numbers found so far

    • Also store their indices

    • Return the second largest prime number and its index

  • Answered by AI
  • Q4. Given an array of positive and negative integers, find the first missing positive number in the most optimal way
  • Ans. 

    Find the first missing positive number in an array of positive and negative integers.

    • Sort the array in ascending order

    • Iterate through the sorted array and find the first positive number that is missing

    • If no positive number is missing, return the next positive number after the largest positive number in the array

  • Answered by AI
  • Q5. Which data structure would i use to program a jigsaw puzzle program and what methods would i use to solve the puzzle
  • Ans. 

    The data structure to program a jigsaw puzzle program would be a graph.

    • Use a graph data structure to represent the puzzle pieces and their connections.

    • Each puzzle piece can be represented as a node in the graph.

    • Edges between nodes represent the connections between puzzle pieces.

    • To solve the puzzle, use graph traversal algorithms like depth-first search or breadth-first search.

    • Apply puzzle-solving strategies like findin

  • Answered by AI
  • Q6. Questions based on my resume
  • Q7. What do i know about Times Internet and the work that happens in TIL
  • Ans. 

    Times Internet Limited (TIL) is a digital products company that operates various online platforms and services.

    • TIL is a subsidiary of Bennett Coleman & Co. Ltd (BCCL), which is India's largest media conglomerate.

    • TIL operates popular websites and apps like Times of India, Economic Times, Gaana, MX Player, and Cricbuzz.

    • TIL focuses on digital content, e-commerce, and technology solutions.

    • TIL has a diverse portfolio of...

  • Answered by AI
  • Q8. Why was i opting for a job as software developer though i was from Civil Engineering background
  • Ans. 

    I transitioned to software development due to my passion for coding and problem-solving.

    • I discovered my interest in coding during my civil engineering studies

    • I took online courses and attended coding bootcamps to learn software development skills

    • I completed projects and internships in software development to gain practical experience

    • I enjoy the creativity and problem-solving aspects of software development

  • Answered by AI
  • Q9. Asked me questions based on my CV
  • Q10. If a person travels from point A to point B at 20 km/h and returns at 30 km/h, calculate the average speed without using pen and paper.
  • Ans. 

    The average speed can be calculated by taking the harmonic mean of the two speeds.

    • To calculate the harmonic mean, divide the sum of the speeds by the reciprocal of the sum of their reciprocals.

    • In this case, the harmonic mean can be calculated as 2/(1/20 + 1/30) = 24 km/h.

  • Answered by AI
  • Q11. Asked the above question with different speeds to travelling
  • Q12. Given 8 balls of the same properties and one of these balls is defective and is heavier than the others. Calculate the minimum no. of steps to find the defective ball
  • Ans. 

    The minimum number of steps to find the defective ball is 2.

    • Divide the 8 balls into 3 groups of 3, 3, and 2 balls.

    • Compare the weights of the two groups of 3 balls.

    • If one group is heavier, divide it into 2 balls and compare their weights.

    • If the two balls have different weights, the heavier ball is the defective one.

    • If the two balls have the same weight, the remaining ball in the first group of 3 is the defective one.

  • Answered by AI
  • Q13. Asked the above question, but this time we don't know whether the defective ball is heavier or lighter than the others
  • Q14. 20 red balls and 16 blue balls are present in a bag. 2 balls are removed, if they are of the same color, then they are replaced by a red ball. If they are of different color, then they are replaced with a...
  • Q15. What is polymorphism with examples
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is achieved through method overriding and method overloading.

    • Method overriding allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

    • Method overloading allows multiple methods with the same name but different parameters ...

  • Answered by AI
  • Q16. What is operator overloading?. Give an example
  • Ans. 

    Operator overloading is the ability to redefine operators for custom classes.

    • Allows operators to be used with custom classes

    • Example: '+' operator can be used to concatenate strings

    • Can improve readability and simplify code

  • Answered by AI
  • Q17. Differentiate between method overloading and method overriding
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name, return type, and parameters as a method in its superclass.

    • Method overloading is achieved within the same class.

    • Method overriding occurs in a subclass that inherits from a superclass.

    • Method overloading is determined at compile-time based on the number, type, an...

  • Answered by AI
  • Q18. Do you have any question for us?

Interview Preparation Tips

Round: Test
Experience: The test was of moderate level, the coding question was easy if all the boundary questions were properly considered.
Tips: 1. Practice questions on Geekquiz.
2. Practice coding problems. There are various websites like HackerRank, HackerEarth etc. which have a lot of coding problems.
Duration: 90 minutes
Total Questions: 22

Round: Technical Interview
Experience: The interviewer was friendly and he was interested in the implementation first and then the code.
Tips: Be thorough with various implementations and why they are in practice. Try to know the logic behind each implementation.

Round: Puzzle Interview
Experience: The interviewer was looking for a person interested in problem solving. He was looking forward for loud thinking.
Tips: If you don't know any answer, don't lose your cool. It is never necessary to answer all the questions in an interview. Be confident and think loud, so that if you are going the wrong way, the interviewer can assist you.

Round: HR Interview
Experience: This was the last round and just for formality. The interviewers were looking for a person who would fit in their working culture.
Tips: Be confident and always have a smile on your face. If you are selected for the HR interview, then there is a 90% chance that you would be selected.

General Tips: Be confident, think loudly, never panic and have a smile to your face always. You have already prepared hard for the recruitment process, it is just the confidence that matters. Don't lose hope, there are many opportunities for you.
Skills: Confidence, Communication, Puzzle Solving Capability, Algorithms And Data Structures, Basic C/C++
College Name: IIT Varanasi
Motivation: TIL has a wide range of products and the compensation is good
Funny Moments: The HR interview was more of a friendly talk and i shared my hobbies which led to a longer discussion.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Veeline Media Interview FAQs

How many rounds are there in Veeline Media Technician interview?
Veeline Media interview process usually has 1 rounds. The most common rounds in the Veeline Media interview process are Technical.

Recently Viewed

INTERVIEWS

LG Electronics

No Interviews

INTERVIEWS

Flipkart

No Interviews

INTERVIEWS

Amdocs

No Interviews

LIST OF COMPANIES

Keltron

Locations

INTERVIEWS

Keltron

No Interviews

INTERVIEWS

Keltron

No Interviews

INTERVIEWS

Amdocs

No Interviews

INTERVIEWS

Amdocs

No Interviews

INTERVIEWS

Subros

No Interviews

INTERVIEWS

Subros

No Interviews

Tell us how to improve this page.

Veeline Media Technician Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Info Edge Interview Questions
3.9
 • 321 Interviews
Secure Meters Interview Questions
4.1
 • 65 Interviews
Times Internet Interview Questions
3.6
 • 63 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
3M Interview Questions
4.2
 • 30 Interviews
View all
Veeline Media Technician Salary
based on 4 salaries
₹2.6 L/yr - ₹2.8 L/yr
16% less than the average Technician Salary in India
View more details

Veeline Media Technician Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

1.0

Salary

4.0

Job security

4.0

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Quality Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Purchase Executive
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Store Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Veeline Media with

Times Internet

3.6
Compare

Network 18

3.5
Compare

Zee Entertainment Enterprises

3.5
Compare

Times Group

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