Upload Button Icon Add office photos

Filter interviews by

CareerBuilder Interview Questions and Answers

Updated 22 Jul 2022

CareerBuilder Interview Experiences

Popular Designations

2 interviews found

Round 1 - Technical 

(1 Question)

  • Q1. Data Coding was asked and data structures.

Interview Preparation Tips

Interview preparation tips for other job seekers - Can go for it. Company is good

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What have you done in the past? Share experiences
  • Q2. How important is work culture to you?
Round 2 - Case Study 

Selling a software product - demo call

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true to yourself and company else any lie with is just a time waste to your career and for the company.

Interview questions from similar companies

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

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a combination of mcq and coding questions
mcq: aptitude + c++ + sql question, nothing really tough
Coding question: 3 leetcode question, medium level, of stack, binary search and graph traversal

Round 2 - One-on-one 

(5 Questions)

  • Q1. Question regarding project
  • Q2. SQL basic to moderate question
  • Q3. C++ coding question on strings recursion callback in c, oops medium level question, finding error in code
  • Q4. Puzzles Q1-> cake cutting ( 3 cuts, 8 slices) Q2 ->9 bottles, 8 same weight bottles, 1 heavy, 2 tries using a balance
  • Q5. OS question difference bw multi-processing and multi-programming how would u reduce number of page faults. etc
Round 3 - One-on-one 

(3 Questions)

  • Q1. Once again project explanation
  • Q2. Basic to high level oops question:( C++) i was asked to write some class and in that these questions were asked 1: different types of access modifiers, but the question was asked indirectly. like why did...
  • Q3. HR questions, since it was a semi technical cum hr round,

Interview Preparation Tips

Interview preparation tips for other job seekers - stay clam and respond actively and please fill the company recruitment form properly, question was asked directly form that form. Also properly attend the pre placement talks, it would be beneficial as u can directly answer company related questions without any hesitation.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test contains 26 questions for me 13 are java based 13 are c++ based

Round 2 - Technical 

(2 Questions)

  • Q1. Indexing in dbms
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Examples of indexing techniques include B-tree, hash, and bitmap indexes.

    • Indexing can...

  • Answered by AI
  • Q2. Find whether two strings are or not anagrams
  • Ans. 

    Check if two strings are anagrams by comparing the sorted characters in each string.

    • Sort the characters in both strings and compare if they are equal.

    • Ignore spaces and punctuation when comparing the strings.

    • Example: 'listen' and 'silent' are anagrams.

    • Example: 'hello' and 'world' are not anagrams.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Inorder traversal without recursion
  • Ans. 

    Use a stack to simulate the recursive inorder traversal process

    • Create an empty stack to store nodes

    • Start with the root node and push it onto the stack

    • While the stack is not empty, keep traversing left and pushing nodes onto the stack

    • Once you reach a leaf node, pop it from the stack, print its value, and move to its right child

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. How to make a class final
  • Ans. 

    To make a class final, use the 'final' keyword in the class declaration.

    • Use the 'final' keyword before the 'class' keyword in the class declaration

    • A final class cannot be subclassed or extended

    • Final classes are often used for utility classes or classes that should not be modified

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Past experience and questions around that
  • Q2. High level software design for eCommerce system
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why you want to join Style Baazar?

Interview Preparation Tips

Topics to prepare for Stylebaazar Store Manager interview:
  • Fashion trends
Interview preparation tips for other job seekers - Just be confident.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic HR stuffs
Round 2 - One-on-one 

(1 Question)

  • Q1. Various management questions/topics
Round 3 - Group Discussion 

5 areas of discussion all related to management

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

(2 Questions)

  • Q1. Design a chat application
  • Ans. 

    Design a chat application for real-time communication

    • Use WebSocket for real-time communication

    • Implement user authentication and authorization

    • Include features like group chat, private messaging, and file sharing

    • Design a responsive and user-friendly interface

    • Ensure data security and privacy

  • Answered by AI
  • Q2. Design a payment gateway
  • Ans. 

    Design a payment gateway for online transactions

    • Implement secure encryption for data transmission

    • Integrate with various payment methods like credit cards, PayPal, etc.

    • Provide error handling and transaction logging for troubleshooting

    • Ensure compliance with PCI DSS standards for data security

  • Answered by AI

Senior Android Developer (consultant) Interview Questions & Answers

Uplers user image Anonymous

posted on 10 Oct 2024

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

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Kotlin questions like scope functions and higher order functions
  • Q2. Data structures questions like detecting circular linked list and 2 sum
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour duration. Sliding window problem. On hacker rank platform. Expected to write a working code and solve it optimally/scalable solution.

Round 2 - Technical 

(1 Question)

  • Q1. Again a coding test. LLD + hash map. 1 hour on hacker rank.

CareerBuilder Interview FAQs

How many rounds are there in CareerBuilder interview?
CareerBuilder interview process usually has 1-2 rounds. The most common rounds in the CareerBuilder interview process are Case Study, Technical and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

LinkedIn Interview Questions
4.3
 • 79 Interviews
Uplers Interview Questions
4.1
 • 40 Interviews
Quikr Interview Questions
3.8
 • 31 Interviews
Stylebaazar Interview Questions
3.9
 • 30 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
Indeed Interview Questions
4.0
 • 27 Interviews
Tokopedia Interview Questions
4.1
 • 27 Interviews
Foundit Interview Questions
3.6
 • 26 Interviews
Glassdoor Interview Questions
3.5
 • 8 Interviews
View all

CareerBuilder Reviews and Ratings

based on 55 reviews

4.0/5

Rating in categories

3.4

Skill development

4.2

Work-life balance

3.7

Salary

3.9

Job security

4.0

Company culture

3.2

Promotions

3.8

Work satisfaction

Explore 55 Reviews and Ratings
Senior Software Engineer
46 salaries
unlock blur

₹10.9 L/yr - ₹28 L/yr

Software Engineer III
19 salaries
unlock blur

₹12.2 L/yr - ₹22 L/yr

Software Engineer
19 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Accounts Manager
16 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Client Support Specialist
10 salaries
unlock blur

₹4.7 L/yr - ₹6.5 L/yr

Explore more salaries
Compare CareerBuilder with

Foundit

3.6
Compare

Timesjobs.com

1.6
Compare

Indeed

4.0
Compare

Glassdoor

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