Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by In Time Tec Visionsoft Team. If you also belong to the team, you can get access from here

In Time Tec Visionsoft Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

In Time Tec Visionsoft Interview Questions, Process, and Tips

Updated 24 Feb 2025

Top In Time Tec Visionsoft Interview Questions and Answers

View all 26 questions

In Time Tec Visionsoft Interview Experiences

Popular Designations

41 interviews found

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

30 subjective +30 aptitude

Round 2 - Coding Test 

Array, Linklist , strings

Round 3 - One-on-one 

(1 Question)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

    • Completed internships at tech companies like Google and Microsoft

  • Answered by AI

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

IN this section ask 60 aptitude qustion based on some computer science subject some qustions are on logic bulidng.

Round 2 - Coding Test 

In this round they give one DSA quation which one is solve in only 30 min. According to my the qustion was is easy.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
In Time Tec Visionsoft Interview Questions and Answers for Freshers
illustration image

Trainee Interview Questions & Answers

user image Anonymous

posted on 30 Apr 2024

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test had 3 question of difficulty Easy, Medium and Hard to solve in 2hrs. Platform was HackerRank.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on skills written in resume and projects mentioned and some scenario based questions.
  • Q2. SQL queries regarding scenarios
  • Q3. Questions on Javascript and Typescript

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your fundamentals very good also be ready to face challenges.

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops, concepts, array, strin code

Top In Time Tec Visionsoft Software Engineer Interview Questions and Answers

Q1. What is black box and white box testing
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

In Time Tec Visionsoft interview questions for popular designations

 Software Engineer

 (11)

 Software Developer

 (6)

 Junior Software Developer

 (6)

 Junior Software Engineer

 (2)

 Software Engineer Trainee

 (2)

 Junior Software Engineer Trainee

 (2)

 Senior Software Engineer

 (2)

 Junior Engineer

 (2)

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

Easy interview and designs pattern

Round 2 - Technical 

(1 Question)

  • Q1. Find kth elements in string
  • Ans. 

    Use a sorting algorithm to find the kth element in a string array.

    • Sort the array of strings using a sorting algorithm like quicksort or mergesort.

    • Return the kth element from the sorted array.

  • Answered by AI

Top In Time Tec Visionsoft Software Engineer Interview Questions and Answers

Q1. What is black box and white box testing
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Get interview-ready with Top In Time Tec Visionsoft Interview Questions

Software Engineer Interview Questions & Answers

user image Kartik Singh

posted on 31 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Networking,Operating system,Dsa,DBMS

Top In Time Tec Visionsoft Software Engineer Interview Questions and Answers

Q1. What is black box and white box testing
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Jobs at In Time Tec Visionsoft

View all

Software Developer Interview Questions & Answers

user image Swati Khandelwal

posted on 1 Oct 2024

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Percentages,Ratio,time,

Round 2 - Coding Test 

Arrays,Strings,Hashing,stacks

Interview Preparation Tips

Topics to prepare for In Time Tec Visionsoft Software Developer interview:
  • OOPS
  • DBMS
  • OS

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of Polymorphism
  • Ans. 

    Polymorphism in programming refers to the ability of a single function or method to operate on different data types.

    • There are two main types of polymorphism: compile-time (static) polymorphism and run-time (dynamic) polymorphism.

    • Compile-time polymorphism is achieved through function overloading and operator overloading.

    • Run-time polymorphism is achieved through inheritance and virtual functions.

    • Example of compile-time p...

  • Answered by AI

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are your biggest learnings from your career
  • Q2. How did you handle a different client

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

Fundamentals of abstract reasoning.

Round 2 - Coding Test 

Entry level linear data structure

Round 3 - Technical 

(1 Question)

  • Q1. Tree data structure
Round 4 - Technical 

(1 Question)

  • Q1. Projects discussion.
Round 5 - HR 

(1 Question)

  • Q1. Behavioral and life goal question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't come in this company. They will ruin your mental health

Junior Software Engineer Interview Questions asked at other Companies

Q1. If there are 10 ball 2 red, 5 blue ,3 orange and one ball is picked randomly what is probability that the ball picked is red?
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

In Time Tec Visionsoft Interview FAQs

How many rounds are there in In Time Tec Visionsoft interview?
In Time Tec Visionsoft interview process usually has 2-3 rounds. The most common rounds in the In Time Tec Visionsoft interview process are Technical, Coding Test and Aptitude Test.
How to prepare for In Time Tec Visionsoft 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 In Time Tec Visionsoft. The most common topics and skills that interviewers at In Time Tec Visionsoft expect are Javascript, SQL, Communication Skills, Python and Firmware.
What are the top questions asked in In Time Tec Visionsoft interview?

Some of the top questions asked at the In Time Tec Visionsoft interview -

  1. What is java What is class and object What is abstraction What is inheritance W...read more
  2. give angle betweeen hour hand and min hand art 12...read more
  3. Acid properties used in real life project mentioned in res...read more
How long is the In Time Tec Visionsoft interview process?

The duration of In Time Tec Visionsoft interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Payoda Technologies

No Jobs

INTERVIEWS

VDart

No Interviews

INTERVIEWS

Delhivery

No Interviews

SALARIES

Payoda Technologies

SALARIES

Payoda Technologies

INTERVIEWS

Leapex Logistics

No Interviews

SALARIES

Payoda Technologies

INTERVIEWS

CBRE

No Interviews

LIST OF COMPANIES

Payoda Technologies

Overview

Tell us how to improve this page.

In Time Tec Visionsoft Interview Process

based on 53 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.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
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Apisero Interview Questions
4.3
 • 64 Interviews
View all

In Time Tec Visionsoft Reviews and Ratings

based on 377 reviews

3.8/5

Rating in categories

4.0

Skill development

3.6

Work-life balance

3.4

Salary

3.9

Job security

3.9

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 377 Reviews and Ratings
Power Automate RPA Developer/ Sr. Engineer

Jaipur,

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

ServiceNow ITOM Support Engineer

Jaipur,

Bangalore / Bengaluru

3-6 Yrs

₹ 5.84988-5.5 LPA

MS Dynamics 365 Engineer/Sr. Engineer

Jaipur,

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
724 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
284 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Software Engineer
166 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare In Time Tec Visionsoft with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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