Upload Button Icon Add office photos

Outscal

Compare button icon Compare button icon Compare

Filter interviews by

Outscal Interview Questions and Answers

Updated 3 Jun 2024
Popular Designations

6 Interview questions

An Intern was asked
Q. Given the head of a singly linked list, return the middle node of the linked list. If there are two middle nodes, return the second middle node.
Ans. 

To find the middle of a linked list, use two pointers - one moving at double the speed of the other.

  • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

  • Move the slow pointer by one node and the fast pointer by two nodes in each iteration.

  • When the fast pointer reaches the end of the list, the slow pointer will be at the middle node.

View all Intern interview questions
An Intern was asked
Q. What are Smart Pointers?
Ans. 

Smart pointers are objects that manage the memory of dynamically allocated objects in C++ to prevent memory leaks.

  • Smart pointers automatically delete the object they point to when they are no longer needed.

  • Examples include unique_ptr, shared_ptr, and weak_ptr in C++.

  • They help in preventing memory leaks and dangling pointers.

  • Smart pointers provide better memory management compared to raw pointers.

View all Intern interview questions
An Intern was asked
Q. What are virtual functions and why are they needed?
Ans. 

Virtual functions in C++ allow for dynamic polymorphism by enabling a function to be overridden in a derived class.

  • Virtual functions are used in C++ to achieve runtime polymorphism, where the function to be called is determined at runtime based on the object's type.

  • They are needed to enable a base class pointer to call a function that is overridden in a derived class.

  • Virtual functions help in achieving the Open/Cl...

View all Intern interview questions
An Intern was asked
Q. What is Diamond Problem in C++ ? How to solve it ?
Ans. 

Diamond Problem occurs in multiple inheritance when a class inherits from two classes that have a common base class.

  • Diamond Problem arises when a class inherits from two classes that have a common base class.

  • Ambiguity arises in accessing the common base class members.

  • To solve Diamond Problem, virtual inheritance is used to ensure only one copy of the common base class is inherited.

View all Intern interview questions
An Intern was asked
Q. Contructors and its types. Types of Copy Constructor
Ans. 

Constructors are special member functions in a class used to initialize objects. Copy constructors create a new object as a copy of an existing object.

  • Types of constructors: Default constructor, Parameterized constructor, Copy constructor, and Destructor

  • Types of copy constructors: Shallow copy constructor and Deep copy constructor

  • Shallow copy constructor copies the values of the members of one object to another ob...

View all Intern interview questions
An Intern was asked
Q. Travelling Salesman Problem
Ans. 

The Travelling Salesman Problem is a classic optimization problem where a salesman needs to visit a set of cities exactly once and return to the starting city with the shortest possible route.

  • The goal is to find the shortest possible route that visits each city exactly once and returns to the starting city.

  • This problem is NP-hard, meaning there is no known efficient algorithm to solve it for large numbers of citie...

View all Intern interview questions

Outscal Interview Experiences

3 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 23 Aug 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Assignment 

I was given 3 C++ code submission of DSA questions, but it had errors in syntax and logic. My task was to find as many errors as possible in the code and provide correct solution to the question. They asked me to provide video solution.

Round 2 - One-on-one 

(7 Questions)

  • Q1. Contructors and its types. Types of Copy Constructor
  • Ans. 

    Constructors are special member functions in a class used to initialize objects. Copy constructors create a new object as a copy of an existing object.

    • Types of constructors: Default constructor, Parameterized constructor, Copy constructor, and Destructor

    • Types of copy constructors: Shallow copy constructor and Deep copy constructor

    • Shallow copy constructor copies the values of the members of one object to another object....

  • Answered by AI
  • Q2. What are Smart Pointers
  • Ans. 

    Smart pointers are objects that manage the memory of dynamically allocated objects in C++ to prevent memory leaks.

    • Smart pointers automatically delete the object they point to when they are no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr in C++.

    • They help in preventing memory leaks and dangling pointers.

    • Smart pointers provide better memory management compared to raw pointers.

  • Answered by AI
  • Q3. What is Diamond Problem in C++ ? How to solve it ?
  • Ans. 

    Diamond Problem occurs in multiple inheritance when a class inherits from two classes that have a common base class.

    • Diamond Problem arises when a class inherits from two classes that have a common base class.

    • Ambiguity arises in accessing the common base class members.

    • To solve Diamond Problem, virtual inheritance is used to ensure only one copy of the common base class is inherited.

  • Answered by AI
  • Q4. Virtual Functions and why is it needed ?
  • Ans. 

    Virtual functions in C++ allow for dynamic polymorphism by enabling a function to be overridden in a derived class.

    • Virtual functions are used in C++ to achieve runtime polymorphism, where the function to be called is determined at runtime based on the object's type.

    • They are needed to enable a base class pointer to call a function that is overridden in a derived class.

    • Virtual functions help in achieving the Open/Closed ...

  • Answered by AI
  • Q5. Middle of a linked list
  • Ans. 

    To find the middle of a linked list, use two pointers - one moving at double the speed of the other.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one node and the fast pointer by two nodes in each iteration.

    • When the fast pointer reaches the end of the list, the slow pointer will be at the middle node.

  • Answered by AI
  • Q6. Travelling Salesman Problem
  • Ans. 

    The Travelling Salesman Problem is a classic optimization problem where a salesman needs to visit a set of cities exactly once and return to the starting city with the shortest possible route.

    • The goal is to find the shortest possible route that visits each city exactly once and returns to the starting city.

    • This problem is NP-hard, meaning there is no known efficient algorithm to solve it for large numbers of cities.

    • One...

  • Answered by AI
  • Q7. Abstract Classes and Interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare C++ and OOPS nicely.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. React machine coding + DSA questions easy to medium level
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Selenium, java, Manual Testing

Round 2 - Technical 

(1 Question)

  • Q1. Manual Testing, Java ,Selenium

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Outscal?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. *Introduce yourself *Purpose of working in the Company *Educational Background *Family Background *Goals and Ambition
  • Ans. 

    Experienced professional with a strong educational background and clear career ambitions, eager to contribute to the company's success.

    • I have over 5 years of experience in project management, leading teams to successfully deliver complex projects on time.

    • I hold a Master's degree in Business Administration from XYZ University, where I specialized in strategic management.

    • My family has always emphasized the importance of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance

Interview Questionnaire 

1 Question

  • Q1. 1)Tmaus? 2 ) why are you lefted previous job? 3) technical skills knowledge 4) work in under pressure? 5) hr round 6) manager round
  • Ans. 

    Interview questions for an Associate position cover various aspects like motivation, skills, and handling pressure.

    • 1) Tmaus: This could refer to a specific term or acronym; clarify its meaning during the interview.

    • 2) Leaving previous job: Focus on seeking new challenges or growth opportunities, not negative experiences.

    • 3) Technical skills: Highlight relevant skills like data analysis, programming languages, or software...

  • Answered by AI

Outscal Interview FAQs

How many rounds are there in Outscal interview?
Outscal interview process usually has 2 rounds. The most common rounds in the Outscal interview process are Technical, Resume Shortlist and Assignment.
How to prepare for Outscal 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 Outscal. The most common topics and skills that interviewers at Outscal expect are Javascript, Data Structures, Gaming, HTML and CSS.
What are the top questions asked in Outscal interview?

Some of the top questions asked at the Outscal interview -

  1. What is Diamond Problem in C++ ? How to solve i...read more
  2. Virtual Functions and why is it neede...read more
  3. Contructors and its types. Types of Copy Construc...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 3 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Outscal Reviews and Ratings

based on 7 reviews

4.7/5

Rating in categories

3.6

Skill development

4.2

Work-life balance

4.6

Salary

3.9

Job security

4.7

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 7 Reviews and Ratings
HR Manager
4 salaries
unlock blur

₹10 L/yr - ₹11 L/yr

Game Designer
4 salaries
unlock blur

₹4.8 L/yr - ₹4.8 L/yr

AM Human Resource
4 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Software Developer
3 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare Outscal with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview