Upload Button Icon Add office photos
Engaged Employer

i

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

AppInventiv Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AppInventiv Technologies Senior Software Engineer Interview Questions and Answers for Experienced

Updated 1 Jan 2025

AppInventiv Technologies Senior Software Engineer Interview Experiences for Experienced

2 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(2 Questions)

  • Q1. What are hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

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

    Closure is a function that captures the variables from its surrounding scope, even after the surrounding function has finished executing.

    • Closure allows a function to access and manipulate variables from its outer function.

    • It maintains a reference to its outer function's scope, even after the outer function has returned.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { co

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to first confirm whether they are going to hire or just wasting your time and efforts

I applied via LinkedIn and was interviewed in May 2022.Β 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. Online E-Meet Discussion:- C# - Oops, Generics, IEnumerable, IEnumerator & IQueryable, Generic and Non-Generic List, Use of Static Keyword, Design Patterns, SOLID principles, Dependency Injection, Use of ...
Round 3 - One-on-oneΒ 

(1 Question)

  • Q1. Online E-Meet Discussion:- C# - Primitive and Reference type variables, what is string and how string stores in memory, Threading, Multithreading, Parallel Programming, Synchronization, locking mechanism,...

Interview Preparation Tips

Topics to prepare for AppInventiv Technologies Senior Software Engineer interview:
  • C#
  • ASP.Net MVC
  • SQL Server
  • OOPS
  • Web Api
  • Entity Framework
  • asp.net core
Interview preparation tips for other job seekers - prepare well for the above questions and try to get deep knowledge of c# concepts defined above because interviewr asks anything and if you have complete knowledge of every concept you will be able to answer.

Senior Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. Duplicate Integer in Array Given an array ARR of size N, containi ... read more
asked in Visa
Q2. Given a grid containing 0s and 1s and source row and column, in h ... read more
asked in Capgemini
Q3. Kth Largest Number Problem Statement You are given a continuous s ... read more
asked in Mphasis
Q4. Trapping Rain Water Problem Statement Given a long type array/lis ... read more
Q5. Anagram Pairs Verification In this task, you need to verify if tw ... read more

Senior Software Engineer Jobs at AppInventiv Technologies

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021.Β There were 3 interview rounds.

Round 1 - Aptitude TestΒ 

Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.

Round 2 - TechnicalΒ 

(1 Question)

  • Q1. Interviewer will test your logic building capability with puzzel/coding and technical questions and experience discussion.
Round 3 - One-on-oneΒ 

(1 Question)

  • Q1. Its a normal discussion with HR about CTC and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - In TR interviewer are really good. They will help you and give hints. They mostly check if you have problem solving approch.

I applied via Approached by Company and was interviewed before Jun 2021.Β There were 2 interview rounds.

Round 1 - System testΒ 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - TechnicalΒ 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jun 2020.Β There were 4 interview rounds.

Interview QuestionnaireΒ 

1 Question

  • Q1. A c++ written round. It contains good questions on c++ related to exception handling, virtual table concepts, smart_ptrs , etc ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with your project.
Have decent but not great knowledge knowledge in DS/Algos
Know basics of system design.
Be good in your programming language.

I applied via Naukri.com and was interviewed in Dec 2020.Β There were 6 interview rounds.

Interview QuestionnaireΒ 

1 Question

  • Q1. Tech: Core Java concepts, difference between ArrayList and LinkedList, types of functional testing, CI/CD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear and crisp with your answers. Have a complete clarity with your aspirations and role based responsibilities.

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

Interview QuestionnaireΒ 

1 Question

  • Q1. Depends on role. I gave interview related to SRE devops. Brush up basics related to Jenkins splunk kubernetes python kafka prometheus docker etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on basics and fluent, confident when answering. In total 5 rounds including HR

I applied via Recruitment Consultant and was interviewed in Aug 2021.Β There were 3 interview rounds.

Interview QuestionnaireΒ 

1 Question

  • Q1. Basics of JavaScript to the core!

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in basics... You can crack it easily!

I applied via Approached by Company and was interviewed in Jan 2022.Β There were 2 interview rounds.

Round 1 - TechnicalΒ 

(3 Questions)

  • Q1. Basic oops consept questions?
  • Q2. How map and un_ordered map works?
  • Ans. 

    Map and unordered_map are associative containers that store elements in key-value pairs.

    • Map is implemented as a balanced binary tree while unordered_map is implemented as a hash table.

    • Map stores elements in sorted order based on the key while unordered_map does not guarantee any specific order.

    • Map has a slower insertion and deletion time complexity than unordered_map.

    • Map is useful when we need to maintain elements in a...

  • Answered by AI
  • Q3. Frequency of digits in an array and store elements in new array in a sorted order such a way that more frequent one comes first and least frequent one at the end.
  • Ans. 

    Sort array of strings based on frequency of digits in each element.

    • Create a dictionary to store frequency of digits in each element.

    • Sort the array based on the frequency of digits using the dictionary.

    • Handle ties by sorting based on the original order of elements.

  • Answered by AI
Round 2 - BehavioralΒ 

(1 Question)

  • Q1. Typical manager question

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of opps and data structures, should be very cautious whatever you speak in manager round, it will back fire you

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(2 Questions)

  • Q1. Palindrome check for strings
  • Ans. 

    Check if a string is a palindrome

    • Iterate through each string in the array

    • For each string, compare characters from start and end to check if it's a palindrome

    • Return true if all strings are palindromes, false otherwise

  • Answered by AI
  • Q2. Basic java programming questions
Round 2 - TechnicalΒ 

(2 Questions)

  • Q1. Selenium test automation frameworks
  • Q2. Different types of automation frameworks used
  • Ans. 

    Various automation frameworks like keyword-driven, data-driven, hybrid, and behavior-driven are commonly used in software testing.

    • Keyword-driven framework: Tests are written using keywords and actions.

    • Data-driven framework: Tests are driven by data sets.

    • Hybrid framework: Combination of multiple frameworks.

    • Behavior-driven framework: Focuses on behavior of the system.

    • Page Object Model (POM): Organizes code by separating

  • Answered by AI

Skills evaluated in this interview

AppInventiv Technologies Interview FAQs

How many rounds are there in AppInventiv Technologies Senior Software Engineer interview for experienced candidates?
AppInventiv Technologies interview process for experienced candidates usually has 2 rounds. The most common rounds in the AppInventiv Technologies interview process for experienced candidates are One-on-one Round, Resume Shortlist and Technical.
How to prepare for AppInventiv Technologies Senior Software Engineer 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 AppInventiv Technologies. The most common topics and skills that interviewers at AppInventiv Technologies expect are Objective C, SQLite, Swift, Cocoa and XCode.
What are the top questions asked in AppInventiv Technologies Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the AppInventiv Technologies Senior Software Engineer interview for experienced candidates -

  1. Online E-Meet Discussion:- C# - Oops, Generics, IEnumerable, IEnumerator & IQu...read more
  2. Online E-Meet Discussion:- C# - Primitive and Reference type variables, what i...read more
  3. What is the process to remove duplicates from a stri...read more

Tell us how to improve this page.

AppInventiv Technologies Senior Software Engineer Interview Process for Experienced

based on 1 interview

Interview experience

1
Β Β 
Bad
View more
AppInventiv Technologies Senior Software Engineer Salary
based on 192 salaries
β‚Ή6.6 L/yr - β‚Ή22 L/yr
7% less than the average Senior Software Engineer Salary in India
View more details

AppInventiv Technologies Senior Software Engineer Reviews and Ratings

based on 27 reviews

3.8/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.7

Salary

3.4

Job security

4.2

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 27 Reviews and Ratings
Software Engineer
280 salaries
unlock blur

β‚Ή3 L/yr - β‚Ή10 L/yr

Senior Software Engineer
192 salaries
unlock blur

β‚Ή6.6 L/yr - β‚Ή22 L/yr

Software Developer
130 salaries
unlock blur

β‚Ή3.6 L/yr - β‚Ή11.7 L/yr

Quality Analyst
55 salaries
unlock blur

β‚Ή3 L/yr - β‚Ή9.6 L/yr

Business Analyst
53 salaries
unlock blur

β‚Ή3.4 L/yr - β‚Ή10.9 L/yr

Explore more salaries
Compare AppInventiv Technologies with

Thomson Reuters

4.1
Compare

Chetu

3.2
Compare

EbixCash Limited

4.0
Compare

eClinicalWorks

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