Upload Button Icon Add office photos

Filter interviews by

Softech Infinium Solutions Interview Questions, Process, and Tips

Updated 16 Jan 2025

Top Softech Infinium Solutions Interview Questions and Answers

View all 7 questions

Softech Infinium Solutions Interview Experiences

Popular Designations

7 interviews found

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

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

Round 1 - Aptitude Test 

Relationship, time, and distance.

Round 2 - Assignment 

ARITHMETIC AND REASONING

Round 3 - Group Discussion 

Regarding one social media related topic

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 (203)

Senior QA Engineer Interview Questions & Answers

user image Nishant Kumar

posted on 23 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. Brief about yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical question

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. How much experience in AWS cloud?
  • Ans. 

    I have 5 years of experience working with AWS cloud services.

    • 5 years of hands-on experience with AWS cloud services

    • Proficient in setting up and managing EC2 instances, S3 storage, and VPCs

    • Experience with AWS Lambda, RDS, IAM, and CloudFormation

    • Worked on designing and implementing scalable and cost-effective cloud solutions

    • Certified AWS Solutions Architect

  • Answered by AI
  • Q2. Tell me about yourself
Round 2 - Technical 

(4 Questions)

  • Q1. What is the purpose of using IAM ?
  • Ans. 

    IAM (Identity and Access Management) is used to securely control access to AWS services and resources.

    • IAM allows you to create and manage users, groups, and roles to control who can access specific resources.

    • It helps in setting permissions for users to access AWS services and resources.

    • IAM enables you to set up multi-factor authentication for added security.

    • It allows you to create and manage policies to define permissi...

  • Answered by AI
  • Q2. How many types of EC2 instances is there?
  • Ans. 

    There are several types of EC2 instances available in AWS to cater to different computing needs.

    • There are general purpose instances like t2, m5, and m6g.

    • There are compute optimized instances like c5 and c6g.

    • There are memory optimized instances like r5 and x1e.

    • There are storage optimized instances like i3 and d2.

    • There are GPU instances like p3 and g4.

    • There are FPGA instances like f1.

    • There are instances for high performa...

  • Answered by AI
  • Q3. How to perform S3 cross region replication?
  • Ans. 

    S3 cross region replication allows automatic copying of objects between S3 buckets in different AWS regions.

    • Enable versioning on source and destination buckets

    • Create a replication rule in the source bucket specifying the destination bucket and region

    • Ensure appropriate IAM roles and policies are set up for replication

    • Monitor replication progress using CloudWatch metrics

  • Answered by AI
  • Q4. Explain the concept of EC2; instances root device and block devices?
  • Ans. 

    EC2 instances in AWS have root devices for the operating system and block devices for additional storage.

    • EC2 instances have a root device that contains the operating system and boot volume.

    • Block devices are additional storage volumes that can be attached to EC2 instances.

    • Block devices can be either EBS volumes or instance store volumes.

    • EBS volumes are persistent storage volumes that persist independently from the life ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Softech Infinium Solutions AWS Cloud Engineer interview:
  • Ec2
  • IAM
  • AMAZON S3
  • Vpc
  • EBS
  • EFS
  • Amazon rds
  • Route 53
  • Security group
  • Elastic ip

Skills evaluated in this interview

AWS Cloud Engineer Interview Questions asked at other Companies

Q1. What is DDOS Attack and what you will use to prevent it.
View answer (1)

Software Engineer Interview Questions & Answers

user image Thaiyap Ayubkhan

posted on 28 Nov 2023

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

I applied via LinkedIn and was interviewed before Nov 2022. There were 3 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 Resume tips
Round 2 - Coding Test 

It was like screening of our profile

Round 3 - Technical 

(1 Question)

  • Q1. All Techinical questions covered with scenario

Interview Preparation Tips

Interview preparation tips for other job seekers - be positve and tell what you know

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 (203)

Softech Infinium Solutions interview questions for popular designations

 Software Engineer

 (2)

 Senior QA Engineer

 (1)

 Front end Developer

 (1)

 Jr Python Developer

 (1)

 AWS Cloud Engineer

 (1)

 IOS Developer

 (1)

IOS Developer Interview Questions & Answers

user image Anonymous

posted on 22 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic coding qustions

Round 2 - Technical 

(2 Questions)

  • Q1. Explain mvc and tell difference between mvc and mvvm
  • Ans. 

    MVC is a design pattern that separates an application into three main components: Model, View, and Controller. MVVM is a variation of MVC with an added ViewModel layer.

    • MVC stands for Model-View-Controller, where Model represents the data, View represents the UI, and Controller acts as an intermediary between Model and View.

    • MVVM stands for Model-View-ViewModel, which adds a ViewModel layer between the View and Model. Vi...

  • Answered by AI
  • Q2. Memory management in swift
  • Ans. 

    Memory management in Swift involves automatic reference counting (ARC) to manage memory allocation and deallocation.

    • Swift uses automatic reference counting (ARC) to track and manage memory usage.

    • ARC automatically deallocates objects when they are no longer needed.

    • Developers can use weak and unowned references to prevent strong reference cycles.

    • Using value types like structs can help reduce memory management issues.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - strengthen in ur coding skills

Skills evaluated in this interview

IOS Developer Interview Questions asked at other Companies

Q1. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Google maps 3- How u manage the constraints of any label , stick at every corner & center of view controller, when getting data from json.
View answer (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 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 Resume tips
Round 2 - Coding Test 

Started from basic coding, advance coding on Python and Mysql

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on Final Keyword
  • Q2. Question on shutil module
Round 4 - HR 

(1 Question)

  • Q1. Normal questions about background, salary

Jr Python Developer Interview Questions asked at other Companies

Q1. Alice has n candies, where each candy is a different type. She wants to split them equally with her brother, Bob. The Doctor advised Alice to only eat n?2 of the candies she has. Return the maximum number of unique candy types Alice can hav... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Basic api fetching, axios call, react js and redux

Round 2 - Technical 

(1 Question)

  • Q1. React and js questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare on coding

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

I applied via Referral

Interview Questionnaire 

5 Questions

  • Q1. You have knowledge of data structure? Tell me about it
  • Ans. 

    Data structures are a way to organize and store data efficiently.

    • Data structures are used to store and manipulate data in a structured manner.

    • They provide different ways to access and perform operations on the data.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
  • Q2. Tell me something about your major project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Incorporated user authentication and authorization features

    • Integrated real-time notifications using Socket.io

  • Answered by AI
  • Q3. What is your name ?
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common name in English-speaking countries

    • Easy to remember and pronounce

  • Answered by AI
  • Q4. What does my name mean?
  • Ans. 

    The question is unrelated to the medical field and is not a puzzle or riddle.

    • The question is asking about the meaning of the interviewer's name.

    • You can ask the interviewer about the origin or cultural significance of their name.

    • You can also mention that names often have different meanings in different languages or cultures.

  • Answered by AI
  • Q5. What are your strenghts?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong communication abilities.

    • Strong problem-solving skills - I enjoy tackling complex issues and finding creative solutions.

    • Attention to detail - I am meticulous in my work and strive for accuracy in all tasks.

    • Strong communication abilities - I can effectively convey ideas and collaborate with team members.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The written test of hexaware was way more tough than i thought. Basically you will see on other website that hexaware written test is easy but it was not trust me. So talking more about my test there were 4 sections verbal, aptitude, analytical reasoning and technical also. I am a electronics and communication student so there were technical question from my field of study only but for IT and Computer Science there were programming questions. And there is 10 mins of essay writting also.
Tips: Be prepare for anything. Dont judge the written exam will be easy or tough anything can happen and prepare your best.
Duration: 60 minutes
Total Questions: 75

Round: Group Discussion
Experience: Well, i think my group discussion topic was easy but the only problem was that every person is fully aware of that topic so thought process has become very simple. But still somehow i manage to clear this round also.
Tips: Be calm and if you dont know about some topic so wait for few minutes and listen what others are saYing . The HR will only be checking your communication skills.
Duration: 10 mins minutes

Round: Technical Interview
Experience: I am an EC student so there were very basic question of c and data structure programming and from my field he only asked about my project work and keep asking question from it. I guess he was checking my patience.

Round: HR Interview
Experience: The HR round was quite good. The question was really very basic from my family and strengths and weakness. But i dont know why he asked me a question of c programming and he asked me to make a program generally i have never heard that in HR interview, the HR asking you a technical question but anything can happen .
Tips: Keep yourself calm . Keep wide knowledge of your field.

Skills: Basic C/C++, Communication, Ability To Deliver On A Project, Ability To Work In A Team, Ability To Deliver On A Project, Advance Communication, Confidence
College Name: IPS College of Technology & Management
Motivation: Hexaware is globally recognised company plus its an MNC.

Skills evaluated in this interview

Interview Preparation Tips

Round: Group Discussion
Experience: The result were announced just after the session. The basis of selection was confidence & communication skill as usual.
It was mostly a nice & health discussion.
Tips: Talk short & precise.
Use your hands in explanations.
Dont argue just discuss
Duration: 15 min minutes

Round: Technical Interview
Experience: Questions from c programming, database management, c++, data structure were asked. The HR was trying to confuse and showing confidence was important.

Tips: Answer with confidence
Dont say directly NO to a question

Round: HR Interview
Experience: It was all about confidence and your ability to converse.
HR asked me about myself and why did i want to join the firm etc.
He was mostly looking for a positive attitude.
Tips: Keep a smile.
Converse well & again be confident.
Confidence is the key but overconfidence is bad.

General Tips: Keep your cool
Be confident
Have a positive approach
Skill Tips: Prepare well for Interview
Be confident about wat you know.
Skills: Programming, positive attitude, Confidence
College Name: Gandhi Institute Of Engineering And Technology
Motivation: It is a MNC.
Growth will be good
Future scopes are high
Contribute & help others!
anonymous
You can choose to be anonymous

Softech Infinium Solutions Interview FAQs

How many rounds are there in Softech Infinium Solutions interview?
Softech Infinium Solutions interview process usually has 2-3 rounds. The most common rounds in the Softech Infinium Solutions interview process are Technical, Coding Test and Resume Shortlist.
What are the top questions asked in Softech Infinium Solutions interview?

Some of the top questions asked at the Softech Infinium Solutions interview -

  1. Explain the concept of EC2; instances root device and block devic...read more
  2. How many types of EC2 instances is the...read more
  3. How to perform S3 cross region replicati...read more

Recently Viewed

JOBS

Larsen & Toubro Limited

No Jobs

INTERVIEWS

Unisys

No Interviews

INTERVIEWS

Unisys

No Interviews

LIST OF COMPANIES

Larsen & Toubro Limited

Associated Companies

INTERVIEWS

Unisys

No Interviews

SALARIES

American Megatrends

SALARIES

American Megatrends

No Salaries

SALARIES

American Megatrends

No Salaries

REVIEWS

American Megatrends

No Reviews

REVIEWS

American Megatrends

No Reviews

Tell us how to improve this page.

Softech Infinium Solutions Interview Process

based on 7 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k 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
 • 791 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
View all

Softech Infinium Solutions Reviews and Ratings

based on 41 reviews

4.4/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

4.2

Salary

4.3

Job security

4.2

Company culture

3.9

Promotions

4.2

Work satisfaction

Explore 41 Reviews and Ratings
Software Engineer
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Java Developer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Softech Infinium Solutions with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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