Upload Button Icon Add office photos

Filter interviews by

Vinculum Solutions Manual Testing Interview Questions and Answers for Freshers

Updated 3 Mar 2022

Vinculum Solutions Manual Testing Interview Experiences for Freshers

1 interview found

I applied via AmbitionBox

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am fresher I need platform to prove my ability

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given an array Reverse array
  • Ans. 

    Reverse array of strings

    • Iterate through the array and swap elements from start to end

    • Use two pointers, one at the beginning and one at the end, and swap elements until they meet

  • Answered by AI
  • Q2. Giaven a string Reverse string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() or loop through the string in reverse order

    • Create a new string and append characters from the original string in reverse order

    • Convert the string to an array of characters, reverse the array, and then join it back into a string

  • Answered by AI
  • Q3. Given array find sum of all elements
  • Ans. 

    Calculate sum of all elements in a given array of strings

    • Iterate through the array and convert each element to integer before adding to sum

    • Handle edge cases like empty array or non-numeric elements

    • Return the final sum after iterating through all elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 - Aptitude Test 

Duration:30 min
Question from percentage,ratios ,HCF/LCM etc.,
Logical reasoning, English

Round 3 - Coding Test 

(1 Question)

  • Q1. Reverse a string by making groups of given 'm' characters
  • Ans. 

    Reverse a string by grouping 'm' characters together

    • Iterate through the string in groups of 'm' characters

    • Reverse each group of 'm' characters

    • Concatenate the reversed groups to get the final reversed string

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. General HR questions
  • Q2. What is your family background?
  • Q3. Why should we hire you?

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me something about Data Sturcture
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures can be linear (arrays, linked lists) or non-linear (trees, graphs)

    • Common operations on data structures include insertion, deletion, and searching

    • Examples of data structures include stacks, queues, hash tables, and binary trees

  • Answered by AI

Skills evaluated in this interview

I applied via Internshala and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Includes basic aptitude question with additional questions based on coding languages fundamentals.....

Round 3 - Technical 

(2 Questions)

  • Q1. Question were based on oops concepts. My next question was write a code of binary search and explain it and lastly I was asked an aptitude question ...
  • Q2. Write a code of binary search and explain it
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide the array into two halves

    • Compare the target value with the middle element

    • If the target value matches the middle element, return its position

    • If the target value is less than the middle element, search the left half of the array

    • If the target value is greater than the middle element, search the right half of the arra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do work on your aptitude and practise Data structures and algorithms...

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Dec 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

General aptitude and reasoning

Round 3 - Coding Test 

General coding questions

Round 4 - One-on-one 

(1 Question)

  • Q1. 2 medium coding questions, oops concepts and CS fundamentals
Round 5 - One-on-one 

(1 Question)

  • Q1. Linux basics, coding questions

I applied via Cocubes and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Most rounds were regarding English proficiency and 1 round regarding logical reasoning

Round 2 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, honest and humble in the interview. Prepare well for the interview and aptitude tests
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Programming on basics of C

Round 3 - Coding Test 

Programming on basics of C

Round 4 - HR 

(1 Question)

  • Q1. Salary details and location preference

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

  • Q1. DBMS Questions

    difference between delete and truncate.

    How to create and update a table.

  • Q2. Candies

    Prateek is a kindergarten teacher. He wants to give some candies to the children in his class. All the children stand in a line and each of them has a grade according to his or her performance in ...

  • Ans. Brute Force

    There can be four cases :

     

    CASE 1: STUDENTS[i - 1]  > STUDENTS[i]  < STUDENTS[i + 1]

    CASE 2: STUDENTS[i - 1]  < STUDENTS[i]  < STUDENTS[i + 1]

    CASE 3: STUDENTS[i - 1]  > STUDENTS[i]  > STUDENTS[i + 1]

    CASE 4: STUDENTS[i - 1]  < STUDENTS[i]  > STUDENTS[i + 1]

     

    1. For case 1, the ‘i’th child will get one candy.
    2. For case 2, the ‘i’th child will ge...
  • Answered by CodingNinjas
  • Q3. Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge sor...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteria8CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, apti , programming language , SETime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Vinculum Solutions Interview FAQs

How many rounds are there in Vinculum Solutions Manual Testing interview for freshers?
Vinculum Solutions interview process for freshers usually has 1 rounds. The most common rounds in the Vinculum Solutions interview process for freshers are HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Vinculum Solutions interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Manual Testing Interview Questions from Similar Companies

View all
Software Engineer
127 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Business Analyst
97 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Software Developer
61 salaries
unlock blur

₹3 L/yr - ₹9.2 L/yr

Senior Software Engineer
61 salaries
unlock blur

₹6 L/yr - ₹18 L/yr

Technical Lead
31 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Explore more salaries
Compare Vinculum Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview