Upload Button Icon Add office photos

Filter interviews by

Integra Micro Systems Interview Questions, Process, and Tips

Updated 21 Sep 2024

Top Integra Micro Systems Interview Questions and Answers

View all 6 questions

Integra Micro Systems Interview Experiences

Popular Designations

12 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. String program question like occurance of every character , reverse a sentence
  • Q2. Comparable and comparator
  • Q3. Array list implementation
  • Ans. 

    Array list implementation involves creating a dynamic list that can grow or shrink in size.

    • Use ArrayList class in Java to create an array list of strings.

    • ArrayList list = new ArrayList<>();

    • Add elements to the list using list.add() method.

    • list.add("Apple");

    • Access elements using list.get() method.

    • String fruit = list.get(0);

    • Remove elements using list.remove() method.

    • list.remove(0);

Answered by AI
  • Q4. Oops concepts from what is class to multi threading
  • Ans. 

    Object-oriented programming concepts from class to multi-threading in Android development.

    • Class: blueprint for creating objects, encapsulates data and behavior (methods)

    • Inheritance: allows a class to inherit properties and methods from another class

    • Polymorphism: ability for objects to take on multiple forms

    • Abstraction: hiding implementation details and showing only necessary features

    • Encapsulation: bundling data and met...

  • Answered by AI
    Round 3 - Aptitude Test 

    They give 25 applitude and 24 java mcq and one program from collection

    Interview Preparation Tips

    Interview preparation tips for other job seekers - strong in ur core concept

    Skills evaluated in this interview

    Android Developer Interview Questions asked at other Companies

    Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
    View answer (1)

    QA Engineer Interview Questions & Answers

    user image Anonymous

    posted on 14 Aug 2024

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

    I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

    Round 1 - Telephonic Call 

    (4 Questions)

    • Q1. Self introduction
    • Q2. Difference between SDLC and stlc
    • Ans. 

      SDLC is the Software Development Life Cycle, while STLC is the Software Testing Life Cycle.

      • SDLC focuses on the development of software from planning to deployment, while STLC focuses on the testing activities within the SDLC.

      • SDLC includes phases like requirements gathering, design, coding, testing, and deployment, while STLC includes phases like test planning, test design, test execution, and test closure.

      • SDLC is more ...

    • Answered by AI
    • Q3. Regression testing
    • Q4. What do you mean data query language and data definition language?
    • Ans. 

      Data query language is used to retrieve data from a database, while data definition language is used to define and modify the structure of a database.

      • Data query language (DQL) is used to retrieve data from a database, such as SQL SELECT statement.

      • Data definition language (DDL) is used to define and modify the structure of a database, such as SQL CREATE TABLE statement.

      • DQL focuses on querying and retrieving data, while ...

    • Answered by AI

    Skills evaluated in this interview

    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
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    Selected Selected
    Round 1 - Aptitude Test 

    Aptitude and reasoning

    Round 2 - Technical 

    (1 Question)

    • Q1. Java and android basic
    Round 3 - Technical 

    (1 Question)

    • Q1. Java and android basics
    Round 4 - HR 

    (1 Question)

    • Q1. Communication and salary discussion

    Software Engineer Interview Questions asked at other Companies

    Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
    View answer (197)
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Easy Problems Strings and arrays

    Round 2 - Technical 

    (2 Questions)

    • Q1. Android application lifecycle
    • Q2. Explain Android intent
    • Ans. 

      Android intent is a messaging object used to request an action from another app component.

      • Android intent is used to start an activity, service, or broadcast receiver in Android app development.

      • It can also be used to pass data between activities or communicate with other apps.

      • There are two types of intents: explicit intents (targeting a specific component) and implicit intents (requesting an action from any app componen

    • Answered by AI

    Skills evaluated in this interview

    Software Engineer Interview Questions asked at other Companies

    Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
    View answer (197)

    Integra Micro Systems interview questions for popular designations

     Software Engineer

     (2)

     Field Executive

     (1)

     Coordinator

     (1)

     MIS Executive

     (1)

     Software Developer

     (1)

     Java Developer

     (1)

     Linux Support Engineer

     (1)

     Android Developer

     (1)

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

    I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    Basic math with tricks

    Round 2 - Coding Test 

    Java , reverse string , sort with collection.

    Round 3 - HR 

    (1 Question)

    • Q1. How fast you can join , any intership

    Interview Preparation Tips

    Interview preparation tips for other job seekers - be confident and be legit with the answers

    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 (42)
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Prime number , mix of array

    Round 2 - Group Discussion 

    Social life, internat

    Java Developer Interview Questions asked at other Companies

    Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
    View answer (3)
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Naukri.com and was interviewed before Jan 2023. There were 3 interview rounds.

    Round 1 - One-on-one 

    (1 Question)

    • Q1. Job description of previous company
    Round 2 - Aptitude Test 

    Advanced excel test (with logic function)

    Round 3 - HR 

    (1 Question)

    • Q1. Personal interview & salary package discussion

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Na

    MIS Executive Interview Questions asked at other Companies

    Q1. HOW TO CREATING PIVOT TABLE IN EXCEL. HOW MANY PIVOT TABLES YOU WAS USING ON YOUR PREVIOUS ORGANISATION.
    View answer (4)
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I applied via Recruitment Consulltant and was interviewed before Sep 2023. There were 2 interview rounds.

    Round 1 - Technical 

    (2 Questions)

    • Q1. LINUX RELATED COMMANDS
    • Q2. LINUX BASED SCENARIO BASED
    Round 2 - HR 

    (1 Question)

    • Q1. SALARY AND JOB ROLE

    Linux Support Engineer Interview Questions asked at other Companies

    Q1. What do you mean by Linux? Explain its features.
    View answer (3)

    I applied via Walk-in and was interviewed in Jun 2022. There were 2 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 - HR 

    (1 Question)

    • Q1. Experience customer service, inquiry, solution, and salary

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Good opportunities and growth company in future

    Field Executive Interview Questions asked at other Companies

    Q1. What is Injury On Nitrogen leak?
    View answer (12)

    Software Testing Interview Questions & Answers

    user image Kavyashree C M

    posted on 28 Nov 2022

    I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 5 interview rounds.

    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
    View all tips
    Round 2 - Aptitude Test 

    Aptitude test is related to technical questions only not related to mathematics

    Round 3 - Technical 

    (1 Question)

    • Q1. Defect tracking tool Regression testing, All types of Black box testing, severity and priority, test case design techniques, test case templates, Sdlc and stlc
    Round 4 - Technical 

    (1 Question)

    • Q1. Operating systems, Linux
    Round 5 - HR 

    (1 Question)

    • Q1. About projects related questions they asked

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It’s very good company for beginners
    Since this company is product based company we can learn lot many things

    Software Testing Interview Questions asked at other Companies

    Q1. What do you understand by coding??
    View answer (2)

    I applied via Referral and was interviewed before Jan 2020. There were 3 interview rounds.

    Interview Questionnaire 

    6 Questions

    • Q1. Tell us about your self?
    • Q2. What job responsibilities you were perusing in your previous company?
    • Q3. Do you Know About our company?
    • Q4. Are able to shift location if needed?
    • Q5. What are you expectation towards our organisation?
    • Q6. What salary package you are expecting from us?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Interview is just not about give application and take the interview.You must take some time to prepare, because not get selected in an interview also effect your mind state and your confidence.so you need to make sure that you read a little bit about your capabilities and about that organisation in which you are going to apply, also apply for the role which fits according to your education and you experience level

    Back Office Executive Interview Questions asked at other Companies

    Q1. Which tools or software do you use to streamline processes and tasks?
    View answer (2)

    Integra Micro Systems Interview FAQs

    How many rounds are there in Integra Micro Systems interview?
    Integra Micro Systems interview process usually has 2-3 rounds. The most common rounds in the Integra Micro Systems interview process are HR, Technical and Aptitude Test.
    How to prepare for Integra Micro Systems 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 Integra Micro Systems. The most common topics and skills that interviewers at Integra Micro Systems expect are Java, Software Sales, IT Sales, Linux and Devops.
    What are the top questions asked in Integra Micro Systems interview?

    Some of the top questions asked at the Integra Micro Systems interview -

    1. What do you mean data query language and data definition langua...read more
    2. oops concepts from what is class to multi thread...read more
    3. What is your knowledge on system ...read more

    Tell us how to improve this page.

    Integra Micro Systems Interview Process

    based on 13 interviews

    Interview experience

    4.5
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.5k Interviews
    Infosys Interview Questions
    3.6
     • 7.7k Interviews
    Wipro Interview Questions
    3.7
     • 5.7k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.9k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    Mphasis Interview Questions
    3.4
     • 812 Interviews
    Cyient Interview Questions
    3.6
     • 285 Interviews
    View all

    Integra Micro Systems Reviews and Ratings

    based on 191 reviews

    3.8/5

    Rating in categories

    3.6

    Skill development

    3.7

    Work-life balance

    3.3

    Salary

    4.0

    Job security

    3.6

    Company culture

    3.2

    Promotions

    3.6

    Work satisfaction

    Explore 191 Reviews and Ratings
    Software Engineer
    108 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Linux Support Engineer
    97 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Software Engineer
    87 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Softwaretest Engineer
    35 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Linux Engineer
    30 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Explore more salaries
    Compare Integra Micro Systems with

    HCLTech

    3.5
    Compare

    TCS

    3.7
    Compare

    Wipro

    3.7
    Compare

    Tech Mahindra

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