Upload Button Icon Add office photos

Filter interviews by

SHI International Corp Interview Questions and Answers

Updated 12 Jul 2024

SHI International Corp Interview Experiences

Popular Designations

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Describe your past experiences and how they pertain to the job description

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 (170)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. How do you stay organized
Round 2 - Aptitude Test 

They did an excel test with behavioral questions

Accounts Receivable Specialist Interview Questions asked at other Companies

Q1. What is O2C cycle and what will be your role in it?
View answer (1)

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Basic JavaScript output-based questions were presented in the form of multiple-choice questions (MCQs).

Round 2 - Technical 

(3 Questions)

  • Q1. What is custom diractives in Angular
  • Ans. 

    Custom directives in Angular allow you to create reusable components with custom behavior.

    • Custom directives are used to extend the functionality of HTML elements in Angular.

    • They can be used to create reusable components with custom behavior.

    • Directives are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or even transform the DOM element and its children.

    • Examples include crea...

  • Answered by AI
  • Q2. What is pipes in Angular
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view.

    • They can be used to filter, sort, or transform data in various ways.

    • Examples include currency, date, uppercase, and lowercase pipes.

  • Answered by AI
  • Q3. What is interceptor in Angular
  • Ans. 

    An interceptor in Angular is a service that can be used to intercept and modify HTTP requests and responses.

    • Interceptors can be used to add headers, modify requests, handle errors, etc.

    • They are implemented as classes that implement the HttpInterceptor interface.

    • Interceptors are added to the HttpClientModule providers array in the app module.

    • Example: LoggingInterceptor implements HttpInterceptor to log all HTTP requests

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Do you know writing Unit test case?
  • Ans. 

    Yes, I am familiar with writing unit test cases to ensure code quality and functionality.

    • I have experience writing unit test cases using testing frameworks like JUnit, NUnit, or pytest.

    • I understand the importance of writing testable code and creating comprehensive test suites.

    • I can write test cases to cover different scenarios, including edge cases and boundary conditions.

    • I know how to use mocking frameworks like Mocki...

  • Answered by AI
  • Q2. What state management library do you have used?
  • Ans. 

    I have used Redux for state management in my previous projects.

    • Redux is a predictable state container for JavaScript apps.

    • It helps in managing the state of the application in a single immutable state tree.

    • Actions are dispatched to update the state and components can subscribe to changes.

    • Selectors can be used to efficiently extract data from the state tree.

    • Middleware can be added to handle asynchronous actions.

    • Example:

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What is your expected Salary?
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Software Development Engineers.

    • Research the average salary for Software Development Engineers in the specific location and industry

    • Consider your years of experience and level of expertise

    • Factor in any additional benefits or perks offered by the company

    • Be prepared to negotiate based on the job responsibilities and requirements

  • Answered by AI
  • Q2. How soon would you be able to join if you receive the offer letter today?
  • Ans. 

    I can join within 2 weeks of receiving the offer letter.

    • I can start within 2 weeks of receiving the offer letter.

    • I need to give notice at my current job before starting.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No work from home opportunity. No AI access due to security reasons. Appraisal is very less
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Asking regarding self introduction.
  • Q2. Asking somthing as wish of interviewer.
  • Q3. So wonderful ,Iready for interview
  • Q4. Asking regarding my company.
  • Q5. Asking regarding my job roll.
Round 2 - Group Discussion 

Asking regarding electrical designing.

Round 3 - Technical 

(2 Questions)

  • Q1. Asking regarding cable try modelling.
  • Q2. Asking regarding equipment modelling.

Interview Preparation Tips

Topics to prepare for Acer India Electrical Designer interview:
  • Cable try modelling, equipment m
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Nov 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the code for implementing middleware in .NET?
  • Ans. 

    Middleware in .NET can be implemented using the 'UseMiddleware' method in the Startup class.

    • Use the 'UseMiddleware' method in the Configure method of the Startup class to add middleware in the request pipeline.

    • Create a custom middleware class that implements the 'IMiddleware' interface.

    • Register the custom middleware class in the ConfigureServices method of the Startup class.

  • Answered by AI
  • Q2. What are the common exceptions encountered in middleware?
  • Ans. 

    Common exceptions encountered in middleware include timeout errors, connection errors, and invalid input errors.

    • Timeout errors occur when a request takes too long to process.

    • Connection errors happen when there is a problem connecting to a database or external service.

    • Invalid input errors occur when the data provided does not meet the expected format or criteria.

  • Answered by AI
  • Q3. What is change detection in Angular?
  • Ans. 

    Change detection in Angular is the process of detecting changes in the application state and updating the view accordingly.

    • Angular uses change detection to keep the UI in sync with the application state.

    • It compares the current state of the application with the previous state to determine what has changed.

    • If a change is detected, Angular updates the view to reflect the new state.

    • Change detection can be triggered by user...

  • Answered by AI
  • Q4. What is the use of the Subject in Angular?
  • Ans. 

    Subject in Angular is used for multicasting observables to multiple subscribers.

    • Subject is a type of Observable that allows values to be multicasted to multiple Observers.

    • It acts as both an Observable and an Observer.

    • Subjects are hot Observables, meaning they start emitting values immediately upon creation.

    • Example: const subject = new Subject(); subject.next(1); subject.subscribe(value => console.log(value)); // Out

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the fundamental principles of .NET and Angular.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Docker,image vs containers,mutistage,terraformstatebackend
  • Q2. What is diff cloud formation vs terraform, release management like blue green etc.

Interview Preparation Tips

Topics to prepare for Equifax Site Reliability Engineer interview:
  • Docker
  • Terraform
  • Kubernetes
Interview preparation tips for other job seekers - do the concept well why what u use this specific tools and all that
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 Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is WDR ?
  • Ans. 

    WDR stands for Wide Dynamic Range. It is a feature in cameras that allows them to capture clear images in both bright and dark areas.

    • WDR helps to balance the exposure in different parts of the image

    • It is useful in scenarios where there are both bright and dark areas in the same frame

    • WDR technology combines multiple images taken at different exposures to create a single well-exposed image

  • Answered by AI
  • Q2. What is BLC and HLC
  • Ans. 

    BLC stands for Basic Life Cycle and HLC stands for High Level Cycle.

    • BLC refers to the basic stages of a product or system's life cycle, including development, testing, and deployment.

    • HLC refers to the higher-level phases of a product or system's life cycle, such as maintenance, updates, and retirement.

    • Understanding both BLC and HLC is important for ensuring the successful management of a product or system.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is the Bitrate
  • Ans. 

    Bitrate is the number of bits processed or transmitted per unit of time.

    • Bitrate is commonly used in digital multimedia and telecommunications to measure data transfer rates.

    • It is typically measured in bits per second (bps) or kilobits per second (kbps).

    • Higher bitrate generally means better quality but also requires more bandwidth.

    • For example, a video with a bitrate of 10 Mbps will have higher quality than the same vide

  • Answered by AI
  • Q2. What is resolution of 2 MP
  • Ans. 

    2 MP resolution refers to a camera or display with 2 million pixels.

    • 2 MP stands for 2 megapixels

    • It means the camera or display has a resolution of 1600 x 1200 pixels

    • Higher resolution results in clearer and more detailed images

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Preapare with your basic questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you please introduce yourself?
  • Ans. 

    I am a Software Development Engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience in developing web applications

    • Good team player

  • Answered by AI
  • Q2. What type of questions are being asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - I am Anjali Singh from Prayagraj in Uttar Pradesh, and I have completed a Postgraduate Diploma in Computer Applications.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Troubleshooting pc and printer
  • Q2. Lan cable crimping tools rj 45
  • Q3. Having basic Knowledge of MS Office
  • Q4. Also having Knowledge of Network Topology
  • Q5. Software, Drivers, windows, Installation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do agile methodologies function in B2B projects?
  • Ans. 

    Agile methodologies in B2B projects involve frequent communication, adaptability, and collaboration with stakeholders.

    • Agile methodologies in B2B projects prioritize customer collaboration and responding to change over following a strict plan.

    • Regular feedback from stakeholders helps in adjusting project scope and priorities in real-time.

    • Cross-functional teams work together closely to deliver incremental value to the B2B...

  • Answered by AI
  • Q2. What is your experience with barcode scanners?
  • Ans. 

    I have extensive experience working with barcode scanners in various automation projects.

    • Implemented barcode scanning functionality in warehouse management system to track inventory

    • Integrated barcode scanners with automated testing tools for regression testing

    • Utilized barcode scanners in manufacturing processes to improve efficiency and accuracy

  • Answered by AI

SHI International Corp Interview FAQs

How many rounds are there in SHI International Corp interview?
SHI International Corp interview process usually has 1-2 rounds. The most common rounds in the SHI International Corp interview process are One-on-one Round, HR and Aptitude Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Exl India Interview Questions
3.5
 • 100 Interviews
Equifax Interview Questions
3.3
 • 29 Interviews
CGS Interview Questions
3.5
 • 26 Interviews
SAS Interview Questions
4.4
 • 18 Interviews
View all

SHI International Corp Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

1.0

Work-life balance

1.0

Salary

2.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Compare SHI International Corp with

Exl India

3.5
Compare

HCL Infosystems

3.9
Compare

Aksentt Tech Services

4.7
Compare

Arvato

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