Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cresce Technology Private Limited Team. If you also belong to the team, you can get access from here

Cresce Technology Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cresce Technology Private Limited Sales Interview Questions and Answers

Updated 25 Aug 2023

Cresce Technology Private Limited Sales Interview Experiences

1 interview found

Sales Interview Questions & Answers

user image Anonymous

posted on 25 Aug 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. General Questions
  • Q2. Detail about my work
  • Q3. Details about sales
  • Q4. Details about resume
Round 3 - One-on-one 

(1 Question)

  • Q1. General Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They do not have clarity on interview process. They take as many round they want to and it will take 1-2 hrs each for all rounds.
After selection they don't give you CTC what they have mentioned in the job description, after wasting too much of candidates time in interview.
Better not to go with such organisation

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Cresce Technology Private Limited?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. DSA problems on linked list, OOPs in depth programming, design pattens in Java. Some theoretical knowledge on OOPs and design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of OOPs and DSA. Design patterns in Java were asked. All the interviewers were young.

Sales Interview Questions Asked at Other Companies

asked in BYJU'S
Q1. Shall anyone should go for BDA Or Sales for Learning / Monetary b ... read more
Q2. How do you influence customers using sales techniques?
asked in Dabur
Q3. How would you plan a new product launch in your area?
Q4. Assume you are a salesperson. Sell a public speaking course to a ... read more
asked in Info Edge
Q5. Demonstrate your sales skills by selling this Kenley water bottle ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 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 - Aptitude Test 

There'll be 10 questions have to write 5 correctly

Round 3 - TL 

(2 Questions)

  • Q1. Self introduction
  • Q2. Types of GST and its uses
  • Ans. 

    There are four types of GST in India - CGST, SGST, IGST, and UTGST. They are used for different types of transactions.

    • CGST is levied by the central government on intra-state transactions

    • SGST is levied by the state government on intra-state transactions

    • IGST is levied by the central government on inter-state transactions

    • UTGST is levied by the union territories on intra-state transactions

    • GST is used to replace multiple in...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary details asked and offered
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Some maths question duration 30 min

Round 3 - One-on-one 

(2 Questions)

  • Q1. Regarding sales
  • Q2. Regarding past experience

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What is vyapar on marketing
  • Ans. 

    Vyapar in marketing refers to the process of conducting business or trade.

    • Vyapar involves buying and selling goods or services.

    • It includes activities such as advertising, promotion, and distribution.

    • Vyapar aims to attract customers and generate revenue for the business.

    • Examples of vyapar in marketing include running social media campaigns, participating in trade shows, and offering discounts to customers.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

Data Analyst Interview Questions & Answers

Vyapar user image Shekhar Bisht

posted on 24 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on self join
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Question around priority queue
  • Q2. Decode strings leetcode
  • Ans. 

    Decode strings involves interpreting encoded patterns like '3[a2[c]]' to produce 'accaccacc'.

    • Use a stack to handle nested structures. Example: For '2[abc]', push '2' and 'abc' onto the stack.

    • Iterate through the string, building numbers and characters. Example: '3[a2[c]]' becomes '3', 'a', '2', 'c'.

    • When encountering ']', pop from the stack until '[' is found, then repeat the string as per the number. Example: '2[c]' bec...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. System design questions scenario based
Round 3 - Technical 

(1 Question)

  • Q1. Questions on multidimensional tree
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions of dbms ,os

Round 2 - One-on-one 

(2 Questions)

  • Q1. Delete middle node of linked list
  • Ans. 

    To delete the middle node of a linked list, we can iterate through the list to find the middle node and then remove it by adjusting the pointers.

    • Iterate through the linked list to find the middle node by using two pointers - one moving one node at a time and the other moving two nodes at a time.

    • Once the middle node is found, adjust the pointers to skip over the middle node and connect the nodes before and after it.

    • Hand...

  • Answered by AI
  • Q2. N queen problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be self-confident

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Coding question on DSA
  • Q2. Design pattern followed by basic java questions
Round 2 - Technical 

(2 Questions)

  • Q1. Design patterns in java
  • Ans. 

    Design patterns in Java are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Some common design patterns in Java include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has its own purpose and can be applied in different scenarios.

    • Design patterns promote code reusability and help in organizing code in a structured manner.

  • Answered by AI
  • Q2. Database designing and java8

Skills evaluated in this interview

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. LLD one question Parking lot system
  • Q2. Queue related basic questions
  • Q3. Basic .net core questions

Cresce Technology Private Limited Interview FAQs

How many rounds are there in Cresce Technology Private Limited Sales interview?
Cresce Technology Private Limited interview process usually has 3 rounds. The most common rounds in the Cresce Technology Private Limited interview process are One-on-one Round and Resume Shortlist.

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 60 Interviews
Fleetx.io Interview Questions
3.7
 • 29 Interviews
LambdaTest Interview Questions
4.5
 • 26 Interviews
Tata nexarc Interview Questions
3.1
 • 25 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
Leena AI Interview Questions
3.0
 • 19 Interviews
ThoughtSpot Interview Questions
4.0
 • 19 Interviews
View all

Cresce Technology Private Limited Sales Reviews and Ratings

based on 2 reviews

3.4/5

Rating in categories

1.8

Skill development

5.0

Work-life balance

5.0

Salary

1.8

Job security

1.8

Company culture

1.8

Promotions

1.8

Work satisfaction

Explore 2 Reviews and Ratings
Inside Sales Associate
9 salaries
unlock blur

₹2.9 L/yr - ₹4.3 L/yr

Business Consultant
7 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Senior Business Consultant
6 salaries
unlock blur

₹3.3 L/yr - ₹4.1 L/yr

Team Lead
4 salaries
unlock blur

₹5.5 L/yr - ₹6.5 L/yr

Assistant Area Sales Manager
4 salaries
unlock blur

₹6.5 L/yr - ₹7 L/yr

Explore more salaries
Compare Cresce Technology Private Limited with

Vyapar

3.5
Compare

Nowfloats Technologies

3.2
Compare

ShopKirana

3.8
Compare

Tata nexarc

3.1
Compare
write
Share an Interview