Upload Button Icon Add office photos

Filter interviews by

ORBCOMM Technologies Interview Questions, Process, and Tips

Updated 26 Nov 2024

Top ORBCOMM Technologies Interview Questions and Answers

View all 6 questions

ORBCOMM Technologies Interview Experiences

Popular Designations

4 interviews found

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Types of testing
  • Ans. 

    Types of testing include functional, non-functional, manual, automated, regression, performance, and security testing.

    • Functional testing: Testing the functionality of the software.

    • Non-functional testing: Testing aspects like performance, usability, and security.

    • Manual testing: Testing done manually by QA engineers.

    • Automated testing: Testing done using automation tools.

    • Regression testing: Testing to ensure new code chan...

  • Answered by AI
  • Q2. STLC process explain
  • Ans. 

    STLC (Software Testing Life Cycle) is a process used by software testers to ensure the quality of a software product.

    • STLC involves planning, designing, executing, and reporting on tests throughout the software development lifecycle.

    • Key stages in STLC include requirement analysis, test planning, test design, test execution, and test closure.

    • STLC helps in identifying defects early in the development process, reducing cos...

  • Answered by AI

Skills evaluated in this interview

Software QA Engineer Interview Questions asked at other Companies

Q1. What exceptions have u faced while creating framework?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Different Testing Techniques
  • Ans. 

    Different testing techniques include black box testing, white box testing, regression testing, and exploratory testing.

    • Black box testing focuses on the functionality of the software without looking at its internal code.

    • White box testing examines the internal logic and structure of the software.

    • Regression testing ensures that new code changes do not adversely affect existing functionality.

    • Exploratory testing involves si...

  • Answered by AI
  • Q2. SDLC Explanation
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured process that consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables that contribute to the overall success of the software project.

    • SDLC helps ensur...

  • Answered by AI
  • Q3. Sanity and Smoke testing difference
  • Ans. 

    Sanity testing is a narrow and focused testing to check if the critical functionalities work correctly after changes. Smoke testing is a broader testing to check if the software build is stable enough for further testing.

    • Sanity testing is a subset of regression testing, focusing on specific areas of the application that were modified.

    • Smoke testing is performed to ensure the stability of the software build before procee...

  • Answered by AI
  • Q4. Writing testcases for given scenario

Skills evaluated in this interview

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)

I applied via Referral and was interviewed in May 2022. There were 4 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 

It was a simple aptitude test

Round 3 - Assignment 

It was a written test which is based on the email writing skills

Round 4 - One-on-one 

(3 Questions)

  • Q1. One on one with manager and Director All the questions were based on the resume
  • Ans. Be confident to answer what you updated on your resume
  • Answered Anonymously
  • Q2. What are your strengths
  • Q3. Your positive points
  • Ans. 

    I am a quick learner with excellent problem-solving skills and a positive attitude.

    • Quick learner

    • Excellent problem-solving skills

    • Positive attitude

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do your best and be transparent and everything follows you

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 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. Java and project related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Design related questions

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

ORBCOMM Technologies interview questions for popular designations

 Technical Support Engineer

 (1)

 Quality Analyst

 (1)

 Senior Software Engineer

 (1)

 Software QA Engineer

 (1)

Jobs at ORBCOMM Technologies

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.

Interview Preparation Tips

Round: Test
Experience: A coding test (Students were asked to bring Laptops)
Tips: Be thorough with C/C++, networking, OS, Data structures and architecture
Duration: 90 minutes

Round: Interview
Experience: 3 rounds of interview, one hour each, all technical 
Interview Process:All the three rounds are oriented around programming. A lot of focus was given to Data structures, C/C++, OS and algorithmsThe code from previous test is shown and they expect you to fix any bugs if thereThe interviewers are quietly friendly and help if you get stuck at any pointIf you do have any related projects, anticipate some thorough questions on that
Tips: Though the interviewers are helpful, get your basics clear early on. Don't rely on them.Practice coding sessions, a lot of companies have them as a shortlisting criteria.

College Name: IIT Madras

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

I applied via Company Website and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Can you walk me through your resume?

Interview Preparation Tips

Interview preparation tips for other job seekers - You will be asked only on the skills you have mentioned in your CV. Prepare well before the interview. People who had taken the interview was my current manager and senior manager. They are very friendly with everyone. Just keep in mind that you have to perform in such a way like you are talking to a friend. All the very best.

I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions about the projects you worked with. About how specific coding challenges were solved. How it could have been done other ways. etc.
  • Q2. About Python versions and differences. Impact on frameworks.
  • Q3. About module design, apis.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a relaxed interview, like a discussion. The questions are tough in that they make you think. Review your previous projects and be honest.

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent and real. Don't bluff :)
Fingent has got a good number of people in the interview panel(my personal experience)
Even if you do not know the answer, the panel will explain it to you.

ORBCOMM Technologies Interview FAQs

How many rounds are there in ORBCOMM Technologies interview?
ORBCOMM Technologies interview process usually has 2-3 rounds. The most common rounds in the ORBCOMM Technologies interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for ORBCOMM Technologies 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 ORBCOMM Technologies. The most common topics and skills that interviewers at ORBCOMM Technologies expect are Agile Coaching, Operational Excellence, Kafka, Accounting and Java.
What are the top questions asked in ORBCOMM Technologies interview?

Some of the top questions asked at the ORBCOMM Technologies interview -

  1. Sanity and Smoke testing differe...read more
  2. Different Testing Techniq...read more
  3. your positive poi...read more

Tell us how to improve this page.

ORBCOMM Technologies Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
Backbase Interview Questions
3.9
 • 22 Interviews
Khoros Interview Questions
3.7
 • 19 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Viasat Interview Questions
3.6
 • 14 Interviews
Intelsat Interview Questions
3.2
 • 2 Interviews
SpeedCast Interview Questions
4.0
 • 1 Interview
View all

ORBCOMM Technologies Reviews and Ratings

based on 28 reviews

3.3/5

Rating in categories

2.6

Skill development

3.3

Work-life balance

3.7

Salary

2.8

Job security

2.9

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 28 Reviews and Ratings
Office Administrator

Hyderabad / Secunderabad

2-4 Yrs

Not Disclosed

Key Account Manager

Chandigarh

5-9 Yrs

Not Disclosed

Senior UI/UX Designer, Maritime IoT

Hyderabad / Secunderabad

4-9 Yrs

Not Disclosed

Explore more jobs
Technical Support Engineer
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Lead
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Support Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ORBCOMM Technologies with

SpeedCast

4.0
Compare

Hughes Network Systems

4.2
Compare

Viasat

3.6
Compare

Intelsat

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