Upload Button Icon Add office photos

Filter interviews by

Clear (1)

CareerBuilder Senior Sales and Account Manager Interview Questions and Answers

Updated 22 Jul 2022

CareerBuilder Senior Sales and Account Manager Interview Experiences

1 interview found

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

I applied via Monster and was interviewed before Mar 2021. 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 Resume tips
Round 2 - HR 

(4 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Why are you looking for a change?
  • Q3. Share details of your previous job.
  • Q4. Tell me about yourself.
Round 3 - One-on-one 

(1 Question)

  • Q1. Previous jobs details

Interview Preparation Tips

Interview preparation tips for other job seekers - Good organization easy selection process

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

Round 1 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?
Round 2 - One-on-one 

Interview Preparation Tips

Interview preparation tips for other job seekers - Monster as an Organization Prefers Candidates from B2B Sales,Consulting & Recruitment background.There are 2 interview rounds for Monster.com
Interview questions will be base on your Previous company role and your numbers.
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Situational Analysis had to be done
Round 3 - One-on-one 

(1 Question)

  • Q1. Situational Experience question

Interview Preparation Tips

Interview preparation tips for other job seekers - Relax and be honest. They will check your confidence , ability to convince and pursue . Never intimidate but be assertive .Feel free to ask questions incase you need some clarification .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. To explain a movie to check story telling skills
  • Ans. 

    A young boy befriends an alien stranded on Earth and helps him return home before government agents capture him.

    • The movie is about a boy who finds an alien and forms a bond with him.

    • The alien has special powers and the boy helps him evade capture by the government.

    • The movie explores themes of friendship, loyalty, and acceptance of differences.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful do not lie

I applied via Indeed and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Online English language test.
  • Q2. Very easy to communicate .

Interview Preparation Tips

Interview preparation tips for other job seekers - Why not company directly ask English mok test instead of indeed

Sales Manager Interview Questions & Answers

Foundit user image Kishanlal Shivraj Fulwariya

posted on 14 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Professionally formed answers

Interview Preparation Tips

Interview preparation tips for other job seekers - No advice
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Monster and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. General questions about previous exp and what we know about foundit.
  • Q2. General questions
  • Q3. What you know about job market
  • Ans. 

    The job market refers to the current supply and demand for jobs, including trends, competition, and opportunities.

    • Job market can vary by industry, location, and economic conditions

    • Factors such as unemployment rate, job growth, and skills in demand impact the job market

    • Networking and staying updated on industry trends can help navigate the job market

  • Answered by AI
  • Q4. Tell me about your self
Round 2 - One-on-one 

(2 Questions)

  • Q1. Normal questions
  • Q2. General questions

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing

I applied via Referral and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Related to managerial action with case studies.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have reference then it’s good to enter in Quikr

Interview Questionnaire 

12 Questions

  • Q1. Given a no K and an array. Find pair of elements whose sum is equal to given no K
  • Ans. 

    Find pair of elements in an array whose sum is equal to a given number K.

    • Iterate through the array and for each element, check if K minus the element exists in the array.

    • Use a hash table to store the elements and their indices for faster lookup.

    • If multiple pairs exist, return any one of them.

    • If no pair exists, return null or an appropriate message.

  • Answered by AI
  • Q2. If there is a website run by 2 servers. These 2 servers balances the load using Load Balancer. So, if 1 session is created on 1 server and say load is shift to another server immediately, then how session ...
  • Ans. 

    Session is maintained using session affinity or sticky sessions.

    • Session affinity ensures that a user's session is always directed to the same server.

    • Load balancer uses a unique identifier to route requests to the same server.

    • Sticky sessions can be implemented using cookies or URL rewriting.

    • Session replication can also be used to maintain session data across multiple servers.

  • Answered by AI
  • Q3. WAP to implement some basic Design Patterns like Singleton?
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety by using synchronized keyword or static initialization block

    • Examples: Logger, Configuration Manager, Database Connection

  • Answered by AI
  • Q4. Abstract class? How it is different from interface? Is multiple inheritance possible in php? How?
  • Ans. 

    Explaining abstract class, interface and multiple inheritance in PHP.

    • Abstract class is a class that cannot be instantiated and can have abstract methods.

    • Interface is a collection of abstract methods and constants that can be implemented by a class.

    • Multiple inheritance is not possible in PHP, but can be achieved using interfaces.

    • Interfaces can be implemented by multiple classes, allowing for multiple inheritance-like be

  • Answered by AI
  • Q5. Write a stored procedure from a given set of tables and conditions. Simple one
  • Ans. 

    Write a stored procedure from given tables and conditions

    • Identify the tables and their relationships

    • Determine the conditions to be used in the stored procedure

    • Write the SQL code for the stored procedure

    • Test the stored procedure to ensure it returns the desired results

  • Answered by AI
  • Q6. How to increase php memory at run time, if it exhausts?
  • Ans. 

    To increase PHP memory at run time, modify the php.ini file or use ini_set() function.

    • Edit the memory_limit value in php.ini file

    • Use ini_set('memory_limit', '256M') function to increase memory limit at run time

    • Check for memory leaks in the code

    • Use unset() function to free up memory after use

  • Answered by AI
  • Q7. What all we can do with php.ini?
  • Ans. 

    php.ini is a configuration file for PHP that allows users to customize various settings.

    • Change PHP settings such as memory limit, file upload size, and error reporting

    • Enable or disable extensions and modules

    • Set timezone and language settings

    • Configure email settings

    • Control caching and session settings

  • Answered by AI
  • Q8. Session and cookies?
  • Q9. Javascript clausers?
  • Q10. Jquery function to get domain from a url?
  • Ans. 

    Use window.location to get domain from a url in jQuery.

    • Use window.location to get the full url

    • Use .hostname to get the domain name

    • Use .replace() to remove 'www.' if present

  • Answered by AI
  • Q11. WAP to get smallest plindron number larger than the given no?
  • Ans. 

    WAP to find smallest palindrome number larger than given number.

    • Convert the given number to string and check if it is already a palindrome.

    • If not, increment the number and check if it is a palindrome.

    • Repeat until a palindrome number larger than the given number is found.

    • Use a while loop to implement the above steps.

  • Answered by AI
  • Q12. WAP to check if linked list elements is a palindrome without using any extra space?
  • Ans. 

    WAP to check if linked list elements is a palindrome without using any extra space.

    • Traverse the linked list and reverse the second half of the list

    • Compare the first half with the reversed second half

    • Use two pointers to traverse the list, one at normal speed and other at double speed

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, JQuery, Javascript
College Name: na

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

CareerBuilder Interview FAQs

How many rounds are there in CareerBuilder Senior Sales and Account Manager interview?
CareerBuilder interview process usually has 2 rounds. The most common rounds in the CareerBuilder interview process are One-on-one Round and Case Study.

Recently Viewed

INTERVIEWS

Naukri

No Interviews

INTERVIEWS

Naukri

No Interviews

DESIGNATION

JOBS

SanDisk India Device Design Centre

No Jobs

INTERVIEWS

Nvidia

No Interviews

INTERVIEWS

Naukri

No Interviews

INTERVIEWS

Nvidia

5.6k top interview questions

SALARIES

Nvidia

INTERVIEWS

Naukri

No Interviews

SALARIES

SanDisk India Device Design Centre

Tell us how to improve this page.

Interview Questions from Similar Companies

LinkedIn Interview Questions
4.3
 • 65 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
Indeed Interview Questions
4.0
 • 28 Interviews
Shaadi.com Interview Questions
3.3
 • 27 Interviews
Foundit Interview Questions
3.5
 • 26 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
View all
Senior Software Engineer
48 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer III
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Client Support Specialist
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CareerBuilder with

Foundit

3.5
Compare

Timesjobs.com

1.6
Compare

Indeed

4.0
Compare

Glassdoor

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