Upload Button Icon Add office photos

Filter interviews by

Sterison Technology Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed before Nov 2018. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. API, postman tool, methods, testing concepts

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

7 Questions

  • Q1. How do you connect a component to Redux store? Which function in Redux is used to connect to store? What are the parameters in connect?
  • Ans. 

    To connect a component to Redux store, we use the connect function from the react-redux library.

    • Import the connect function from react-redux.

    • Use the connect function to wrap the component and connect it to the Redux store.

    • The connect function takes two parameters: mapStateToProps and mapDispatchToProps.

    • mapStateToProps is a function that maps the state from the Redux store to the component's props.

    • mapDispatchToProps is ...

  • Answered by AI
  • Q2. What is Context API in React? Is there a need to have an initial state in Context API?
  • Ans. 

    Context API is a way to share data between components without passing props down manually.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing data that needs to be accessed by many components at different levels of the tree.

    • Initial state can be set in Context API using the createContext() function.

    • There is no need to have ...

  • Answered by AI
  • Q3. Do Reducer need to have an initial state compulsorily?
  • Ans. 

    Yes, it is mandatory for Reducer to have an initial state.

    • Initial state defines the starting point of the state tree.

    • It helps in defining the shape of the state tree.

    • It is used to set default values for the state properties.

    • It is also used to reset the state to its initial values.

    • Example: const initialState = { count: 0 };

    • Example: const initialState = { name: '', age: 0 };

  • Answered by AI
  • Q4. What is the minimum coverage for an app? How much code do you push to production/master branch while deployment?
  • Ans. 

    Minimum coverage for an app and code pushed to production/master branch while deployment.

    • Minimum coverage for an app depends on the project requirements and complexity.

    • Generally, a coverage of 80% or higher is considered good.

    • Code pushed to production/master branch should be thoroughly tested and reviewed.

    • Continuous integration and deployment can help automate this process.

    • Examples of tools for code coverage include Je

  • Answered by AI
  • Q5. Will React re-render whole page or just a part of it?
  • Ans. 

    React re-renders just the part of the page that has changed, thanks to its virtual DOM.

    • React uses a virtual DOM to track changes in the UI.

    • When a component's state or props change, React compares the virtual DOM with the real DOM and updates only the necessary parts.

    • This approach improves performance by minimizing the number of DOM manipulations.

    • React's diffing algorithm efficiently determines the minimal set of change

  • Answered by AI
  • Q6. What are the use cases of Service Workers?
  • Ans. 

    Service Workers are scripts that run in the background and can intercept network requests, cache or modify responses.

    • Offline support for web applications

    • Push notifications

    • Background synchronization

    • Reduced network usage and faster page loads

    • Progressive Web Apps (PWA)

  • Answered by AI
  • Q7. Explain Redux-Saga middleware. How do you Dispatch actions from components in Redux?
  • Ans. 

    Redux-Saga is a middleware for Redux that handles side effects. Actions can be dispatched from components using mapDispatchToProps.

    • Redux-Saga is used to handle side effects like API calls and asynchronous actions.

    • It uses generator functions to make asynchronous code look synchronous.

    • Sagas listen for specific actions and perform tasks based on those actions.

    • To dispatch actions from components, use mapDispatchToProps to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Appeared for the First Round Technical Interview. Video call. Interviewer was a nice person. You can clear this round if your concepts are clear about react, Redux, Middleware or other keywords mentioned in your resume.

Skills evaluated in this interview

I applied via Recruitment Consultant

Interview Questionnaire 

2 Questions

  • Q1. Round 1: Fundamentals questions related to Javascript and React. In React questions were focused on react-hooks. lifecycle components and optimization techniques in react. Basic to intermediate questions r...
  • Q2. Round 2: The interview panel will ask you to code some basic coding problem depending on your relevant experience and if you're not able to solve it they'll directly say they're done with the interview. In...

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared Round 1 after which there was a delay of more than 2 weeks and got a call for Round 2 without any prior notice. Their L2 level interview is very bad, in my case I ended the interview from my side as it looked very clear that the panel was least interested.

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Ques from Selenium, what is webDriver and all
  • Q2. From java, they asked to write the code on Sorting of an array
  • Q3. Print highest element in array
  • Ans. 

    Print highest element in array of strings

    • Convert array elements to integers

    • Use built-in max() function

    • Print the result

  • Answered by AI
  • Q4. Difference between Actions and Action
  • Ans. 

    Actions and Action are terms used in automation testing. Actions are a collection of steps while Action is a single step.

    • Actions are a set of steps that can be reused in multiple tests

    • Action is a single step that performs a specific action

    • Actions can be called multiple times in a test

    • Action can only be called once in a test

    • Actions can be parameterized

    • Action cannot be parameterized

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepared with basic concept..also in the written test some coding part was tough..else all were easy.

Skills evaluated in this interview

SQA and QA Interview Questions & Answers

Tata Group user image Anonymous

posted on 22 Dec 2020

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is the company want from me?
  • Q2. I have worked one year as QA and two years as a SQA(Supplier QA)
  • Q3. What is other talent in you accept quality?
  • Q4. I also able to handle the production department like prod. Planning
  • Q5. Can you ever calculate how much current will consume for one shift?
  • Q6. Yes, in my company I calculated it when problem was arise one thing when i am in pune

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a nice one I like this type of interviews

Interview Questionnaire 

2 Questions

  • Q1. Core Java, Database and
  • Q2. Answer in - depth, basic understanding should be transparent, some programming logic might be asked. You have to explain the algorithm well. Don't panic, it's a standard interview process. 😊

Interview Questionnaire 

4 Questions

  • Q1. 1. How to copy the Business phone on account to the associated contacts and Opportunities?
  • Ans. 

    To copy Business phone on account to associated contacts and opportunities, use process builder or workflow rule.

    • Create a process builder or workflow rule on account object

    • Add criteria to check if Business phone is not null

    • Add immediate action to update Business phone on associated contacts and opportunities

    • Use field update action to update Business phone field on contacts and opportunities

    • Map the Business phone field

  • Answered by AI
  • Q2. Can we do CRM deployment using DevOps?
  • Ans. 

    Yes, CRM deployment can be done using DevOps.

    • DevOps can automate the deployment process of CRM systems

    • Continuous integration and continuous deployment can be used for CRM deployment

    • DevOps tools like Jenkins, Ansible, and Puppet can be used for CRM deployment

    • DevOps can ensure faster and more efficient deployment of CRM systems

  • Answered by AI
  • Q3. What is Data export service and how can we use it?
  • Ans. 

    Data export service is a tool that allows users to export data from Dynamics 365 to an Azure SQL database or a CSV file.

    • Data export service is a cloud-based service provided by Microsoft.

    • It can be used to export data from Dynamics 365 to an Azure SQL database or a CSV file.

    • It can be scheduled to run automatically or manually.

    • It can be used to export data from both standard and custom entities.

    • It can be used to export d...

  • Answered by AI
  • Q4. If Plugin takes more than 2 min, what is an alternate to achieve the same operation?
  • Ans. 

    Use alternative method or optimize plugin to reduce time.

    • Optimize the plugin code to reduce execution time.

    • Use a different plugin that can perform the same operation faster.

    • Write custom code to achieve the same operation without using the plugin.

    • Break down the operation into smaller tasks and execute them in parallel.

    • Use caching to store results and avoid repeating the operation.

    • Consider upgrading hardware or increasin

  • Answered by AI

Skills evaluated in this interview

Regulatory IVD medical Devices SME Interview Questions & Answers

Tata Elxsi user image Anonymous

posted on 14 Jan 2021

I applied via Naukri.com and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Related to Technical
  • Q2. Specific to previous job
  • Q3. Specific to new role and JD

Interview Preparation Tips

Interview preparation tips for other job seekers - Honest and true

I was interviewed in Dec 2020.

Interview Questionnaire 

3 Questions

  • Q1. The question will be asked based on the platforms you have worked before or currently working. From basic to advance.
  • Q2. What are tags?
  • Ans. 

    Tags are labels or keywords that are used to categorize and organize content.

    • Tags are commonly used on social media platforms to group posts with similar content.

    • They can also be used on websites to help users find related content.

    • Tags can be created by users or automatically generated based on the content.

    • They are often displayed as clickable links that lead to a list of other content with the same tag.

  • Answered by AI
  • Q3. What are default ads?
  • Ans. 

    Default ads are pre-designed advertisements that are displayed when no other ads are available.

    • Default ads are used as a backup when there are no other ads to display.

    • They are pre-designed and can be created by the ad network or the website owner.

    • Default ads are usually less effective than targeted ads.

    • They can be used to promote the website or a specific product or service.

    • Default ads can also be used to fill empty ad

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple.

Sterison Technology Interview FAQs

How to prepare for Sterison Technology 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 Sterison Technology. The most common topics and skills that interviewers at Sterison Technology expect are Javascript, HTML, CRM, JQuery and Business Analysis.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 784 Interviews
Coforge Interview Questions
3.4
 • 500 Interviews
eClerx Interview Questions
3.4
 • 492 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
View all

Sterison Technology Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

2.0

Salary & Benefits

2.0

Job Security

2.0

Company culture

2.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
Compare Sterison Technology with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

LTIMindtree

3.9
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