Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Seasia Infotech Team. If you also belong to the team, you can get access from here

Seasia Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Seasia Infotech Interview Questions, Process, and Tips

Updated 27 Aug 2024

Top Seasia Infotech Interview Questions and Answers

View all 6 questions

Seasia Infotech Interview Experiences

Popular Designations

8 interviews found

Project Manager Interview Questions & Answers

user image prem kumar

posted on 27 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste your precious time with these people. They assume themselves as the most educated and they are the most self esteemed people I have ever seen.
If you are a licker kind of person and know about everything about your tech in depth then go for it. Good Luck to you.

Senior Automation Test Engineer Interview Questions asked at other Companies

Q1. (1) write a list comprehension to print a list from 1 to 10 (2) write a program to check if a given positive integer is a power of two (3) create a fibonacci series of 100 using recursive function (4) write a program to find missing numbers... read more
View answer (2)
Seasia Infotech Interview Questions and Answers for Freshers
illustration image

I applied via Referral and was interviewed in Feb 2022. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study everything thoroughly and have brief knowledge about basic testing

QA Engineer Trainee Interview Questions asked at other Companies

Q1. What is STLC .what is SDLC .what is software testing, why we do software testing, why you choose as teeter not as a developer, what is bug life cycle ,explain defect tracking, what is defect bug error , wha is agile module,what is water fal... read more
View answer (2)

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

Interview Preparation Tips

Topics to prepare for Seasia Infotech ASP.NET Developer interview:
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Just be confident and try to answer only if you are sure about your answer. Just do not be quite over there...if you don't know the answer just tell them you do not have much idea about that but definitely I'll get some knowledge about the same.

ASP.NET Developer Interview Questions asked at other Companies

Q1. All opps concept. What is constructor?, what is delegets? What is inheritance? What is abtract class.?
View answer (1)

Seasia Infotech interview questions for popular designations

 Project Manager

 (1)

 ASP.NET Developer

 (1)

 Assistant Manager

 (1)

 Senior Software Engineer

 (1)

 QA Engineer Trainee

 (1)

 Associate Consultant

 (1)

 Senior Automation Test Engineer

 (1)

 Java Developer

 (1)

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

I applied via Referral and was interviewed before Oct 2022. There were 3 interview rounds.

Interview Preparation Tips

Topics to prepare for Seasia Infotech Assistant Manager interview:
  • Search Engine Optimization
  • Search Engine Marketing
  • Backlinking

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (88)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2023. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join this company if you have more option, it's better to join startup.

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)

Jobs at Seasia Infotech

View all

Java Developer Interview Questions & Answers

user image Tanmay Srivastava

posted on 6 Jan 2022

Interview Questionnaire 

2 Questions

  • Q1. Projects associated with,Tech Stacks ,Spring scopes, Extending a class along with object class ,when prototype should be used,hibernate session methods,Rest services method,annotation for JSON /XML
  • Q2. Rest services

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice .Keep up with the basic knowledge .Try to justify the interviewer with the practical knowledge rather than theoretical

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 Questionnaire 

6 Questions

  • Q1. What is hooks in React.Js
  • Ans. 

    Hooks are a new feature in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use React state and lifecycle methods inside functional components

    • They allow you to reuse stateful logic across multiple components

    • useState is a hook that lets you add state to functional components

    • useEffect is a hook that lets you use lifecycle methods in functional compon...

  • Answered by AI
  • Q2. How to manage state in functional components
  • Ans. 

    Use useState hook to manage state in functional components

    • Import useState hook from React

    • Declare state variable using useState hook

    • Use state variable and setState function to update state

    • Pass state variable and setState function as props to child components if needed

  • Answered by AI
  • Q3. Whai is useEffect hooks in React.Js. Why use empty array[]
  • Ans. 

    useEffect is a hook in React that allows performing side effects in functional components.

    • useEffect is used to perform side effects in functional components.

    • It takes two arguments: a function and an array of dependencies.

    • The function is executed after every render cycle.

    • The array of dependencies is used to specify when the effect should be re-executed.

    • An empty array [] means the effect should only be executed once, on

  • Answered by AI
  • Q4. Life cycle method in React.Js
  • Ans. 

    Life cycle methods are functions that are invoked at various stages of a component's existence in React.Js.

    • There are three categories of life cycle methods: mounting, updating, and unmounting.

    • Mounting methods are called when a component is being created and inserted into the DOM.

    • Updating methods are called when a component is being re-rendered due to changes in its props or state.

    • Unmounting methods are called when a co...

  • Answered by AI
  • Q5. How Redux works
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux is a library for managing application state.

    • It provides a central store for all the state in an application.

    • State changes are made through actions, which are dispatched to the store.

    • Reducers are pure functions that take the current state and an action, and return the new state.

    • Selectors are functions that extract data from the state.

    • Middleware can be used...

  • Answered by AI
  • Q6. What is reducer in Redux
  • Ans. 

    Reducer is a pure function that takes the previous state and an action, and returns the new state in Redux.

    • Reducers specify how the application's state changes in response to actions sent to the store.

    • They are pure functions that take the previous state and an action, and return the new state.

    • Reducers should not modify the previous state, but return a new object if the state changes.

    • Redux uses a single root reducer fun...

  • Answered by AI

Skills evaluated in this interview

Top Seasia Infotech Senior Software Engineer Interview Questions and Answers

Q1. Whai is useEffect hooks in React.Js. Why use empty array[]
View answer (1)

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)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Walk-in and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is Excel what is vlookup what is your strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and bold
Contribute & help others!
anonymous
You can choose to be anonymous

Seasia Infotech Interview FAQs

How many rounds are there in Seasia Infotech interview?
Seasia Infotech interview process usually has 2 rounds. The most common rounds in the Seasia Infotech interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Seasia Infotech 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 Seasia Infotech. The most common topics and skills that interviewers at Seasia Infotech expect are Communication Skills, Online Bidding, Bidding, Python and Ruby Rails.
What are the top questions asked in Seasia Infotech interview?

Some of the top questions asked at the Seasia Infotech interview -

  1. Whai is useEffect hooks in React.Js. Why use empty array...read more
  2. How to manage state in functional componen...read more
  3. What is hooks in React....read more

Recently Viewed

INTERVIEWS

Narola Infotech

No Interviews

SALARIES

Sagility

No Salaries

COMPANY BENEFITS

Sagility

No Benefits

SALARIES

Sagility

SALARIES

Sagility

JOBS

Wipro

No Jobs

JOBS

myCPE

No Jobs

JOBS

Sagility

No Jobs

SALARIES

Sagility

SALARIES

Sagility

Tell us how to improve this page.

Seasia Infotech Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k 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
 • 790 Interviews
MAQ Software Interview Questions
1.9
 • 100 Interviews
View all

Seasia Infotech Reviews and Ratings

based on 63 reviews

2.7/5

Rating in categories

2.5

Skill development

2.6

Work-life balance

2.2

Salary

2.7

Job security

2.5

Company culture

2.2

Promotions

2.2

Work satisfaction

Explore 63 Reviews and Ratings
Devops Engineer

Mohali

5-8 Yrs

Not Disclosed

Dot Net Developer

Mohali

5-8 Yrs

Not Disclosed

React Native Developer

Mohali

6-11 Yrs

Not Disclosed

Explore more jobs
Software Developer
40 salaries
unlock blur

₹1.1 L/yr - ₹6.8 L/yr

Associate Consultant
18 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Senior Consultant
14 salaries
unlock blur

₹4.8 L/yr - ₹15.1 L/yr

Team Lead
12 salaries
unlock blur

₹6 L/yr - ₹15.9 L/yr

Software Engineer
11 salaries
unlock blur

₹3.3 L/yr - ₹9.7 L/yr

Explore more salaries
Compare Seasia Infotech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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