Upload Button Icon Add office photos
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 UI Developer Interview Questions and Answers

Updated 3 Apr 2021

Innoviti Technologies Private Limited UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 3 Apr 2021

I applied via Referral and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions about my skills and ome technical

Interview Preparation Tips

Interview preparation tips for other job seekers - basic questions about skills set I mentioned in my resume and one technical round is there

Interview questions from similar companies

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

Nice one details with

Round 2 - Technical 

(2 Questions)

  • Q1. Java script based wuestionss
  • Q2. Dsa based questions
Round 3 - HR 

(2 Questions)

  • Q1. Normal infect arc toon and breifing
  • Q2. Nirmal interaction and briefing
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There are 3 questions. basic to medium level.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Introduction about yourself
  • Q2. Explain about your projects
  • Q3. Solve a Coding problem
  • Q4. Walk through project code
  • Ans. 

    I will walk through a project code to explain its structure and functionality.

    • Start by explaining the overall architecture of the project

    • Discuss the main components/modules and their interactions

    • Explain any key algorithms or data structures used

    • Highlight any design patterns or best practices implemented

    • Provide examples of specific code snippets to illustrate your points

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About oops dsa questions based on arrays
  • Q2. Sequencing substring
Round 1 - Aptitude Test 

The duration of this round was around 20 minutes and there were 40 questions in total. This round consisted of standard mathematical, logical aptitude questions. Aptitude questions based on directions, speed and time, profit loss, etc. were asked. Out of 40 questions, around 15 questions were diagram based questions like finding the odd one, predict the next pattern, etc.

Round 2 - Coding Test 

The Second Round is an Online coding test that lasts for around 30 minutes to 1 hour. It was held on the coder byte platform. There were around 5-6 MCQs and 1 Coding Question. MCQ Questions - Predict the output, find errors, Simple language-based questions etc. The Coding Question was from Arrays, Strings, etc. For Example, You are given a string like “ONE PLUS THREE MINUS TWO” and you will have to give output as “TWO”

They will give you a frontend role based on your performance in Interviews Rounds.

Round 3 - Technical 

(2 Questions)

  • Q1. Questions were related to Java Language, DSA and OOPS. Type of questions asked: 1. Simple Coding Problem with the implementation of SETS and HASH MAPS 2. OOPS Pillars 3. Explain each pillar of OOPS wit...
  • Q2. You may be asked a few questions related to CSS, Bootstrap (if mentioned in your resume) in Front End Dev Questions: 1. Media Query in CSS 2. Scroll and Height Adjust in CSS 3. Number of Columns in each...
Round 4 - HR 

(2 Questions)

  • Q1. This was a RESUME BASED Round of around 30 minutes and it started with your introduction. There will be a discussion related to the projects that you made. 1. Why did you make this project? 2. What all f...
  • Q2. There could be a few Behavioural and scenario-based questions like: 1. How will you handle conflict within the team? 2. What is more dangerous between shark and elephant? 3. How will you help your team ...

Interview Preparation Tips

Interview preparation tips for other job seekers - OOPS and DSA are the most important. You must be familiar with all the DSA and Language specific topics. They are expecting someone who is ready to learn new technologies. If you don’t know any topic, then simply say you don’t know it, don’t lie during the interview.

I was interviewed in May 2022.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was scheduled with the SDE-2, we started with the introduction than he jumped to the dsa questions. First question he asked me was leetcode 3 sum problem, we discussed the approach than I wrote the code for that problem. Second question was of arrays and maps I didn't remember the exact question but that was also some modified version of k sum subarray. Than he asked many questions related to oops, I answered most of them than he asked me for any qiuestions and we dropped the call.

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
  • Q2. 

    K Sum Subset Problem Statement

    You are provided with an array arr of size N and an integer K. Your objective is to compute the maximum sum of a subset of the array such that this sum does not exceed K.

    E...

  • Ans. Brute Force

    In this approach, we will iterate over all the possible subsets of the given array, and then we will find the maximum sum subset whose sum is not greater than K.

    The total number of subsets of an array is 2^N or 1 << N in the bitshift operator.

     

    Algorithm:

    • Set N as the size of the arr
    • Iterate i from 0 to 1 << N
      • Set currSum as 0
      • Iterate j from 0 to N
        • If i AND (1 << j) is not 0
          • Add arr[j] to cu...
  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

This round was arranged with the Engineering Manager, we started with the introduction then he asked me to explain my project, I did that. After that he asked me one pattern question, I coded that than he asked me one more array question of finding mean, mode, median, I partially solved that question. Than he asked me for any questions and we dropped the call.

  • Q1. 

    Diamond Pattern Grid Problem

    Create a grid pattern of size R rows and C columns, where each cell contains a diamond-like shape of size S. The diamond shape is made with characters ‘/’ and ‘\’ for the bord...

  • Ans. Brute Force

    Approach: Since each diamond’s size is (2 * s) * (2 * s). So the total size of the grid will be (2 * s * r) * (2 * s * c). So we will iterate in all the points on the grid and use some basic algebra(modular arithmetics) to find the diamond to which this point belongs. Then we can identify the type of location(i.e. either this point is a boundary or not) as we can divide the diamond into four equal parts(top-...

  • Answered Anonymously
  • Q2. 

    Mean, Median, and Mode Problem Statement

    Given an integer array ARR of size N, you need to compute the following three statistical measures:

    1. Mean: Implement the function mean() to calculate the mean o...
  • Ans. 

    I really didn't remember the eaxct approach that I used.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Agrasen Institute Of Technology. Eligibility criteriaNAMobiKwik interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Oops, Computer networks, Operating systems, projectsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 300 Questions from leetcode
Tip 2 : Prepare your project.

Application resume tips for other job seekers

Tip 1 : Add at least 4 projects.
Tip 2 : Add your coding profiles and GPA.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning and analytical,arthamatic

Round 2 - Assignment 

About my studies and my self

Round 3 - HR 

(3 Questions)

  • Q1. About database, commands, primary key, foreign key,joins, constraints
  • Q2. Based on SQL questions
  • Q3. And also my self and educational details

Interview Preparation Tips

Topics to prepare for Euronet Global Development Center SQL Developer interview:
  • Core Java
  • SQL
  • OOPS
Interview preparation tips for other job seekers - Yes, IT Industry is a big float form we can search the companies and get the job

I applied via Internshala and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions regarding my CV
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go with the flow and answer what they ask

I was interviewed in Nov 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I had the flexibility to schedule it according to my time zone as the internship was Singapore based so I scheduled it at 9 am in the morning. The environment was similar to pair programming where the interviewer was a software enginner at stripe and asked me to code on any IDE with my screen share enabled. He shared the question on some online coding platform so it depends on you whether you want to use the coding platform or your own IDE. My language was python. The question was to figure out the optimal way to set the servers so that the servers are down for the minimum. One interesting part was to write the unit tests according to check the code on various test cases. I didn't know unit testing in python that time so it left a bad impression definitely. Other than the interviewer was really nice. After the interview ended, he told me about my shortcomings and also told me to learn about unit tests and testing.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    The task is to determine whether two given strings form an anagram pair or not.

    • Check if the lengths of the two strings are equal. If not, they cannot be anagrams.

    • Create a frequency map of characters for both strings.

    • Compare the frequency maps of both strings. If they are equal, the strings are anagrams.

    • Return True if the strings are anagrams, False otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in SingaporeEligibility criteriaNoStripe interview preparation:Topics to prepare for the interview - Data Structures, System Design, REST APIs, AlgorithmsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Have a good LinkedIn profile
Tip 2 : Have good projects on Github
Tip 3 : Practice coding questions

Application resume tips for other job seekers

Tip 1 : In projects, mention the tech stack used
Tip 2 : Keep it simple and concise preferably 1 page

Final outcome of the interviewRejected

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

The first round is an aptitude assessment that consists of coding questions focused on dynamic programming, as well as medium to hard level aptitude and reasoning questions.

Round 2 - Coding Test 

The second round focuses on coding and consists of data structure and algorithm questions related to arrays, linked lists, basic Java concepts, strings, and project-based questions from the resume.

Round 3 - Coding Test 

The third round also consists of coding, which includes challenging data structures and algorithms questions based on graphs, trees, multithreading, and difficult SQL-based questions.

Round 4 - HR 

(2 Questions)

  • Q1. What are your short-term and long-term goals?
  • Ans. 

    My short-term goal is to enhance my skills in backend development and contribute effectively to the team. My long-term goal is to become a lead developer and work on innovative projects.

    • Short-term goal: Improve backend development skills

    • Short-term goal: Contribute effectively to the team

    • Long-term goal: Become a lead developer

    • Long-term goal: Work on innovative projects

  • Answered by AI
  • Q2. How do you approach solving a large problem within a limited timeframe?
  • Ans. 

    I break down the problem into smaller tasks, prioritize them, and focus on the most critical aspects first.

    • Break down the problem into smaller, more manageable tasks

    • Prioritize tasks based on importance and impact

    • Focus on critical aspects first to ensure progress

    • Regularly reassess and adjust the plan as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly, study data structures and algorithms as well as SQL, use your time wisely, think critically, remain calm, and take your time.

Innoviti Technologies Private Limited Interview FAQs

How to prepare for Innoviti Technologies Private Limited UI Developer 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 Innoviti Technologies Private Limited. The most common topics and skills that interviewers at Innoviti Technologies Private Limited expect are Ajax, CSS, HTML, JQuery and Javascript.

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 776 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
HighRadius Interview Questions
2.9
 • 181 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
Rupeek Interview Questions
3.7
 • 60 Interviews
Freecharge Interview Questions
4.0
 • 53 Interviews
Mobikwik Interview Questions
4.1
 • 47 Interviews
Paytm Money Interview Questions
3.2
 • 30 Interviews
Jupiter Money Interview Questions
3.3
 • 29 Interviews
Spice Money Interview Questions
4.0
 • 29 Interviews
View all

Fast track your campus placements

View all
Software Engineer
82 salaries
unlock blur

₹2.5 L/yr - ₹7.9 L/yr

Area Sales Manager
42 salaries
unlock blur

₹4.3 L/yr - ₹9.5 L/yr

QA Engineer
25 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

Razorpay

3.6
Compare

Payed

2.7
Compare

Mobikwik

4.0
Compare

Paytm

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