Upload Button Icon Add office photos
Engaged Employer

i

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

OptiSol Business Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

OptiSol Business Solutions Interview Questions, Process, and Tips

Updated 27 Dec 2024

Top OptiSol Business Solutions Interview Questions and Answers

View all 7 questions

OptiSol Business Solutions Interview Experiences

Popular Designations

16 interviews found

Plsql Developer Interview Questions & Answers

user image Saranya shankar

posted on 3 Sep 2024

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

I applied via Walk-in and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

Round 1 group discussion

Round 2 - Aptitude Test 

Round 2 aptitude test

Round 3 - Coding Test 

Pls SQL basing theory questions and 2 programs factorial and exceptional handling

Round 4 - Technical 

(1 Question)

  • Q1. Basic technical questions expecting little higher

Plsql Developer Interview Questions asked at other Companies

Q1. What is procedure in plsql and it's syntax and difference between procedure and function?
View answer (7)

digital ml Interview Questions & Answers

user image santhosh chandran

posted on 2 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

They asked about how have you utilized chatGPT in your learning process and day to day life

Round 2 - Aptitude Test 

Normal mathematical and logical reasoning

Round 3 - Technical 

(3 Questions)

  • Q1. (a+b)^2 using method over loading
  • Ans. 

    Method overloading can be used to calculate (a+b)^2

    • Create a method with the same name but different parameters to handle different data types

    • Overload the method to accept different data types for a and b

    • Example: public int calculateSquare(int a, int b) { return (a + b) * (a + b); }

    • Example: public double calculateSquare(double a, double b) { return (a + b) * (a + b); }

  • Answered by AI
  • Q2. Bubble sort and array
  • Q3. Sql queries to get data

Devops Engineer Interview Questions & Answers

user image Nishanth J

posted on 25 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Women's safety topic

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Devops Engineer Interview Questions & Answers

user image Dheepan Sathya Palani Samy

posted on 27 Dec 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy Questions just tick the answers only

Round 2 - Coding Test 

DevOps then python technical Assessment

Devops Engineer Interview Questions asked at other Companies

Q1. if you want to connect multiple vpc ,we have 2 or 3 vpc, you have to connect ec2 to each vpc? so how you can achieve that?
View answer (3)

OptiSol Business Solutions interview questions for popular designations

 Devops Engineer

 (2)

 Plsql Developer

 (2)

 Software Engineer

 (2)

 Ai Ml Engineer

 (1)

 Automation Test Analyst

 (1)

 Automation Test Lead

 (1)

 Finance Planning and Analysis Manager

 (1)

 Machine Learning Engineer

 (1)

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Mostly on python
Round 2 - Coding Test 

High expectations in python and machine learning

Ai Ml Engineer Interview Questions asked at other Companies

Q1. Can you describe a recent machine learning project you built, including a walkthrough of the project and a code sample?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Collection in java 2. Roles and responsibilites 3. Java basic programs 4. Framework structure

Automation Test Analyst Interview Questions asked at other Companies

Q1. Explain automation testing
View answer (1)

Jobs at OptiSol Business Solutions

View all
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 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 - Technical 

(1 Question)

  • Q1. Synopsis of all key skills overall randomly they asked
Round 3 - Technical 

(1 Question)

  • Q1. They asked for project that i was done and related to that skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident enough to ans

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. 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 tips
Round 2 - Coding Test 

There was a basic python coding test

Round 3 - Technical 

(5 Questions)

  • Q1. What is dropout?
  • Ans. 

    Dropout is a regularization technique used in neural networks to prevent overfitting by randomly setting some neuron outputs to zero during training.

    • Dropout is a regularization technique used in neural networks to prevent overfitting.

    • During training, a fraction of neurons are randomly selected and their outputs are set to zero.

    • This helps in preventing co-adaptation of neurons and improves generalization.

    • Dropout is comm...

  • Answered by AI
  • Q2. What is batch Normalization
  • Ans. 

    Batch Normalization is a technique used to improve the training of deep neural networks by normalizing the input of each layer.

    • Batch Normalization helps in reducing internal covariate shift by normalizing the input of each layer.

    • It speeds up the training process by allowing higher learning rates and reducing the dependence on initialization.

    • It can be applied to convolutional neural networks, recurrent neural networks, ...

  • Answered by AI
  • Q3. What is Random Forest
  • Ans. 

    Random Forest is an ensemble learning method that builds multiple decision trees and merges them to improve accuracy and prevent overfitting.

    • Random Forest is a collection of decision trees that are trained on random subsets of the data.

    • Each tree in the Random Forest independently makes a prediction, and the final prediction is determined by a majority vote.

    • Random Forest is effective for classification and regression ta...

  • Answered by AI
  • Q4. What is confusion matrix
  • Ans. 

    Confusion matrix is a table used to evaluate the performance of a classification model.

    • It is a matrix with rows representing the actual class and columns representing the predicted class.

    • It helps in understanding the performance of the model by showing true positives, true negatives, false positives, and false negatives.

    • It is commonly used in machine learning to evaluate the accuracy of a classification model.

    • Example: ...

  • Answered by AI
  • Q5. What is a recurrent neural network
  • Ans. 

    A recurrent neural network (RNN) is a type of neural network designed to handle sequential data by maintaining a memory of previous inputs.

    • RNNs have loops that allow information to persist, making them suitable for tasks like speech recognition, language translation, and time series prediction.

    • They can process inputs of variable length and are capable of learning patterns in sequences.

    • RNNs suffer from the vanishing gra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in algorithms

Skills evaluated in this interview

Machine Learning Engineer Interview Questions asked at other Companies

Q1. Subset Sum Equal To KYou are given an array/list ‘ARR’ of ‘N’ positive integers and an integer ‘K’. Your task is to check if there exists a subset in ‘ARR’ with a sum equal to ‘K’. Note: Return true if there exists a subset with sum equal t... read more
View answer (3)
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. About my platform related
  • Q2. Abot my platform related
Round 3 - Coding Test 

UI design and crud operation tasks

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion fully connected

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying , work smart
complete all rounds with your clam mind

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2022.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me abt urself ,previous
  • Q2. Previous office project

Interview Preparation Tips

Interview preparation tips for other job seekers - reports,plsql,sql ,hdkuwu kaskdo bjswjk kjnwkd hdi ok/o;mdw h hdq /okljd hjkwh lkjw.lkdj

Plsql Developer Interview Questions asked at other Companies

Q1. What is procedure in plsql and it's syntax and difference between procedure and function?
View answer (7)

OptiSol Business Solutions Interview FAQs

How many rounds are there in OptiSol Business Solutions interview?
OptiSol Business Solutions interview process usually has 2-3 rounds. The most common rounds in the OptiSol Business Solutions interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for OptiSol Business Solutions 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 OptiSol Business Solutions. The most common topics and skills that interviewers at OptiSol Business Solutions expect are Javascript, Python, SQL, Internship and AWS.
What are the top questions asked in OptiSol Business Solutions interview?

Some of the top questions asked at the OptiSol Business Solutions interview -

  1. Selenium problem solving methods we follo...read more
  2. What is a recurrent neural netw...read more
  3. What is dropo...read more
How long is the OptiSol Business Solutions interview process?

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

Tell us how to improve this page.

OptiSol Business Solutions Interview Process

based on 13 interviews

Interview experience

3.4
  
Average
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
Affine Interview Questions
3.3
 • 48 Interviews
View all

OptiSol Business Solutions Reviews and Ratings

based on 145 reviews

4.1/5

Rating in categories

4.1

Skill development

4.0

Work-life balance

3.8

Salary

3.8

Job security

4.1

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 145 Reviews and Ratings
Talend ETL Lead

Chennai

5-8 Yrs

Not Disclosed

Presales Executive ( Content Writer

Chennai

2-7 Yrs

Not Disclosed

Data Engineer - Presales Specialist

Chennai

3-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
114 salaries
unlock blur

₹2 L/yr - ₹11.1 L/yr

Software Developer
31 salaries
unlock blur

₹1 L/yr - ₹10.1 L/yr

Machine Learning Engineer
26 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Test Engineer
24 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹4.1 L/yr - ₹10 L/yr

Explore more salaries
Compare OptiSol Business Solutions 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