Upload Button Icon Add office photos

Filter interviews by

iOSys Software India Interview Questions and Answers for Experienced

Updated 16 Nov 2024

iOSys Software India Interview Experiences for Experienced

Popular Designations

1 interview found

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

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. 1. Tell me about yourself
  • Q2. 2. Tell me your design process and the approach you took
  • Q3. 3. Name one application you use daily and what you like about it
  • Q4. Do you think the UX designers and UI Designers work on the same things?
  • Ans. 

    No, UX designers focus on the overall user experience while UI designers focus on the visual aspects of the interface.

    • UX designers focus on the overall user experience, including user research, wireframing, and prototyping.

    • UI designers focus on the visual aspects of the interface, such as color schemes, typography, and layout.

    • Both UX and UI designers work together to create a seamless and user-friendly product.

    • For exam...

  • Answered by AI
  • Q5. What does your day look like?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from online resources

UI UX Developer Interview Questions asked at other Companies

Q1. Which are the familiar software tools and what do you use it for?
View answer (1)

Interview questions from similar companies

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Spiral Order Traversal of a Binary Tree Problem Statement

    Given a binary tree with 'N' nodes, your task is to print the nodes in spiral order traversal.

    Example:

    Input:
    The binary tree is represented i...
  • Ans. 

    Print nodes of a binary tree in spiral order traversal.

    • Use a queue to perform level order traversal of the binary tree.

    • Alternate between printing nodes from left to right and right to left at each level.

    • Handle null nodes represented by '-1' appropriately.

    • Example: For input '1 2 3 -1 -1 4 5 -1 -1 -1 -1', the output should be '1 3 2 4 5'.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Word Break Problem Statement

    You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

    The strings from A c...

  • Ans. 

    Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.

    • Iterate through all possible combinations of strings from the list to form the target string.

    • Use recursion to try different combinations of strings.

    • Check if the current combination forms the target string.

    • Return true if a valid combination is found, otherwise return false.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. Design an elevator system.
  • Ans. 

    Design an elevator system for efficient vertical transportation.

    • Divide building into zones to optimize elevator usage.

    • Implement algorithms for efficient elevator scheduling.

    • Include safety features like emergency stop buttons and overload sensors.

    • Consider user interface for passengers to select floors and monitor elevator status.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaNoMicrosoft interview preparation:Topics to prepare for the interview - Data structures, algorithms , low level system design , high level system design, problem solvingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Never give up
Tip 2 : Practice 
Tip 3 : Be positive

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Highlight skills and achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jul 2019.

Interview Questionnaire 

4 Questions

  • Q1. 1. Java questions basee on interfaces, Exception Handling, inheritance, Steam API;
  • Q2. 2. SQL questions related to joins, sub-queries, nth highest salary;
  • Q3.  3. Basic algorithms questions based on Arrays/Linked List.
  • Q4. 4. Puzzles based on basic aptitudes test.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for Java Developer. I had 4 rounds (all technical rounds). Each rounds comprises questions related to Java/Puzzles/Algorithms and my experience of project.

Go through your resume. Things should be relevant and one should have clear understanding of basics.

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is rotational shifts. What is web service flow. How will you check ports on Unix or Solaris machine.
  • Ans. 

    Rotational shifts refer to working in different shifts at different times. Web service flow is the sequence of steps involved in a web service request. Checking ports on Unix or Solaris machine involves using the netstat command.

    • Rotational shifts involve working in different shifts at different times, such as day shift, night shift, and swing shift.

    • Web service flow involves a sequence of steps, such as sending a reques...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. Have heard of negative reviews from a number of people, but didn't believed. Unfortunately had to share same pain with them. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For java based profile, questions related to collections, usage of comparator, Class loading are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of computer science like data structure and algorithms. Have a detailed understanding of java basics

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120minutes
Round difficulty - Easy

It was an online MCQ's + coding round consisting of 20 MCQ’s and 1 coding problem.

  • Q1. Check whether there exists a loop in the linked list.
  • Ans. 

    Check for a loop in a linked list by using two pointers moving at different speeds.

    • Use two pointers, one moving at double the speed of the other.

    • If there is a loop, the two pointers will eventually meet at the same node.

    • Example: 1 -> 2 -> 3 -> 4 -> 5 -> 2 (loop back to 2), the two pointers will meet at node 2.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

The interview started at 8:30 pm in cc of Delhi Technological University itself and it was quite late. There was only a single interviewer and he asked me one coding question related to overflow of integers.

  • Q1. How can you check for integer overflow when multiplying two integers and ensure the result is stored correctly within an integer type?
  • Ans. 

    To check for integer overflow when multiplying two integers, use the properties of integer overflow and check if the result is within the valid range of the integer type.

    • Check if the signs of the two integers are the same to avoid overflow in case of multiplication.

    • Use the properties of integer overflow to detect if the result exceeds the maximum or minimum value of the integer type.

    • Consider using a larger data type or...

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was quite late . There was only one interviewer and I was asked about my family , education and future plannings and few questions related joining locations and documents etc.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Delhi Technological University. I applied for the job as SDE - 1 in PuneEligibility criteria6Amdocs interview preparation:Topics to prepare for the interview - I did a lot of practice of data structures and algorithms. I covered main topics such as arrays, strings, trees, linked lists, hashmaps, and recursion. Algorithms such as sorting, searching, BFS, DFS, and greedy were also covered by me.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Focus on data structures and algorithms part more. Tell the interviewer , starting from the brute force approach to the most optimal solution as this will give a good impression to the interviewer.

Application resume tips for other job seekers

To be honest, the problem-solving ability is the only thing that most companies care about. So you can manipulate your resume according to that. Mention your competitive programming handles in your resume and also other coding ranks or achievements which you have achieved.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How does you skills relate to this job
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and stay confident

I applied via Naukri.com and was interviewed in Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly technical and work related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a 2 round interview. First one was technical and second one was techno cum managerial round.
In first round, you will be asked about your technology/skill.....questions will be average but not tough. Interviewer will try to see whether you are technically strong.

After one day HR team will call you and will ask for scheduling a meeting with manager/delivery manager/delivery head
This round will be some what tougher than first round.
You will be asked many scenario based questions which include technical and HR type. If you are able to convince the manager....you are selected

Later you will get call from HR regarding the salary discussion

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1.  OOPS concepts
  • Q2. Data Structure basics questions
  • Q3. Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through campus placement
1) HirePro Test - Apti + Tech MCQS
2) Tech + HR interview

I applied via Walk-in and was interviewed before Mar 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core Java, Framework, SQL, J2EE usages, Real time analysis for improving current solutions, tools or ideas, Health care and insurance basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, express your thoughts with interviewer. Take some seconds of time prior explaining to question asked. Be expressive and use non-verbal communication gestures as most as you can while answer and correlate with your words.

iOSys Software India Interview FAQs

How many rounds are there in iOSys Software India interview for experienced candidates?
iOSys Software India interview process for experienced candidates usually has 1 rounds. The most common rounds in the iOSys Software India interview process for experienced candidates are One-on-one Round.
How to prepare for iOSys Software India interview for experienced candidates?
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 iOSys Software India. The most common topics and skills that interviewers at iOSys Software India expect are Javascript, SQL, Azure DevOps, CMS and CSS.
What are the top questions asked in iOSys Software India interview for experienced candidates?

Some of the top questions asked at the iOSys Software India interview for experienced candidates -

  1. Do you think the UX designers and UI Designers work on the same thin...read more
  2. Introduction and some technical questions was from SQL and oops that was asked ...read more
  3. Html and css questions was as...read more

Tell us how to improve this page.

iOSys Software India Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 869 Interviews
Google Interview Questions
4.4
 • 851 Interviews
Amdocs Interview Questions
3.7
 • 519 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
SAP Interview Questions
4.2
 • 285 Interviews
Adobe Interview Questions
3.9
 • 236 Interviews
View all

iOSys Software India Reviews and Ratings

based on 12 reviews

3.3/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.1

Salary

3.4

Job security

3.2

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 12 Reviews and Ratings
Software Developer
13 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

UI Developer
9 salaries
unlock blur

₹1 L/yr - ₹7.5 L/yr

Front end Developer
7 salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Web Developer
6 salaries
unlock blur

₹2.2 L/yr - ₹4 L/yr

Ai Ml Engineer
5 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Explore more salaries
Compare iOSys Software India with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

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