Upload Button Icon Add office photos

Filter interviews by

APPLIED INFORMATICS INC Intern Interview Questions and Answers

Updated 2 Jun 2023

APPLIED INFORMATICS INC Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 2 Jun 2023

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2022. There were 5 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 - Aptitude Test 

Normal test general Math and tricks

Round 3 - Group Discussion 

A set of topics were provided and u had to select one of them and then deliver on the topic u selected for about 5 minutes

Round 4 - Assignment 

An assignment was given which u had to complete in given time and to be completed in any preferred coding language u know

Round 5 - Technical 

(1 Question)

  • Q1. In the last round you had to give the technical demo of your assignment and they might ask u few technical questions.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Neural Hack 6 - Round 1 - 7 DSA Question I have solved 5 only

Round 2 - Coding Test 

Round 2 - 5 DSA Problem I'm able to solve only 3 not able to top 100 but call for interview

Round 3 - Technical 

(5 Questions)

  • Q1. Self Introduction
  • Q2. Which in most efficient sorting algorithm amd why and what is it's time complexity.
  • Ans. 

    The most efficient sorting algorithm is Quick Sort due to its average time complexity of O(n log n).

    • Quick Sort is efficient due to its divide and conquer approach.

    • It has an average time complexity of O(n log n) and a worst-case time complexity of O(n^2).

    • Example: Sorting an array of integers using Quick Sort.

  • Answered by AI
  • Q3. What is OOPS and explain all with their examples
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve a problem

    • Key principles of OOPS include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: allows a class to...

  • Answered by AI
  • Q4. Explain your projects and what are the problem do you faced during development phase
  • Ans. 

    I developed a mobile app for tracking daily water intake and exercise routines.

    • Implemented user-friendly interface for easy input of water intake and exercise details

    • Integrated push notifications to remind users to drink water and exercise regularly

    • Used Firebase for backend data storage and retrieval

    • Faced challenges with optimizing app performance on older devices

    • Encountered issues with syncing data across multiple dev

  • Answered by AI
  • Q5. Write code for reversing array
  • Ans. 

    Code to reverse an array of strings

    • Use a loop to iterate through half of the array and swap elements at opposite ends

    • Create a temporary variable to hold one element during swapping

    • Ensure to handle odd length arrays by not swapping the middle element

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Explained companies policies
  • Ans. 

    Company policies outline rules and guidelines for employees to follow.

    • Company policies cover areas such as dress code, attendance, code of conduct, and benefits.

    • Examples of company policies include a policy on remote work, a policy on social media usage, and a policy on harassment.

    • Employees are expected to adhere to company policies to maintain a positive work environment and ensure compliance with legal regulations.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for your interview

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Normal level questions, 20 questions were there and they were little lengthy

Round 2 - Technical 

(2 Questions)

  • Q1. What are different types of transactions in SQL
  • Ans. 

    Different types of transactions in SQL include DML, DDL, DCL, and TCL.

    • DML (Data Manipulation Language) - Used for manipulating data in a database (e.g. INSERT, UPDATE, DELETE)

    • DDL (Data Definition Language) - Used for defining database schema (e.g. CREATE, ALTER, DROP)

    • DCL (Data Control Language) - Used for controlling access to data (e.g. GRANT, REVOKE)

    • TCL (Transaction Control Language) - Used for managing transactions

  • Answered by AI
  • Q2. Difference between truncate and delete
  • Ans. 

    Truncate is a DDL command that removes all rows from a table, while delete is a DML command that removes specific rows.

    • Truncate is faster and uses less system resources compared to delete.

    • Truncate resets the identity seed of the table, while delete does not.

    • Truncate cannot be rolled back, while delete can be rolled back using a transaction.

    • Truncate does not fire triggers, while delete does.

    • Truncate is not logged in the

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

1 hour test contains 2 coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Delete a node from Singly and doubly linked list
  • Ans. 

    To delete a node from a singly or doubly linked list, update the pointers of the previous and next nodes.

    • For a singly linked list, update the next pointer of the previous node to skip the node to be deleted.

    • For a doubly linked list, update the next pointer of the previous node and the previous pointer of the next node to skip the node to be deleted.

  • Answered by AI
  • Q2. Validate an email using regex pattern
  • Ans. 

    Use regex pattern to validate an email address

    • Use regex pattern /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/

    • Ensure email has valid format with username, @ symbol, domain, and top-level domain

    • Test regex pattern against different email addresses for validation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the concepts thoroughly.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. List a few concepts you learnt in your previous internship ?

Interview Preparation Tips

Interview preparation tips for other job seekers - know your own background well, both technical as well as psychological.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 DSA questions were given

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept Like inheritance
  • Q2. Question mainly based on my projects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is thermal engineering
Round 2 - HR 

(1 Question)

  • Q1. Introduce yourself to us

Intern Interview Questions & Answers

Google user image Anonymous

posted on 23 Oct 2024

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

Leetcode question , gfg also

Round 2 - Technical 

(2 Questions)

  • Q1. Tell us about your self
  • Q2. Explain this project
  • Ans. 

    The project involved developing a mobile application for tracking daily water intake.

    • Developed a user-friendly interface for inputting water consumption

    • Implemented a feature to set daily water intake goals

    • Integrated notifications to remind users to drink water throughout the day

  • Answered by AI

Intern Interview Questions & Answers

Hexaware Technologies user image Rubikak Dr.NGP Itech

posted on 9 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Mission vision of the company
  • Q3. Agrement and relocation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was easy. It was basic question.

Round 2 - Group Discussion 

It was a bit diff as everyone was a bit aggressive

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was long and difficult.
  • Q2. Tel about all ml algo
  • Ans. 

    Machine learning algorithms are used to analyze data, make predictions, and automate decision-making processes.

    • ML algorithms can be categorized into supervised, unsupervised, and reinforcement learning.

    • Examples of ML algorithms include linear regression, decision trees, support vector machines, k-means clustering, and neural networks.

    • ML algorithms require labeled data for supervised learning and can learn patterns from

  • Answered by AI

Skills evaluated in this interview

APPLIED INFORMATICS INC Interview FAQs

How many rounds are there in APPLIED INFORMATICS INC Intern interview?
APPLIED INFORMATICS INC interview process usually has 5 rounds. The most common rounds in the APPLIED INFORMATICS INC interview process are Resume Shortlist, Aptitude Test and Group Discussion.

Tell us how to improve this page.

People are getting interviews through

based on 1 APPLIED INFORMATICS INC interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 34 Interviews
Google Intern Interview Questions
4.4
 • 23 Interviews
Infosys Intern Interview Questions
3.7
 • 22 Interviews
Deloitte Intern Interview Questions
3.8
 • 22 Interviews
IBM Intern Interview Questions
4.1
 • 14 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
View all

APPLIED INFORMATICS INC Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
12 salaries
unlock blur

₹2 L/yr - ₹11 L/yr

Software Developer
5 salaries
unlock blur

₹5 L/yr - ₹6.1 L/yr

Data Engineer
3 salaries
unlock blur

₹5.1 L/yr - ₹6.3 L/yr

Manager Talent Acquisition
3 salaries
unlock blur

₹4.8 L/yr - ₹5.2 L/yr

Front end Developer
3 salaries
unlock blur

₹1 L/yr - ₹6.5 L/yr

Explore more salaries
Compare APPLIED INFORMATICS INC with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview