Upload Button Icon Add office photos

Filter interviews by

App Innovation Technologies Interview Questions, Process, and Tips

Updated 25 Oct 2024

Top App Innovation Technologies Interview Questions and Answers

App Innovation Technologies Interview Experiences

Popular Designations

6 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - virtual interview 

(1 Question)

  • Q1. Introduce yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - I wouldn't recommend to anyone better off not applying. They first contacted me through call and got the basic information and introduction and then scheduled a virtual interview . The interview was the worst interview i have attended . I didn't even get to finish my introduction they just straight up started asking question that i have already answered during the call such as the role I'm interested in and my qualification and pass-out year . Then asked me how im gig to attend the face-to-face interview since I live in different place and few other unrelated passive aggressive stuffs and then at last told me they don't have any opening in the domain that i have applied. Which is not fine like i have already mentioned all those things during call if they didnt have opening they shouldn't have proceeded with the interview instead they scheduled a interview wasting time and energy . and throghout the interview they seemed passive aggressive.

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 (43)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is type script
  • Ans. 

    TypeScript is a superset of JavaScript that adds static typing and other features to help developers write more robust code.

    • TypeScript is developed and maintained by Microsoft.

    • It compiles down to plain JavaScript.

    • It supports modern JavaScript features like classes, interfaces, and modules.

    • TypeScript helps catch errors at compile time rather than runtime.

    • Example: defining types for variables, functions, and classes.

  • Answered by AI
  • Q2. What is directives
  • Ans. 

    Directives in Angular are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or transform the DOM element and its children.

    • Directives are used to create reusable components or add behavior to existing components.

    • There are three types of directives in Angular: component, structural, and attribute directives.

    • Examples of directives include ngIf, ngFor, ngStyle, and custom directi

  • Answered by AI
Round 2 - Coding Test 

Give one scenario and do in task in angualr

Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Personal details

Skills evaluated in this interview

Angular Developer Interview Questions asked at other Companies

Q1. How can you pass data between parent and child components?, what is component interaction
View answer (5)

QA Engineer Interview Questions & Answers

user image Pavithran G

posted on 20 Jun 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Indeed and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Abt manual testing
Round 2 - Technical 

(2 Questions)

  • Q1. Verification vs validation
  • Ans. 

    Verification is ensuring the product is built right, while validation is ensuring the right product is built.

    • Verification focuses on process, validation focuses on product

    • Verification involves static testing, validation involves dynamic testing

    • Verification is done before validation

    • Example: Verification - reviewing requirements, Validation - testing the actual product

  • Answered by AI
  • Q2. Abt automation tedting
Round 3 - One-on-one 

(1 Question)

  • Q1. Find element vs find elements
  • Ans. 

    find element vs find elements in Selenium WebDriver

    • find element is used to locate a single web element on a web page

    • find elements is used to locate multiple web elements on a web page

    • find element returns a single WebElement object, while find elements returns a list of WebElement objects

  • Answered by AI

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic details , oops,net,c#

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)

App Innovation Technologies interview questions for popular designations

 Software Developer

 (2)

 Angular Developer

 (1)

 DOT NET Developer

 (1)

 Reactjs Developer

 (1)

 QA Engineer

 (1)

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of python Technical question about python
  • Q2. Technical programming from loop statement

Interview Preparation Tips

Interview preparation tips for other job seekers - 2yrs bond and low salary.better to go for delivery boy

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 (43)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview before Apr 2023.

Round 1 - Coding Test 

Implement CRUD operations using public APIs in React JS

Round 2 - HR 

(1 Question)

  • Q1. Basic questions like: 1. previous salary 2. salary negotiation for the job opening

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (2)

Interview questions from similar companies

I appeared for an interview in Aug 2017.

Interview Questionnaire 

7 Questions

  • Q1. Implement Merge Sort.
  • Ans. 

    Merge Sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q2. Given a BST containing distinct integers, and a number ‘X’, find all pairs of integers in the BST whose sum is equal to ‘X’.
  • Ans. 

    Find pairs of integers in a BST whose sum is equal to a given number.

    • Traverse the BST and store the values in a hash set.

    • For each node, check if (X - node.value) exists in the hash set.

    • If yes, add the pair (node.value, X - node.value) to the result.

    • Continue traversal until all nodes are processed.

  • Answered by AI
  • Q3. Given a set of time intervals in any order, merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals.
  • Ans. 

    Merge overlapping time intervals into mutually exclusive intervals.

    • Sort the intervals based on their start time.

    • Iterate through the intervals and merge overlapping intervals.

    • Output the mutually exclusive intervals.

    • Example: [(1,3), (2,6), (8,10), (15,18)] -> [(1,6), (8,10), (15,18)]

  • Answered by AI
  • Q4. What are the different types of hashing? Suggest an alternative and a better way for Linear Chaining.
  • Ans. 

    Different types of hashing and alternative for Linear Chaining

    • Different types of hashing include division, multiplication, and universal hashing

    • Alternative for Linear Chaining is Open Addressing

    • Open Addressing includes Linear Probing, Quadratic Probing, and Double Hashing

  • Answered by AI
  • Q5. Implement AVL Tree.
  • Ans. 

    An AVL tree is a self-balancing binary search tree where the heights of the left and right subtrees differ by at most one.

    • AVL tree is a binary search tree with additional balance factor for each node.

    • The balance factor is the difference between the heights of the left and right subtrees.

    • Insertion and deletion operations in AVL tree maintain the balance factor to ensure the tree remains balanced.

    • Rotations are performed ...

  • Answered by AI
  • Q6. Minimum number of squares whose sum equals to given number n.
  • Ans. 

    Find the minimum number of squares whose sum equals to a given number n.

    • Use dynamic programming to solve the problem efficiently.

    • Start with finding the square root of n and check if it is a perfect square.

    • If not, then try to find the minimum number of squares required for the remaining number.

    • Repeat the process until the remaining number becomes 0.

    • Return the minimum number of squares required for the given number n.

  • Answered by AI
  • Q7. Insertion sort for a singly linked list.
  • Ans. 

    Insertion sort for a singly linked list.

    • Traverse the list and compare each node with the previous nodes

    • If the current node is smaller, swap it with the previous node

    • Repeat until the end of the list is reached

    • Time complexity is O(n^2)

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 coding questions (no penalty for wrong submission) and 20 Multiple Choice Questions(with negative marking). We were given 90 minutes to solve them. MCQs were based on Data Structures, OS, CN, C outputs, OOP etc.
Tips: Experience in Competitive Programming might help in solving coding questions. No constraints were mentioned and detailed Instructions related to problem were stated vaguely. So code carefully.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: The interviewer asked me to introduce myself and a brief introduction of the projects that I have done. She first asked me questions related to my project. After that she moved on to the data structures part.
Tips: Take your time to approach the problems and if the question is not clear ask the interviewer to explain it again.

Round: Technical Interview
Experience: The interviewer asked me about how my previous round went. After that, he asked me to introduce myself and a brief introduction of the projects that I have done. He first asked me a few questions related to my project. Then he moved on to the data structures part. In this round the interviewer gave me strict time limit for coding the solution on paper for each problem and as soon as I was done coding he gave me 2-3 minutes every time to find errors and debug my code.
Tips: Do not panic even if the interviewer sets time limit while solving problems. If the question is not clear ask the interviewer to explain it again.

College Name: The LNM Institute Of Information Technology, Jaipur

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Yourself
  • Q2. How do you feel about working nights and weekends?
  • Q3. I will try to complete my tasks within weekdays effectively and efficiently to avoid weekand night work.
  • Q4. What is the difference b/w confidence and over confidence?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tech mahendra company is a very efficent work hard and if you have a growth of employees skills and sincearly work hard

Interview Questionnaire 

1 Question

  • Q1. Spring IOC , bean scopes, Tomcat server questions , SpringBoot questions Dependency questions, Maven questions

Interview Questionnaire 

1 Question

  • Q1. In 1st round they asked aptitude questions And 2nd round was an technical hr interview in this they asked oops concepts and basic C programming

App Innovation Technologies Interview FAQs

How many rounds are there in App Innovation Technologies interview?
App Innovation Technologies interview process usually has 2 rounds. The most common rounds in the App Innovation Technologies interview process are Technical, Coding Test and HR.
How to prepare for App Innovation Technologies 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 App Innovation Technologies. The most common topics and skills that interviewers at App Innovation Technologies expect are Java, Computer Science, Core PHP, Laravel and Android.
What are the top questions asked in App Innovation Technologies interview?

Some of the top questions asked at the App Innovation Technologies interview -

  1. what is type scr...read more
  2. what is directi...read more
  3. Verification vs validat...read more

Tell us how to improve this page.

App Innovation Technologies Interview Process

based on 7 interviews

Interview experience

2.4
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

App Innovation Technologies Reviews and Ratings

based on 27 reviews

2.3/5

Rating in categories

2.5

Skill development

1.7

Work-life balance

2.6

Salary

1.9

Job security

1.8

Company culture

2.5

Promotions

1.8

Work satisfaction

Explore 27 Reviews and Ratings
Business Analyst
8 salaries
unlock blur

₹1 L/yr - ₹6.5 L/yr

IOS Developer
7 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Softwaretest Engineer
6 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

DOT NET Developer
6 salaries
unlock blur

₹2.6 L/yr - ₹5.6 L/yr

Android Developer
5 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Explore more salaries
Compare App Innovation Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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