AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Outscal

Compare button icon Compare button icon Compare
4.7

based on 7 Reviews

  • About
  • Reviews
    7
  • Salaries
    44
  • Interviews
    3
  • Jobs
    -
  • Benefits
    -
  • Photos
    -

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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • Q7. Abstract Classes and Interface
  • Add your answer

Interview Preparation Tips

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

Skills evaluated in this interview

Anonymous

Mern Full Stack Developer Interview Questions & Answers

user image Anujeet Swain

posted on 31 May 2024

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

(1 Question)

  • Q1. React machine coding + DSA questions easy to medium level
  • Add your answer
Anonymous

QA Test Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Apr 2024

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
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
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

company Logo

Business Analyst Interview Questions & Answers

Cognizant user image Anonymous

posted on 3 Dec 2020

Interview Questionnaire 

1 Question

  • Q1. Where did you work on the specific skill required for the job?
  • Ans. 

    I honed my analytical skills through various projects in my previous roles, focusing on data interpretation and stakeholder communication.

    • Worked on a project analyzing customer feedback data to improve product features, resulting in a 20% increase in user satisfaction.

    • Collaborated with cross-functional teams to gather requirements for a new software tool, ensuring alignment with business objectives.

    • Utilized SQL and Exc...

  • Answered by AI
    View 1 more answer
Anonymous
company Logo

Intern Interview Questions & Answers

Cognizant user image vagmi gupta

posted on 13 Jul 2022

I appeared for an interview before Jul 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. About your project and s1kills
  • Add your answer
  • Q2. Interview went well .
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare atleast one language or technology
Anonymous
company Logo

Data Analyst Interview Questions & Answers

Amazon user image himanshu kohli

posted on 31 May 2021

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

Interview Questionnaire 

1 Question

  • Q1. Introducing your self
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Anonymous
company Logo

Software Developer Interview Questions & Answers

TCS user image Anonymous

posted on 29 Jun 2022

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
  • Add your answer

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
Anonymous
Are these interview questions helpful?
company Logo

Associate Interview Questions & Answers

Amazon user image Anonymous

posted on 23 Feb 2020

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Add your answer
  • 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
    Add your answer

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
Anonymous
company Logo

Consultant Interview Questions & Answers

Infosys user image Anonymous

posted on 11 Oct 2020

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Add your answer
  • Q2. Be yourself
  • Add your answer
Anonymous
company Logo

Senior Associate Interview Questions & Answers

Wipro user image Anonymous

posted on 29 Jul 2022

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
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.
Anonymous

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.

Interview Questions for Popular Designations

  • Associate Interview Questions
  • Executive Interview Questions
  • Team Lead Interview Questions
  • Senior Associate Interview Questions
  • Business Analyst Interview Questions
  • Graduate Engineer Trainee (Get) Interview Questions
  • Associate Software Engineer Interview Questions
  • Data Analyst Interview Questions
  • Show more
  • Sales Officer Interview Questions
  • Deputy Manager Interview Questions

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
TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact
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
Outscal Salaries in India
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

TCS

3.6
Compare
Accenture

Accenture

3.8
Compare
Wipro

Wipro

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Outscal Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter