Upload Button Icon Add office photos

Arms

Compare button icon Compare button icon Compare
4.0

based on 27 Reviews

Filter interviews by

Arms Intern Interview Questions and Answers

Updated 15 Feb 2024

Arms Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Digital, c programming, rtos, computer architecture

Round 2 - Technical 

(1 Question)

  • Q1. Computer Architecture RTOS ASM programming
Round 3 - Technical 

(1 Question)

  • Q1. C programming Verilog codes

Intern Interview Questions & Answers

user image Anonymous

posted on 7 Apr 2022

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 

Easy -medium

Round 3 - Technical 

(2 Questions)

  • Q1. Tech round 1 Basics about Computer Architecture
  • Q2. Basics about C++ concepts and system verilog and digital design ,flip flops

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Its okay if you dont know every answer,Just be through in basics and computer architecture,OS

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman CodingYou are given an array 'ARR' of Integers having 'N' ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

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 - 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

Arms Interview FAQs

How many rounds are there in Arms Intern interview?
Arms interview process usually has 3 rounds. The most common rounds in the Arms interview process are Technical, Aptitude Test and Resume Shortlist.
What are the top questions asked in Arms Intern interview?

Some of the top questions asked at the Arms Intern interview -

  1. Basics about C++ concepts and system verilog and digital design ,flip fl...read more
  2. Tech round 1 Basics about Computer Architect...read more
  3. Computer Architecture RTOS ASM programm...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Arms interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Arms Intern Salary
based on 4 salaries
₹3 L/yr - ₹15.5 L/yr
87% more than the average Intern Salary in India
View more details
Software Engineer
16 salaries
unlock blur

₹6.5 L/yr - ₹18.8 L/yr

Staff Engineer
9 salaries
unlock blur

₹33.4 L/yr - ₹50 L/yr

Verification Engineer
8 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Design Engineer
7 salaries
unlock blur

₹12 L/yr - ₹26 L/yr

Engineer
7 salaries
unlock blur

₹16 L/yr - ₹34.5 L/yr

Explore more salaries
Compare Arms with

Tata Motors

4.2
Compare

Mahindra & Mahindra

4.1
Compare

Bharat Forge

3.8
Compare

Ashok Leyland

4.1
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