Upload Button Icon Add office photos

ONE BCG

Compare button icon Compare button icon Compare

Filter interviews by

ONE BCG Interview Questions and Answers

Updated 17 Dec 2024
Popular Designations

9 Interview questions

A Front end Developer was asked 6mo ago
Q. They usually asked me about OOPs concepts and coding. Can you elaborate?
Ans. 

Object-Oriented Programming (OOP) concepts are fundamental for structuring code in a modular and reusable way.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'color' and methods like 'drive()'.

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: 'ElectricCar' inherits from 'Car...

View all Front end Developer interview questions
A Finance Intern was asked 9mo ago
Q. What are the different TDS Rates and their Sections?
Ans. 

TDS rates vary based on the type of income and are governed by different sections of the Income Tax Act.

  • TDS rate for salary income is as per the individual's tax slab

  • TDS rate for interest income is usually 10%

  • TDS rate for rent income is 10% if the annual rent exceeds Rs. 2.4 lakhs

  • TDS rate for professional fees is 10%

  • TDS rate for commission income is 5%

View all Finance Intern interview questions
A Finance Intern was asked 9mo ago
Q. What is the reverse charge mechanism?
Ans. 

Reverse charge mechanism is a system where the recipient of the goods or services is liable to pay the tax instead of the supplier.

  • Under reverse charge mechanism, the recipient of the goods or services is responsible for paying the tax to the government instead of the supplier.

  • This mechanism is commonly used in B2B transactions where the recipient is a registered business entity.

  • It helps in preventing tax evasion ...

View all Finance Intern interview questions
A Senior Software Engineer was asked
Q. How do you create a menu in Ionic v4?
Ans. 

To create a menu in Ionic v4, you can use the ion-menu component.

  • Use the ion-menu component in your app's HTML template to define the menu layout.

  • Configure the menu content and behavior using attributes like side, type, and contentId.

  • Add ion-menu-toggle buttons in your app's main content area to toggle the menu.

  • Customize the menu styling and behavior using CSS and Angular logic.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. How is the Ionic Framework v4 different from v3?
Ans. 

Ionic v4 has significant performance improvements, new features like lazy loading, and better support for web components.

  • Improved performance with faster rendering and reduced load times

  • Introduction of lazy loading for better app performance

  • Better support for web components integration

  • Updated design system with new features like CSS variables and shadow parts

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Explain Ionic life-cycle hooks.
Ans. 

Ionic life-cycle hooks are methods that allow developers to perform actions at specific points in the life-cycle of an Ionic component.

  • Ionic life-cycle hooks include ionViewWillEnter, ionViewDidEnter, ionViewWillLeave, ionViewDidLeave, ionViewWillUnload, and ionViewDidUnload.

  • These hooks can be used to perform tasks such as data loading, navigation, and cleanup.

  • For example, ionViewWillEnter is called just before th...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. How do you translate an Ionic app into multiple languages?
Ans. 

To translate an Ionic app in multiple languages, you can use ngx-translate library.

  • Use ngx-translate library for Angular to handle translations in Ionic app

  • Create language files for each supported language with key-value pairs for translations

  • Implement language switch functionality to allow users to change languages

  • Use pipes in HTML templates to display translated text dynamically

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. How do you deploy to iOS and Android Apps?
Ans. 

Deploying to iOS and Android apps involves using platform-specific tools and following specific guidelines.

  • For iOS, use Xcode to build and deploy the app to the App Store or TestFlight.

  • For Android, use Android Studio or Gradle to build and deploy the app to Google Play Store or other distribution channels.

  • Follow platform-specific guidelines for app submission, including app signing, metadata, and screenshots.

  • Test ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Explain Angular lifecycle hooks.
Ans. 

Angular life-cycle hooks are methods that allow you to tap into specific points in a component's life-cycle.

  • ngOnChanges: Called when an input property changes

  • ngOnInit: Called once the component is initialized

  • ngDoCheck: Called during every change detection run

  • ngAfterContentInit: Called after content (ng-content) has been projected into the component

  • ngAfterContentChecked: Called after every check of the projected co...

View all Senior Software Engineer interview questions

ONE BCG Interview Experiences

7 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 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 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain Ionic life-cycle hooks
  • Ans. 

    Ionic life-cycle hooks are methods that allow developers to perform actions at specific points in the life-cycle of an Ionic component.

    • Ionic life-cycle hooks include ionViewWillEnter, ionViewDidEnter, ionViewWillLeave, ionViewDidLeave, ionViewWillUnload, and ionViewDidUnload.

    • These hooks can be used to perform tasks such as data loading, navigation, and cleanup.

    • For example, ionViewWillEnter is called just before the com...

  • Answered by AI
  • Q3. How is the ionic framework v4 different from v3?
  • Ans. 

    Ionic v4 has significant performance improvements, new features like lazy loading, and better support for web components.

    • Improved performance with faster rendering and reduced load times

    • Introduction of lazy loading for better app performance

    • Better support for web components integration

    • Updated design system with new features like CSS variables and shadow parts

  • Answered by AI
  • Q4. How do you create a menu in Ionic v4?
  • Ans. 

    To create a menu in Ionic v4, you can use the ion-menu component.

    • Use the ion-menu component in your app's HTML template to define the menu layout.

    • Configure the menu content and behavior using attributes like side, type, and contentId.

    • Add ion-menu-toggle buttons in your app's main content area to toggle the menu.

    • Customize the menu styling and behavior using CSS and Angular logic.

  • Answered by AI
  • Q5. Explain Angular life-cycle hooks
  • Ans. 

    Angular life-cycle hooks are methods that allow you to tap into specific points in a component's life-cycle.

    • ngOnChanges: Called when an input property changes

    • ngOnInit: Called once the component is initialized

    • ngDoCheck: Called during every change detection run

    • ngAfterContentInit: Called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: Called after every check of the projected content

    • ...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about work projects for Ionic & Angular
  • Q2. How to translate ionic app in multiple languages?
  • Ans. 

    To translate an Ionic app in multiple languages, you can use ngx-translate library.

    • Use ngx-translate library for Angular to handle translations in Ionic app

    • Create language files for each supported language with key-value pairs for translations

    • Implement language switch functionality to allow users to change languages

    • Use pipes in HTML templates to display translated text dynamically

  • Answered by AI
  • Q3. How to deploy to iOS and Android Apps?
  • Ans. 

    Deploying to iOS and Android apps involves using platform-specific tools and following specific guidelines.

    • For iOS, use Xcode to build and deploy the app to the App Store or TestFlight.

    • For Android, use Android Studio or Gradle to build and deploy the app to Google Play Store or other distribution channels.

    • Follow platform-specific guidelines for app submission, including app signing, metadata, and screenshots.

    • Test the a...

  • Answered by AI

Skills evaluated in this interview

Finance Intern Interview Questions & Answers

user image Kapil Mehra

posted on 9 Sep 2024

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

(2 Questions)

  • Q1. What is reverse charge mechanism?
  • Ans. 

    Reverse charge mechanism is a system where the recipient of the goods or services is liable to pay the tax instead of the supplier.

    • Under reverse charge mechanism, the recipient of the goods or services is responsible for paying the tax to the government instead of the supplier.

    • This mechanism is commonly used in B2B transactions where the recipient is a registered business entity.

    • It helps in preventing tax evasion and e...

  • Answered by AI
  • Q2. What are different TDS Rates and their Sections?
  • Ans. 

    TDS rates vary based on the type of income and are governed by different sections of the Income Tax Act.

    • TDS rate for salary income is as per the individual's tax slab

    • TDS rate for interest income is usually 10%

    • TDS rate for rent income is 10% if the annual rent exceeds Rs. 2.4 lakhs

    • TDS rate for professional fees is 10%

    • TDS rate for commission income is 5%

  • Answered by AI

Consultant Interview Questions & Answers

user image Yagneeshwar Reddy

posted on 16 Sep 2024

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

Great can be more better

Round 2 - Technical 

(1 Question)

  • Q1. Puzzless and gueestimates
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. General questions about oops and sql
  • Q2. Oops and sql questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was logical based question

Round 2 - Technical 

(1 Question)

  • Q1. They usually asked m oops concepts and did ask me to some coding
  • Ans. 

    Object-Oriented Programming (OOP) concepts are fundamental for structuring code in a modular and reusable way.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'color' and methods like 'drive()'.

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: 'ElectricCar' inherits from 'Car'.

    • Pol...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. They will ask about salary location etc
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Newspaper Ad and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Great process of interview
  • Q2. Strengths and weaknesses

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Here they ask some basic aptitude questions which is easy ad some logical question as well.

Round 2 - One-on-one 

(1 Question)

  • Q1. It will be one on one round with the Manager of the department where they may ask you to code /aptitude question after that it will be HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - It may look like a good company at starting, but its management is so bad that you have no option but to QUIT the job or they Kick you out. Don't give you increment and bonus on time always exploit yours.HR here initial good but when you ask them they never reply on mail there is no such think of official record of your work and they never praise your work

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 ONE BCG?
Ask anonymously on communities.

Interview questions from similar companies

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 applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

ONE BCG Interview FAQs

How many rounds are there in ONE BCG interview?
ONE BCG interview process usually has 1-2 rounds. The most common rounds in the ONE BCG interview process are Technical, Aptitude Test and One-on-one Round.
How to prepare for ONE BCG 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 ONE BCG. The most common topics and skills that interviewers at ONE BCG expect are AWS, Administration, SQL Server, .NET and .Net.
What are the top questions asked in ONE BCG interview?

Some of the top questions asked at the ONE BCG interview -

  1. How to translate ionic app in multiple languag...read more
  2. How is the ionic framework v4 different from ...read more
  3. What are different TDS Rates and their Sectio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 7 interview experiences

Difficulty level

Easy 50%
Moderate 25%
Hard 25%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.7
 • 8.7k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
DXC Technology Interview Questions
3.7
 • 841 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
View all

ONE BCG Reviews and Ratings

based on 32 reviews

2.5/5

Rating in categories

2.5

Skill development

2.4

Work-life balance

2.7

Salary

1.8

Job security

1.9

Company culture

2.2

Promotions

2.4

Work satisfaction

Explore 32 Reviews and Ratings
Software Engineer
32 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Software Developer
10 salaries
unlock blur

₹5 L/yr - ₹8.6 L/yr

Business Analyst
9 salaries
unlock blur

₹5.7 L/yr - ₹10.8 L/yr

Quality Analyst
9 salaries
unlock blur

₹3.6 L/yr - ₹7 L/yr

Senior Quality Analyst
7 salaries
unlock blur

₹5.6 L/yr - ₹11 L/yr

Explore more salaries
Compare ONE BCG with

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview