Premium Employer

i

This company page is being actively managed by Innoviti Technologies Private Limited Team. If you also belong to the team, you can get access from here

Innoviti Technologies Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Innoviti Technologies Private Limited Java Intern Interview Questions and Answers

Updated 2 Apr 2024

Innoviti Technologies Private Limited Java Intern Interview Experiences

1 interview found

Java Intern Interview Questions & Answers

user image Anonymous

posted on 2 Apr 2024

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

DSA questions like list, map, etc.

Round 2 - One-on-one 

(1 Question)

  • Q1. Projects discussions and evaluation of your skills.

Interview questions from similar companies

I applied via Company Website

Interview Questionnaire 

2 Questions

  • Q1. Question related to security
  • Q2. Question related to Data Structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Should study about various data encryption algorithms. About spring security. Data structure

I applied via Company Website and was interviewed before Jun 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 - One-on-one 

(1 Question)

  • Q1. Machine learning and Java programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledege about the work you are presenting in front of them.

I applied via Company Website and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Data structures
  • Q2. Basics on oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Data Structures and oops concept in depth

Interview Questionnaire 

6 Questions

  • Q1. Strings
  • Q2. Java 8 features like lamba expressions stream API
  • Q3. Collections
  • Q4. Autoboxing and Unboxing
  • Q5. Generics
  • Q6. String manipulation problems
  • Ans. 

    String manipulation problems involve modifying or analyzing strings of characters.

    • Use built-in string methods like substring, replace, and split.

    • Regular expressions can be powerful tools for pattern matching and manipulation.

    • Be mindful of edge cases like empty strings and null values.

    • Consider the time and space complexity of your solution.

    • Practice with coding challenges on websites like LeetCode and HackerRank.

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by company and was interviewed in Dec 2021. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions. 1 was basic level. 2 was of medium level.

Round 2 - One-on-one 

(2 Questions)

  • Q1. An ambiguous problem statement was given. Asking relevant questions revealed the problem to be largest island in a binary matrix. Was asked to code on an ide. And reduce space complexity to O(1).
  • Q2. Maximum sum path from root to leaf in an N-ary tree. Was asked to design an appropriate data structure. Then code the solution in O(n) time and O(1) space.
Round 3 - One-on-one 

(3 Questions)

  • Q1. Through discuss of projects. Methods used.
  • Q2. First missing positive number in an array of integer in O(n) time O(1) space.
  • Ans. 

    Find first missing positive number in an array in O(n) time and O(1) space.

    • Traverse the array and mark the presence of each positive integer by changing the sign of the corresponding index.

    • Traverse the array again and return the index of the first positive integer.

    • If all integers are present, return the length of the array + 1.

    • Example: [3, 4, -1, 1] => mark 3rd and 4th index as negative => return 2.

    • Example: [1, 2, 0] =...

  • Answered by AI
  • Q3. Given an integer, print the relevant column name in an excel sheet. Ex: 1- A , 2-B.......... 26-Z , 27-AA, 28-AB........ Was asked code on an ide and test cases were given.
  • Ans. 

    Given an integer, print the relevant column name in an excel sheet.

    • Create a string array of alphabets from A to Z

    • Use modulo operator to get remainder and divide by 26 to get quotient

    • Append the corresponding alphabet to the result string

    • Reverse the result string

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and past experience.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Online Test: First was the online test for 1hr you have to solve 2 coding questions.(Street light coverage & Candy distribution) After clearing the coding round, HR called me scheduling for technical in...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - HR 

(2 Questions)

  • Q1. Introduce about yourself
  • Q2. About my qualification
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2023. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Find connected components in a graph
  • Ans. 

    Use Depth First Search (DFS) to find connected components in a graph

    • Start by initializing all vertices as unvisited

    • Iterate through each vertex and perform DFS to find connected components

    • Keep track of visited vertices to avoid revisiting

    • Example: For a graph with vertices {A, B, C} and edges {(A, B), (B, C)}, the connected components are {A, B, C}

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Design chess game
  • Ans. 

    Design a chess game with proper board setup, piece movements, and win conditions.

    • Create a 8x8 grid to represent the chess board

    • Assign initial positions to each type of chess piece (pawn, rook, knight, bishop, queen, king)

    • Implement rules for each piece's movement (e.g. pawn moves forward, rook moves horizontally/vertically)

    • Check for valid moves and capture opponent's pieces

    • Implement win conditions (checkmate, stalemate)

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

Exam to test reasoning and aptitude, and speed to answer them

Round 2 - Coding Test 

Dsa question easy to medium level

Round 3 - Behavioral 

(5 Questions)

  • Q1. Just culture fit question, and medium dsa questions
  • Q2. Print pyramid from Fibonacci sequence
  • Ans. 

    Print pyramid from Fibonacci sequence

    • Generate Fibonacci sequence up to a certain number

    • Use the Fibonacci numbers to create the pyramid structure

    • Print each row of the pyramid with appropriate spacing

  • Answered by AI
  • Q3. Linked list sort
  • Q4. Design SQL tables for library management system
  • Ans. 

    Design SQL tables for library management system

    • Create tables for books, authors, members, transactions, etc.

    • Use primary and foreign keys to establish relationships between tables

    • Include columns like book title, author name, member ID, due date, etc.

  • Answered by AI
  • Q5. Valid bracket dsa question

Skills evaluated in this interview

Innoviti Technologies Private Limited Interview FAQs

How many rounds are there in Innoviti Technologies Private Limited Java Intern interview?
Innoviti Technologies Private Limited interview process usually has 2 rounds. The most common rounds in the Innoviti Technologies Private Limited interview process are Assignment and One-on-one Round.

Tell us how to improve this page.

Innoviti Technologies Private Limited Java Intern Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Join Innoviti Technologies Private Limited

Interview Questions from Similar Companies

HighRadius Interview Questions
2.9
 • 184 Interviews
Razorpay Interview Questions
3.6
 • 154 Interviews
Rupeek Interview Questions
3.7
 • 61 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.6
 • 47 Interviews
Jupiter Money Interview Questions
3.3
 • 29 Interviews
Spice Money Interview Questions
4.0
 • 29 Interviews
Paytm Money Interview Questions
3.2
 • 27 Interviews
Verifone Interview Questions
3.3
 • 24 Interviews
View all

Fast track your campus placements

View all
Software Engineer
80 salaries
unlock blur

₹2.5 L/yr - ₹8.2 L/yr

Area Sales Manager
44 salaries
unlock blur

₹4.3 L/yr - ₹9.5 L/yr

QA Engineer
27 salaries
unlock blur

₹3.5 L/yr - ₹9.6 L/yr

Customer Support Executive
23 salaries
unlock blur

₹2.1 L/yr - ₹3.5 L/yr

Store Relationship Officer
21 salaries
unlock blur

₹2 L/yr - ₹3.1 L/yr

Explore more salaries
Compare Innoviti Technologies Private Limited with

HighRadius

2.9
Compare

AGS Transact Technologies

3.0
Compare

Rupeek

3.7
Compare

Hitachi Payment Services

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