Upload Button Icon Add office photos

Filter interviews by

Applied Research Works Interview Questions and Answers

Updated 26 Dec 2024

Applied Research Works Interview Experiences

Popular Designations

3 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Test case , project, test startergy
  • Q2. Agile , day to day work
Round 2 - Technical 

(2 Questions)

  • Q1. Hadle iframes , windows handle and window handles diffrerence
  • Q2. Oops related questions, compare 2 array min and max

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

What is medical coding, and why is it necessary?

Round 2 - One-on-one 

(1 Question)

  • Q1. Why you are interested into Medical Coding Field?

Junior Medical Coder Interview Questions asked at other Companies

Q1. What type of medicine given to patient in condition of myocardial
View answer (5)

Softwaretest Engineer Interview Questions & Answers

user image priyanka pramanik

posted on 16 May 2024

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

(1 Question)

  • Q1. Functional testing automation

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Interview questions from similar companies

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

It was an Aptitude test and Technical objective test of 60 minutes followed by a Coding test of 90 minutes.There was a 1 hour gap b/w the two tests.

  • Q1. 

    Count Derangements

    Determine the number of derangements possible for a set of 'N' elements. A derangement is a permutation where no element appears in its original position.

    Input:

    An integer 'T' repres...
  • Ans. 

    Count the number of derangements possible for a set of 'N' elements.

    • Derangement is a permutation where no element appears in its original position.

    • Use dynamic programming to calculate derangements efficiently.

    • Apply the formula: D(n) = (n-1) * (D(n-1) + D(n-2)), with base cases D(1) = 0 and D(2) = 1.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q3. 

    Common Elements Problem Statement

    Identify and output the common strings present in both given arrays of lowercase alphabets for each test case.

    Input:

    The first line contains an integer 'T' representin...
  • Ans. 

    The problem requires identifying and outputting common strings present in two arrays of lowercase alphabets for each test case.

    • Iterate through the elements of the second array and check if they are present in the first array.

    • Use a hash set or map to efficiently check for common elements.

    • Return the common strings in the order they appear in the second array.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question from DSA particulary Trees and after that some questions from OOPS were asked.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree.

    • Traverse the binary tree level by level, alternating the direction of traversal.

    • Use a queue to keep track of nodes at each level.

    • Append nodes to the result list based on the traversal direction.

    • Handle null nodes appropriately to maintain the spiral order.

    • Example: Input: 1 2 3 -1 -1 4 5, Output: 1 3 2 4 5

  • Answered by AI
  • Q2. What is the difference between an Abstract Class and an Interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface can only have constants and abstract methods.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to provide a common base for subclasses, while interfaces are used to define a contr...

  • Answered by AI
  • Q3. What is the static keyword in Java?
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an object of the class.

    • Static blocks are used to initialize static variables.

    • Example: public static int count = 0;

  • Answered by AI
  • Q4. What is the difference between a constructor and a method in Object-Oriented Programming?
  • Ans. 

    Constructor is a special method used to initialize objects, while a method is a regular function that performs a specific task.

    • Constructors are called automatically when an object is created, while methods need to be called explicitly.

    • Constructors have the same name as the class, while methods have unique names.

    • Constructors do not have a return type, while methods have a return type.

    • Example: Constructor - public ClassN...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 questions from DSA and after that some basic HR questions were asked.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the input string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Experience details and job responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication, good thought process, knowledge about the role applying for. aware about the company before appearing for any interview.

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: Questions about DS , CN and basic resume

Round: Technical Interview
Experience: Questions about RT OS and memory mapping. And other operating system related questions.
Projects done so far.

I appeared for an interview in Aug 2017.

Interview Questionnaire 

8 Questions

  • Q1. Basics of C
  • Q2. Puzzles on data structures
  • Q3. Asked on project
  • Q4. C basics
  • Q5. 3 basic and simple codes
  • Q6. Family background
  • Q7. How was technical interviews
  • Q8. Why should we not hire you
  • Ans. 

    I lack experience in a specific technology required for the role.

    • I may not have experience with a specific programming language or framework mentioned in the job description.

    • I may not have worked on projects similar to what your company is working on.

    • I may not have experience with certain tools or technologies that are crucial for the role.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was just mcq questions but had negative marking
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: It was cool and interactive round and was fun

Round: Technical Interview
Experience: It was interesting but I fumbled a little

Round: HR Interview
Experience: It was ok

College Name: Cummins College Of Engineering For Women (CCOEW)

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

14 Questions

  • Q1. Four people and torch problem?
  • Q2. What is the difference between AC and DC?
  • Ans. 

    AC and DC are two types of electrical current with different characteristics.

    • AC stands for Alternating Current, while DC stands for Direct Current.

    • AC periodically changes direction, while DC flows in one direction.

    • AC is commonly used in household electrical systems, while DC is used in batteries and electronic devices.

    • AC can be easily transformed to different voltage levels using transformers, while DC requires convert...

  • Answered by AI
  • Q3. Fill the cells in the pyramid?
  • Ans. 

    Fill the cells in the pyramid

    • The pyramid is a pattern of numbers or characters arranged in a triangular shape

    • Each row of the pyramid has one more cell than the previous row

    • Start filling the pyramid from the top and move downwards

    • The cells can be filled with any desired numbers or characters

  • Answered by AI
  • Q4. What is alternator and generator?
  • Ans. 

    An alternator and generator are devices that convert mechanical energy into electrical energy.

    • Both alternators and generators are used to generate electricity.

    • They work on the principle of electromagnetic induction.

    • Alternators are commonly used in modern vehicles to charge the battery and power the electrical systems.

    • Generators are often used as backup power sources during power outages.

    • Examples of alternators include ...

  • Answered by AI
  • Q5. What is the complexity of quick sort?
  • Ans. 

    Quick sort has an average and worst-case time complexity of O(n log n).

    • Quick sort is a divide-and-conquer algorithm.

    • It selects a pivot element and partitions the array around the pivot.

    • The average and worst-case time complexity is O(n log n).

    • However, in the worst-case scenario, it can have a time complexity of O(n^2).

  • Answered by AI
  • Q6. What are interesting u did?
  • Ans. 

    I developed a mobile app for tracking daily water intake and hydration levels.

    • Researched best practices for hydration tracking

    • Designed user-friendly interface for inputting water intake

    • Implemented data visualization for tracking hydration levels

    • Tested app with focus groups for feedback

    • Continuously updated app based on user suggestions

  • Answered by AI
  • Q7. Explain SHA Algorithm?
  • Ans. 

    SHA Algorithm is a cryptographic hash function that takes an input and produces a fixed-size output.

    • SHA stands for Secure Hash Algorithm.

    • It is widely used in various security applications and protocols.

    • SHA-1, SHA-256, SHA-384, and SHA-512 are common variants of SHA.

    • It generates a unique hash value for each unique input.

    • The output is a fixed length, regardless of the input size.

    • SHA is used for data integrity, password h

  • Answered by AI
  • Q8. 5 heads and two tails, separate into two groups such that two groups should have equal number of tails?
  • Q9. Delete a node in linked list?
  • Ans. 

    To delete a node in a linked list, we need to adjust the pointers of the previous node and the next node.

    • Find the node to be deleted

    • Adjust the pointers of the previous node and the next node

    • Free the memory of the deleted node

  • Answered by AI
  • Q10. Tell me about yourself?
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies like HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of data structures and algorithms

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q11. What are the challenges you faced in the interns?
  • Ans. 

    As an intern supervisor, I faced challenges in terms of communication, technical skills, and time management.

    • Communication barriers due to language or cultural differences

    • Lack of technical skills or knowledge required for the job

    • Difficulty in managing time and meeting deadlines

    • Inability to work independently or as part of a team

    • Resistance to feedback or constructive criticism

    • Limited exposure to real-world scenarios and...

  • Answered by AI
  • Q12. Preference of job place?
  • Ans. 

    I prefer a job place that offers a collaborative and innovative work environment.

    • Prefer a workplace that encourages teamwork and communication

    • Value opportunities for learning and growth

    • Seek a company that fosters creativity and innovation

  • Answered by AI
  • Q13. How will you solve the disputes?
  • Ans. 

    I will solve disputes by promoting open communication, active listening, and finding mutually beneficial solutions.

    • Encourage open and honest communication between parties involved

    • Actively listen to each party's concerns and perspectives

    • Identify common goals and interests to find mutually beneficial solutions

    • Mediate discussions and facilitate negotiations if necessary

    • Document agreements and ensure follow-up to prevent f

  • Answered by AI
  • Q14. What is your view about Qualcomm?
  • Ans. 

    Qualcomm is a leading semiconductor and telecommunications equipment company.

    • Qualcomm is known for its expertise in wireless technologies and mobile chipsets.

    • They have developed popular Snapdragon processors used in smartphones and tablets.

    • Qualcomm has made significant contributions to the advancement of 5G technology.

    • The company has a strong patent portfolio and is involved in licensing its technology to other manufac...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Simple aptitude questions and technical questions which includes OOPS, Computer networks
Duration: 1 hour 25 minutes
Total Questions: 50

College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions about RRC filters, matched filtering, IIR and FIR filters, basics of probability and questions regarding past projects

Interview Preparation Tips

Round: Test
Experience: The questions on aptitude were based on quantitative and logical reasoning. Questions were simple but you should have a good speed. In the programming section there were find the outout kind of questions and some theory questions based on virtual functions and abstract classes.
In technical questions we had to choose from hardware software or communication. I wrote the test for communications. Questions were based on different modulation techniques like qpsk, msk and also based on dsp. Some questions were about coding techniques as well.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: The overall experience was really good. The interviewers were frirndly and were helping out in case you get stuck. They want to see how clearly you know your basics.

College Name: IIT Madras

I appeared for an interview in Dec 2016.

Interview Questionnaire 

4 Questions

  • Q1. Simple algorithm coding questions, e.g.- fibonacci, prime number
  • Q2. Some hardware questions
  • Q3. Networking questions and some others
  • Q4. Intro, strength, weakness, why we hire you, etc. common HR questions

Interview Preparation Tips

College Name: IIT Kharagpur

Applied Research Works Interview FAQs

How many rounds are there in Applied Research Works interview?
Applied Research Works interview process usually has 1-2 rounds. The most common rounds in the Applied Research Works interview process are Technical, Aptitude Test and One-on-one Round.
How to prepare for Applied Research Works 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 Applied Research Works. The most common topics and skills that interviewers at Applied Research Works expect are Python, MySQL, Analytical, Data Analysis and HTML.
What are the top questions asked in Applied Research Works interview?

Some of the top questions asked at the Applied Research Works interview -

  1. Why you are interested into Medical Coding Fie...read more
  2. hadle iframes , windows handle and window handles diffrere...read more
  3. oops related questions, compare 2 array min and ...read more

Tell us how to improve this page.

Applied Research Works Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
Cyient Interview Questions
3.7
 • 288 Interviews
View all

Applied Research Works Reviews and Ratings

based on 22 reviews

3.8/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

4.1

Salary

3.6

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 22 Reviews and Ratings
Software Development Engineer
20 salaries
unlock blur

₹6 L/yr - ₹16 L/yr

Software Developer
18 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Software Development Engineer II
11 salaries
unlock blur

₹10.9 L/yr - ₹25.5 L/yr

Data Analyst
9 salaries
unlock blur

₹4.8 L/yr - ₹15.2 L/yr

Technical Lead
8 salaries
unlock blur

₹15.6 L/yr - ₹30.8 L/yr

Explore more salaries
Compare Applied Research Works with

Teleperformance

3.9
Compare

Optum Global Solutions

4.0
Compare

FIS

3.9
Compare

Nagarro

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