Upload Button Icon Add office photos

Filter interviews by

IVTL Infoview Technologies Software Engineer Interview Questions and Answers

Updated 19 Jul 2024

IVTL Infoview Technologies Software Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Anna University and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, speed, logical questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Background and coding knowledge

I applied via Campus Placement and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Define marker interface
  • Ans. 

    A marker interface is an interface with no methods used to mark a class as having a particular property or behavior.

    • Marker interfaces are used to provide metadata about a class.

    • They are often used in frameworks and libraries to indicate that a class should be treated in a special way.

    • Examples include Serializable, Cloneable, and Remote interfaces in Java.

    • Marker interfaces can also be used to enforce design patterns, su

  • Answered by AI
  • Q2. Define thread concurrency
  • Ans. 

    Thread concurrency refers to multiple threads executing simultaneously in a program.

    • Concurrency allows for efficient use of resources and can improve performance.

    • However, it can also lead to race conditions and other synchronization issues.

    • Synchronization mechanisms like locks and semaphores can be used to manage concurrency.

    • Examples of concurrent programming languages include Java and Python's threading module.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up with your basics on JAVA

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Full c concept MCQ with IQ and Computaional Thinking

Round 2 - Technical 

(2 Questions)

  • Q1. Number system convertion in c
  • Ans. 

    Number system conversion in C involves converting numbers between different bases, such as decimal to binary or hexadecimal.

    • Use functions like itoa() to convert integers to strings in different bases

    • Use strtol() to convert strings to integers in different bases

    • Remember to specify the base when converting numbers

  • Answered by AI
  • Q2. Pointers, struct, Data Structure
Round 3 - One-on-one 

(2 Questions)

  • Q1. Decimal to Binary Convertion
  • Q2. Hexa Decimal to Binary convertion

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Create a procedure
  • Ans. 

    Create a procedure to sort an array of integers in ascending order.

    • Declare a function that takes an array of integers as input

    • Implement a sorting algorithm like bubble sort, selection sort, or insertion sort

    • Return the sorted array

  • Answered by AI
  • Q2. Create xml and declare xml
  • Ans. 

    Creating and declaring XML involves defining the structure and content of the XML document.

    • Define the XML version and encoding at the beginning of the document

    • Declare the root element and any nested elements with opening and closing tags

    • Include attributes within the opening tag to provide additional information

    • Use self-closing tags for elements without content

    • Example: Harry Potter

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. DevOps tools related questions
  • Q2. And python programming questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 5 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. Introducing your self, and some basic technical questions.
Round 3 - Technical 

(2 Questions)

  • Q1. Basic core java questions like 1. Why object oriented? 2. Oops concept 3.diffrence between method overloading and overriding 4.static members 5.Occurance of a string 6.why immutable string is? 7.construc...
  • Q2. Basic program in array
Round 4 - Behavioral 

(1 Question)

  • Q1. 1. How to fetching data from html 2. Service about rest API 3. Difference between doget and dopost 4. Sql sub query 5. Collection question
Round 5 - HR 

(1 Question)

  • Q1. Basic question about company and role

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence when give your interview.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is data warehousing
  • Ans. 

    Data warehousing is the process of collecting, storing, and managing data from various sources for analysis and reporting.

    • Data warehousing involves extracting data from multiple sources

    • Data is then transformed and loaded into a central repository

    • The data can be used for analysis, reporting, and decision-making

    • Examples include data warehouses used by businesses to analyze sales data

  • Answered by AI

Skills evaluated in this interview

Round 1 - Coding Test 

Topics:
Python, Django, MySQL, Automation, Technical questions

Round 2 - Technical 

(3 Questions)

  • Q1. Topics: Python, Django, MySQL, Automation, Technical questions
  • Q2. Explain Django Architecture
  • Ans. 

    Django follows Model-View-Controller (MVC) architectural pattern.

    • Django has a high-level architecture that follows the Model-View-Controller (MVC) architectural pattern.

    • The Model layer represents the database schema and business logic.

    • The View layer is responsible for rendering the templates and presenting the data to the user.

    • The Controller layer handles the user's input and interacts with the Model and View layers.

    • Dj...

  • Answered by AI
  • Q3. Difference between XML and JSON
  • Ans. 

    XML is a markup language while JSON is a lightweight data interchange format.

    • XML uses tags to define elements while JSON uses key-value pairs.

    • XML is more verbose and complex than JSON.

    • JSON is easier to read and parse than XML.

    • XML supports namespaces and validation while JSON does not.

    • XML is widely used in web services and document exchange while JSON is preferred for data exchange between applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Python Django
Showcase your skills

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online test to check our mathematical ability and logical reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Online test and also one to one from lead engineers
Round 3 - HR 

(1 Question)

  • Q1. Salary and travelling related details if finalized
Round 4 - One-on-one 

(1 Question)

  • Q1. Face to face virtual interview from manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge about coding and basics and be confident

IVTL Infoview Technologies Interview FAQs

How many rounds are there in IVTL Infoview Technologies Software Engineer interview?
IVTL Infoview Technologies interview process usually has 1-2 rounds. The most common rounds in the IVTL Infoview Technologies interview process are Technical, Aptitude Test and One-on-one Round.
What are the top questions asked in IVTL Infoview Technologies Software Engineer interview?

Some of the top questions asked at the IVTL Infoview Technologies Software Engineer interview -

  1. Define marker interf...read more
  2. Define thread concurre...read more
  3. background and coding knowle...read more

Tell us how to improve this page.

IVTL Infoview Technologies Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
IVTL Infoview Technologies Software Engineer Salary
based on 72 salaries
₹10 L/yr - ₹20 L/yr
69% more than the average Software Engineer Salary in India
View more details

IVTL Infoview Technologies Software Engineer Reviews and Ratings

based on 27 reviews

3.2/5

Rating in categories

2.6

Skill development

3.4

Work-life balance

3.7

Salary

2.1

Job security

2.9

Company culture

3.4

Promotions

2.8

Work satisfaction

Explore 27 Reviews and Ratings
Junior Engineer
457 salaries
unlock blur

₹7 L/yr - ₹12.9 L/yr

Software Developer
241 salaries
unlock blur

₹4.5 L/yr - ₹14.5 L/yr

Engineer Trainee
102 salaries
unlock blur

₹4 L/yr - ₹10.1 L/yr

Junior Software Engineer
84 salaries
unlock blur

₹6 L/yr - ₹13.1 L/yr

Software Engineer
72 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

Explore more salaries
Compare IVTL Infoview Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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