Upload Button Icon Add office photos

Filter interviews by

Solitaire Infosys Interview Questions, Process, and Tips

Updated 14 Nov 2024

Top Solitaire Infosys Interview Questions and Answers

View all 15 questions

Solitaire Infosys Interview Experiences

Popular Designations

16 interviews found

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

I was interviewed in Sep 2024.

Round 1 - Aptitude Test 

Averages, speed, pattern finding, clocks

Round 2 - Technical 

(2 Questions)

  • Q1. Char range in JAVA
  • Ans. 

    In Java, the char data type represents a single 16-bit Unicode character.

    • char data type stores a single character, such as 'A' or '$'.

    • char data type is 16 bits in size and can represent values from 0 to 65,535.

    • char data type can also be used to store Unicode characters, allowing for internationalization support.

  • Answered by AI
  • Q2. What will be the output of following code snippet
  • Ans. 

    The code snippet will output 'Hello World!'

    • The code snippet is a simple print statement that outputs the string 'Hello World!'

    • There are no variables or conditions involved, so the output will always be 'Hello World!'

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Python, C Programming, HTML, CSS, Java, Data Structure
  • Q2. How would you handle exceptions in Python?
  • Ans. 

    Exceptions in Python are handled using try-except blocks to catch and handle errors gracefully.

    • Use try-except blocks to catch and handle exceptions in Python.

    • Specify the type of exception to catch or use 'except' to catch all exceptions.

    • Use 'finally' block to execute code regardless of whether an exception was raised or not.

    • Reraise exceptions using 'raise' keyword within except block if needed.

    • Handle specific exception...

  • Answered by AI
  • Q3. Explain the concept of method overloading and method overriding in Java.
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is redefining a method in a subclass with the same signature as in the superclass.

    • Method overloading allows a class to have multiple methods with the same name but different parameters. Example: void print(int a) and void print(int a, int b).

    • Method overriding occurs when a subclass provides a s...

  • Answered by AI
  • Q4. How would you implement polymorphism in C++?
  • Ans. 

    Polymorphism in C++ can be implemented using function overloading, function overriding, and virtual functions.

    • Use function overloading to have multiple functions with the same name but different parameters.

    • Use function overriding to have a function in a derived class with the same name and parameters as a function in the base class.

    • Use virtual functions to achieve runtime polymorphism by allowing a function in a base c

  • Answered by AI
  • Q5. Explain the difference between == and === operators in JavaScript.
  • Ans. 

    In JavaScript, == is used for equality comparison, while === is used for strict equality comparison.

    • The == operator compares two values for equality, performing type coercion if necessary.

    • The === operator compares two values for strict equality, without type coercion.

    • Example: 1 == '1' will return true, but 1 === '1' will return false.

  • Answered by AI
Round 2 - Aptitude Test 

About all these skills and related skills

Skills evaluated in this interview

Python Developer Intern Interview Questions asked at other Companies

Q1. what is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what is a dictionary? monkey patching. w... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between abstraction and encapsulation
  • Ans. 

    Abstraction focuses on hiding implementation details, while encapsulation focuses on bundling data and methods together.

    • Abstraction is achieved through abstract classes and interfaces, allowing for the creation of blueprints for classes without specifying implementation details.

    • Encapsulation involves bundling data (attributes) and methods (behaviors) together within a class, and controlling access to them through acces...

  • Answered by AI
  • Q2. What is the use of dot operator
  • Ans. 

    The dot operator is used in Java to access members of a class, such as variables and methods.

    • Used to access variables and methods of a class

    • Syntax: object.variable or object.method()

    • Example: String str = new String(); str.length()

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Mern Stack Developer Interview Questions & Answers

user image aurpit 21BC007

posted on 14 Nov 2024

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Pipeline in express
  • Ans. 

    Pipeline in Express is a series of functions that are executed in a specific order during the request-response cycle.

    • Middleware functions are added to the pipeline using app.use() or app.METHOD() functions.

    • Each middleware function can modify the request and response objects, or end the request-response cycle.

    • Middleware functions can be used for tasks like logging, authentication, error handling, etc.

  • Answered by AI

Skills evaluated in this interview

Mern Stack Developer Interview Questions asked at other Companies

Q1. Middle Of Linked ListGiven the head node of the singly linked list, return a pointer pointing to the middle of the linked list. If there are an odd number of elements, return the middle element if there are even elements return the one whic... read more
View answer (3)

Solitaire Infosys interview questions for popular designations

 Software Developer

 (2)

 ASP.NET Developer

 (1)

 Associate Business Analyst

 (1)

 Chartered Accountant

 (1)

 Chartered Accountantchartered Accountant

 (1)

 Diploma Computer Engineer

 (1)

 Java Developer

 (1)

 Java Full Stack Developer

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Mathematics,english ,verbal

Round 2 - Technical 

(1 Question)

  • Q1. Hooks related ,props,components,router
Round 3 - HR 

(1 Question)

  • Q1. Strengths,weakness,short-term goal,long term goal

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (1)

Get interview-ready with Top Solitaire Infosys Interview Questions

Web Developer Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Thye have asked 4 coding questins

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good expericne

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given DifferenceYou are given an integer array 'ARR' of size ‘N’ and two integers ‘A’ and ‘B’. You need to find if there are two distinct indices in the array, such that the absolute difference of values on those indices ... read more
View answer (4)

Jobs at Solitaire Infosys

View all
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2023. 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 - Coding Test 

Print hello world in programming in c

Round 3 - Personal Interview 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me about your future
  • Q3. In computer engineering

Interview Preparation Tips

Topics to prepare for Solitaire Infosys Diploma Computer Engineer interview:
  • Capital Goods
Interview preparation tips for other job seekers - Interview is best for your future dreams

Diploma Computer Engineer Interview Questions asked at other Companies

Q1. Whats is this bios ?
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude test.Basic aptitude and reasoning questions and english grammer question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Java basic core java and the projects features of java oops
  • Q2. What is java and features of java
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • Java is object-oriented, allowing for the creation of reusable code and modular programs

    • Java is known for its robust standard library, which includes tools for networking, I/O, and more

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good company for internship

Skills evaluated in this interview

Java Full Stack Developer Interview Questions asked at other Companies

Q1. Coding question - 1. Create a immutable class of orders. What happens when two objects are created out of it. 2.Using the immutable orders create a set of orders and how will you sort these out. 3.Given a List of list of string of integers ... read more
View answer (1)

I applied via campus placement at University Business School (UBS), Chandigarh and was interviewed in Aug 2022. There were 2 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 tips
Round 2 - Assignment 

If you do the assignment they will select you for an internship sure.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just work on your resume, add relevant skills like DSA, OOPs, Database, etc

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

I applied via Other and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Why should u choose this company?
  • Q2. Why should i give this job for u?
  • Q3. What is the use of this job for u?

Interview Preparation Tips

Interview preparation tips for other job seekers - In interview first we should introduce ourself and. In interview they asked any questions means we should give oneword answer

Associate Business Analyst Interview Questions asked at other Companies

Q1. problem identification - how to reduce per delivery cost from Rs. 75 (hypothetical value).
View answer (1)

Solitaire Infosys Interview FAQs

How many rounds are there in Solitaire Infosys interview?
Solitaire Infosys interview process usually has 2-3 rounds. The most common rounds in the Solitaire Infosys interview process are Aptitude Test, Technical and HR.
How to prepare for Solitaire Infosys 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 Solitaire Infosys. The most common topics and skills that interviewers at Solitaire Infosys expect are Communication Skills, Javascript, Sales, HTML and Laravel.
What are the top questions asked in Solitaire Infosys interview?

Some of the top questions asked at the Solitaire Infosys interview -

  1. How would you handle exceptions in Pyth...read more
  2. How would you implement polymorphism in C...read more
  3. How you can maximize the sale of an organizati...read more
How long is the Solitaire Infosys interview process?

The duration of Solitaire Infosys interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Solitaire Infosys Interview Process

based on 13 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
View all

Solitaire Infosys Reviews and Ratings

based on 45 reviews

3.3/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.1

Salary

3.1

Job security

3.4

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 45 Reviews and Ratings
Business Development Manager

Mohali,

Chandigarh

+1

1-4 Yrs

₹ 2-5.5 LPA

Java Developer

Mohali

1-6 Yrs

Not Disclosed

Android Developer

Mohali

1-6 Yrs

Not Disclosed

Explore more jobs
Engineer
20 salaries
unlock blur

₹1.3 L/yr - ₹38 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹6.8 L/yr - ₹16 L/yr

Senior Engineer
9 salaries
unlock blur

₹6.5 L/yr - ₹32 L/yr

Manager / Sr Manager - Administration
8 salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Assistant Manager/Manager-(Nontechnical)
8 salaries
unlock blur

₹2.7 L/yr - ₹18.5 L/yr

Explore more salaries
Compare Solitaire Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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