Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Crio.Do Team. If you also belong to the team, you can get access from here

Crio.Do Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 116 Reviews

Filter interviews by

Crio.Do Interview Questions, Process, and Tips

Updated 25 Dec 2024

Top Crio.Do Interview Questions and Answers

View all 13 questions

Crio.Do Interview Experiences

Popular Designations

28 interviews found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between SQL vs nosql
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL is table-based, with a predefined schema, while NoSQL is document, key-value, graph, or wide-column store-based, with dynamic schema.

    • SQL is best suited for complex queries and transactions, while NoSQL is better for hierarchical data storage and real-time web applications.

    • Examples of SQL databases include MySQ...

  • Answered by AI
  • Q2. Discussion on projects
  • Q3. What is use state
  • Ans. 

    Use state is a feature in React that allows components to have local state.

    • Use state is a React Hook that allows functional components to have state.

    • It is used to store and update component-specific data.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI
  • Q4. Middle number in a matrix
  • Ans. 

    The middle number in a matrix is the number located at the center of the matrix.

    • To find the middle number in a matrix, first determine the number of rows and columns in the matrix.

    • If the number of rows and columns is odd, the middle number is located at (n/2, n/2) where n is the number of rows or columns.

    • If the number of rows and columns is even, there may be multiple middle numbers or the average of the two middle num

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just basic knowledge of any techstack like mern, spring boot Java or Java selenium

Skills evaluated in this interview

Top Crio.Do Project Engineer Interview Questions and Answers

Q1. Difference between SQL vs nosql
View answer (1)

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star PatternPrint the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** Note : There are no spaces between the stars (*). Input format : Integer N (Total no. of rows) Output format : Pattern in N l... read more
View answer (9)

project E Interview Questions & Answers

user image Anonymous

posted on 16 Oct 2024

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

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Assignment 

2 Dsa problems those we have to solve in 30 minetes

Round 2 - Coding Test 

Live DSA and Linex round

Round 3 - One-on-one 

(2 Questions)

  • Q1. Project regarding question.
  • Q2. How you build this project.
  • Ans. 

    The project was built using a combination of programming languages, frameworks, and tools.

    • Used Python programming language for backend development

    • Utilized React.js for frontend development

    • Implemented RESTful APIs for communication between frontend and backend

    • Used PostgreSQL database for storing data

    • Deployed the project on AWS using Elastic Beanstalk

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The process will go to the very essay.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is a stack
  • Ans. 

    A stack is a data structure that follows the Last In, First Out (LIFO) principle.

    • Elements are added and removed from the top of the stack.

    • Common operations include push (add element) and pop (remove element).

    • Examples of stacks include the call stack in programming and the undo feature in text editors.

  • Answered by AI
  • Q2. What is a queue
  • Ans. 

    A queue is a data structure that follows the First In First Out (FIFO) principle, where elements are added at the rear and removed from the front.

    • Elements are added to the rear of the queue and removed from the front

    • Common operations include enqueue (add to rear) and dequeue (remove from front)

    • Examples of queues include waiting lines at a grocery store or a printer queue

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay positive

Skills evaluated in this interview

Product Engineer Interview Questions asked at other Companies

Q1. Left View Of Binary TreeGiven a binary tree. Print the Left View of the Tree. Example : If the input tree is as depicted in the picture: The Left View of the tree will be: 2 35 2 Input format : Elements in the level order form. The input... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic dsa questions and 30 min round

Round 2 - Assignment 

Faced several apis to work flow

Backend Developer Interview Questions asked at other Companies

Q1. Print a Binary Tree in Vertical OrderGiven a binary tree, return the vertical order traversal of the values of the nodes of the given tree. For each node at position (X, Y), (X-1, Y-1) will be its left child position while (X+1, Y-1) will b... read more
View answer (3)

Crio.Do interview questions for popular designations

 Project Engineer

 (6)

 Business Development Associate

 (3)

 Backend Developer

 (1)

 BD Executive

 (1)

 BDA

 (1)

 Business Associate

 (1)

 Business Operations Associate

 (1)

 Data Analyst Intern

 (1)

Project Engineer Interview Questions & Answers

user image Rajibul Molla

posted on 20 Jul 2024

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

(2 Questions)

  • Q1. Check Anagram of two strings.
  • Ans. 

    Check if two strings are anagrams of each other.

    • Create a character count array for each string

    • Compare the character count arrays to check if they are equal

    • Ignore spaces and consider case sensitivity

  • Answered by AI
  • Q2. Reverse a linked List.
  • Ans. 

    Reverse a linked list by changing the pointers direction.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating the pointers to reverse the direction.

    • Update the head of the linked list to be the last node visited.

  • Answered by AI
Round 2 - Coding Test 

Explain your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence.

Skills evaluated in this interview

Top Crio.Do Project Engineer Interview Questions and Answers

Q1. Difference between SQL vs nosql
View answer (1)

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star PatternPrint the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** Note : There are no spaces between the stars (*). Input format : Integer N (Total no. of rows) Output format : Pattern in N l... read more
View answer (9)

Get interview-ready with Top Crio.Do Interview Questions

CUSTOMER SUCCESS ASSOCIATIVE Interview Questions & Answers

user image Anonymous

posted on 15 Aug 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

CAT, Basic aptitude test

Round 2 - Assignment 

Google sheets, Email writing

Round 3 - One-on-one 

(1 Question)

  • Q1. Regarding role.

Jobs at Crio.Do

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

(2 Questions)

  • Q1. Tell me about Sales
  • Ans. 

    Sales involves the process of selling products or services to customers in order to generate revenue for a business.

    • Sales is about building relationships with customers and understanding their needs.

    • It involves identifying potential leads, qualifying them, and closing deals.

    • Sales also includes negotiating terms, handling objections, and following up with customers.

    • Successful salespeople are good communicators, problem ...

  • Answered by AI
  • Q2. Sell me this pen
  • Ans. 

    This pen is not just a writing tool, but a stylish accessory that will make you stand out in any professional setting.

    • Highlight the sleek design and professional look of the pen

    • Emphasize the high quality materials used in its construction

    • Mention the smooth writing experience it provides

    • Create a sense of urgency by mentioning limited availability or special offer

  • Answered by AI

Business Development Associate Interview Questions asked at other Companies

Q1. You are going to the office and you saw a 6 years old poor guy selling pencils. Out of kindness you bought all the pencils(100 pcs) at Rs. 50 and gave him extra Rs. 50 to support his family. Since you don't require those pencils at all. Wha... read more
View answer (40)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2023. 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 - One-on-one 

(1 Question)

  • Q1. Introduction ur self and work experience
Round 3 - One-on-one 

(1 Question)

  • Q1. They are giving 3 scenario.. U need to answer based on that
Round 4 - One-on-one 

(1 Question)

  • Q1. About last experience

Business Development Associate Interview Questions asked at other Companies

Q1. You are going to the office and you saw a 6 years old poor guy selling pencils. Out of kindness you bought all the pencils(100 pcs) at Rs. 50 and gave him extra Rs. 50 to support his family. Since you don't require those pencils at all. Wha... read more
View answer (40)

BDA Interview Questions & Answers

user image Anonymous

posted on 20 May 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Why you are choosing sales

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best

BDA Interview Questions asked at other Companies

Q1. 1-Sell fish to a Brahmin , 2-Sale byjus product to customer parents are well educated father Govt employee and mother is a teacher kid scores 95% marks in exams you have to sale the product to these kid, 3-what’s is photosynthesis, 4-someti... read more
View answer (9)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2023. There were 2 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 

(2 Questions)

  • Q1. How to sell a pen How to increase hotels revenue How to sell a software products when persons is leat interested
  • Ans. 

    To sell a pen, emphasize its quality, versatility, and value. To increase hotel revenue, focus on marketing, customer satisfaction, and upselling. To sell software to disinterested individuals, highlight its benefits, offer demos, and provide personalized solutions.

    • For selling a pen, highlight its smooth writing experience, durability, and stylish design.

    • To increase hotel revenue, implement effective marketing strategi...

  • Answered by AI
  • Q2. About yourself Why sales Why crio.do

Inside Sales Executive Interview Questions asked at other Companies

Q1. Sell me an android phone, if I am already having a iPhone.
View answer (1)

Crio.Do Interview FAQs

How many rounds are there in Crio.Do interview?
Crio.Do interview process usually has 2-3 rounds. The most common rounds in the Crio.Do interview process are One-on-one Round, Technical and HR.
How to prepare for Crio.Do 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 Crio.Do . The most common topics and skills that interviewers at Crio.Do expect are Communication Skills, Inside Sales, Cold Calling, Business Development and Sales.
What are the top questions asked in Crio.Do interview?

Some of the top questions asked at the Crio.Do interview -

  1. How to sell a pen How to increase hotels revenue How to sell a software produc...read more
  2. Sell me the course of fullstack to the stud...read more
  3. Difference between SQL vs no...read more
How long is the Crio.Do interview process?

The duration of Crio.Do interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Crio.Do Interview Process

based on 16 interviews in last 1 year

Interview experience

4.3
  
Good
View more

People are getting interviews through

based on 24 Crio.Do interviews
Job Portal
Referral
Company Website
Campus Placement
WalkIn
46%
21%
8%
8%
4%
13% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Planet Spark Interview Questions
3.7
 • 354 Interviews
upGrad Interview Questions
3.7
 • 202 Interviews
Simplilearn Interview Questions
3.2
 • 99 Interviews
NIIT Interview Questions
3.6
 • 81 Interviews
Great Learning Interview Questions
3.7
 • 55 Interviews
Coding Ninjas Interview Questions
4.0
 • 47 Interviews
Edureka Interview Questions
3.2
 • 25 Interviews
Springboard Interview Questions
4.3
 • 1 Interview
View all

Crio.Do Reviews and Ratings

based on 116 reviews

3.3/5

Rating in categories

3.2

Skill development

2.9

Work-Life balance

3.4

Salary & Benefits

2.8

Job Security

3.1

Company culture

2.8

Promotions/Appraisal

3.0

Work Satisfaction

Explore 116 Reviews and Ratings
Associate Program Manager

Bangalore / Bengaluru

1-3 Yrs

₹ 3.5-7 LPA

System Administrator (Junior)

Bangalore / Bengaluru

1-2 Yrs

₹ 3.5-4.5 LPA

Inside Sales Associate

Bangalore / Bengaluru

1-4 Yrs

₹ 4-6 LPA

Explore more jobs
Project Engineer
71 salaries
unlock blur

₹4.5 L/yr - ₹7 L/yr

Business Development Associate
58 salaries
unlock blur

₹4 L/yr - ₹5.7 L/yr

Inside Sales Specialist
34 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Customer Success Associate
22 salaries
unlock blur

₹3 L/yr - ₹6.4 L/yr

Business Operations Associate
16 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Explore more salaries
Compare Crio.Do with

upGrad

3.7
Compare

Simplilearn

3.2
Compare

Great Learning

3.7
Compare

Springboard

4.3
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview