Upload Button Icon Add office photos

Filter interviews by

Jobs cruze Interview Questions and Answers

Updated 17 Aug 2022

Jobs cruze Interview Experiences

1 interview found

I applied via Referral and was interviewed before Aug 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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Y you want to join Jobscruze and why we should hire you.
  • Ans. As per my experience and the quality that I am having for the position of AM suits and matched me.I always keep up the healthy atmosphere and understand the values of the organizations.And been awarded by the clients and got the appreciation from the top manager's in all my previous companies.And I treat everyone as a Equal.And always did the multitask.
  • Answered Anonymously
Round 3 - One-on-one 

(1 Question)

  • Q1. What is your strenth?
  • Ans. Iam so friendly in nature and always ready to share values with other's.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm at the time of interview and please prepare your Resume by your Own so that it will be easy for you at the time of interview to explain.Say no if you doesn't know the answer or didn't understood the question tell them to repeat.Gestures should be confident by using your hands while talking.Eye to Eye contact and should be smiling face.

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (88)

Interview questions from similar companies

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

Interview Questionnaire 

7 Questions

  • Q1. Find the first non repetitive character in a string?
  • Ans. 

    Find the first non-repeating character in a string.

    • Create a hash table to store the frequency of each character in the string.

    • Iterate through the string and check the frequency of each character.

    • Return the first character with a frequency of 1.

  • Answered by AI
  • Q2. What is connection pooling
  • Ans. 

    Connection pooling is a technique of reusing database connections to improve performance.

    • Connection pooling helps to reduce the overhead of creating and destroying database connections.

    • It maintains a pool of connections that can be reused by multiple clients.

    • Connection pooling is commonly used in web applications to handle multiple requests simultaneously.

    • It can be configured with parameters like maximum number of conn...

  • Answered by AI
  • Q3. Write a singleton class in php?
  • Ans. 

    A singleton class in PHP is a class that can only be instantiated once.

    • Create a private constructor to prevent direct instantiation

    • Create a private static variable to hold the instance of the class

    • Create a public static method to get the instance of the class

    • Ensure that the public static method always returns the same instance

  • Answered by AI
  • Q4. How to write a Connection class to MySQL database using PHP?
  • Ans. 

    To connect to MySQL database using PHP, create a Connection class.

    • Use mysqli_connect() function to establish a connection

    • Pass the database credentials as parameters to the function

    • Create a constructor method to initialize the connection

    • Create a query method to execute SQL queries

    • Close the connection using mysqli_close() method

  • Answered by AI
  • Q5. What are the different types of error in php?
  • Ans. 

    There are three types of errors in PHP: syntax errors, runtime errors, and logical errors.

    • Syntax errors occur when the code is not written correctly, such as missing semicolons or parentheses.

    • Runtime errors occur during the execution of the code, such as trying to access an undefined variable.

    • Logical errors occur when the code runs without errors, but produces unexpected results, such as a miscalculation in a formula.

  • Answered by AI
  • Q6. How session works in php?
  • Ans. 

    Session in PHP allows to store user data on the server for later use.

    • Session starts when a user logs in and ends when the user logs out or the session expires.

    • Session data is stored on the server and identified by a unique session ID.

    • Session variables can be set and accessed using the $_SESSION superglobal array.

    • Session can be destroyed using the session_destroy() function.

    • Session can be used to store user-specific dat...

  • Answered by AI
  • Q7. Find missing element in an array of elements from 0 to n-1?
  • Ans. 

    Find missing element in an array of elements from 0 to n-1

    • Calculate sum of all elements in array and subtract from sum of n natural numbers

    • Use XOR operation on all elements and n natural numbers

    • Sort the array and find the missing element

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: You have been given stack of documents that have already been processed and some that have not. your task is to classify these documents into one of the eight categories: [1,2,3..8]. However you notice that there are already large amount of documents which have already been correctly processed(training data). you decide to use machine learning on this data in order to categorize.First line of the input file contain T number of documents. T lines will follow each containing a series of space separated words which represents the processed word.

Skills: PHP, data base, data structure
College Name: NA

Skills evaluated in this interview

I appeared for an interview in Sep 2016.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about the Summer Project
  • Ans. 

    Developed a web application for tracking student attendance and performance

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Integrated authentication and authorization features for secure access

  • Answered by AI
  • Q2. Questions on Sql Dbms Java C
  • Q3. Basic Programming Question
  • Q4. Questions on hobbies and CV related

Interview Preparation Tips

Round: Technical Interview
Experience: Use diagrams to describe your project and the interviewer should fully understand your project
Tips: Be Clear and say things which you know

Round: HR Interview
Experience: She asked me about everything related to my hobbies.
Tips: Don't lie about your Interests and Hobbies in CV. Know everything there is to know about the hobbies which you have specified.

Skills: C Programming, Java Programming, SQL, Basic Knowledge Of DBMS, Problem Solving Abilties
College Name: BP Poddar Institute OF Management & Technology

I appeared for an interview before Jun 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a highly motivated and detail-oriented analyst with a strong background in data analysis and problem-solving.

    • I have a Bachelor's degree in Economics with a focus on statistical analysis

    • I have experience using various data analysis tools such as Excel, SQL, and Tableau

    • I have successfully completed several projects that involved analyzing large datasets to identify trends and make recommendations

    • I am a quick learner

  • Answered by AI
  • Q2. What do you know about the company?
  • Ans. 

    The company is a leading financial services firm specializing in investment banking and asset management.

    • Founded in 1869 by Marcus Goldman

    • Headquartered in New York City

    • Offers a wide range of financial services including mergers and acquisitions, underwriting, and wealth management

    • Known for its prestigious client base and high-profile deals

  • Answered by AI
  • Q3. When are you getting married?
  • Ans. 

    I am not currently planning to get married.

    • I am currently focused on my career and personal growth.

    • Marriage is not a priority for me at the moment.

    • I believe in taking the time to find the right partner before committing to marriage.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: PART ONE: Verbal Ability, uses of articles (a, an, the) and a RC. PART TWO: logical reasoning, standard IQ type Questions, was simple. PART THREE: An essay, one out of two, one choice was nuclear deal and the other was education system in India.


Round: Technical Interview
Experience: Some regular puzzles, easy one .Discussion on internship work

College Name: IIT Kanpur

I appeared for an interview before Jun 2016.

Interview Preparation Tips

Round: Video interview
Experience: Tell about why to join cognizant

Skills: Communication Networks, Communication

Interview Questionnaire 

16 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and deployment tools like Docker

    • Strong problem-solving skills and ability

  • Answered by AI
  • Q2. What are your hobbies?
  • Ans. 

    My hobbies include hiking, playing guitar, and reading science fiction novels.

    • Hiking in local trails and national parks

    • Playing acoustic and electric guitar in a band

    • Reading books by authors like Isaac Asimov and Philip K. Dick

  • Answered by AI
  • Q3. Why cognizant over other companies?
  • Ans. 

    Cognizant offers diverse projects, global exposure, and a strong focus on employee growth and development.

    • Cognizant provides opportunities to work on diverse projects, allowing for a broad range of experience.

    • The company has a global presence, offering exposure to different cultures and markets.

    • Cognizant emphasizes employee growth and development through training programs and career advancement opportunities.

  • Answered by AI
  • Q4. Why engineering?
  • Ans. 

    Engineering allows me to solve complex problems, innovate, and create solutions that have a real impact on society.

    • Engineering provides a platform to apply scientific knowledge to practical problems.

    • It involves critical thinking, problem-solving, and creativity.

    • Engineers have the opportunity to work on cutting-edge technologies and make a tangible difference in the world.

    • For example, designing software systems to impro...

  • Answered by AI
  • Q5. Draw pin diagram of 8085 microprocessor
  • Ans. 

    Pin diagram of 8085 microprocessor

    • 8085 has 40 pins in total

    • Pins are grouped into 5 categories: power supply, address bus, data bus, control and status signals

    • Pin 1 is the reset pin, Pin 40 is the Vcc pin

    • Examples of control signals: RD, WR, ALE, INT, HOLD

    • Examples of status signals: S0, S1, IO/M, HLDA

  • Answered by AI
  • Q6. Difference between 8085 and 8086 microprocessor
  • Ans. 

    8086 is an advanced version of 8085 with more features and capabilities.

    • 8086 has a 16-bit data bus while 8085 has an 8-bit data bus.

    • 8086 has more registers than 8085.

    • 8086 has a higher clock speed than 8085.

    • 8086 supports virtual memory while 8085 does not.

    • 8086 has a more advanced instruction set than 8085.

    • Example: 8086 can perform multiplication and division operations while 8085 cannot.

  • Answered by AI
  • Q7. What is opamp?
  • Ans. 

    Opamp stands for operational amplifier. It is an electronic device used to amplify and process signals.

    • Opamps have high gain and can amplify signals to a very high degree.

    • They are commonly used in audio amplifiers, filters, and signal processing circuits.

    • Opamps have two input terminals and one output terminal.

    • They can be configured in different ways to perform various functions such as amplification, filtering, and osc...

  • Answered by AI
  • Q8. What are different phases of waterfall model?
  • Ans. 

    Waterfall model has five phases: requirements, design, implementation, testing, and maintenance.

    • Requirements phase: gathering and documenting requirements

    • Design phase: creating a detailed design based on requirements

    • Implementation phase: coding and integrating components

    • Testing phase: verifying that the system meets requirements

    • Maintenance phase: making changes and updates to the system

    • Example: building a website using...

  • Answered by AI
  • Q9. Types of testing
  • Ans. 

    Types of testing include unit, integration, system, acceptance, regression, performance, and security testing.

    • Unit testing: testing individual units or components of the software

    • Integration testing: testing how different units or components work together

    • System testing: testing the entire system as a whole

    • Acceptance testing: testing to ensure the software meets the requirements and is ready for release

    • Regression testing...

  • Answered by AI
  • Q10. Practical question related to normalization and its theory
  • Q11. What extra curricular activities you are interested in?
  • Ans. 

    I enjoy participating in coding competitions, volunteering at tech events, and attending hackathons.

    • Participating in coding competitions such as Codeforces or Topcoder

    • Volunteering at tech events like hackathons or coding workshops

    • Attending hackathons to collaborate with other developers and work on innovative projects

  • Answered by AI
  • Q12. What is your goal in life?
  • Ans. 

    My goal in life is to continuously learn and grow, while making a positive impact on the world around me.

    • Continuous learning and personal growth

    • Making a positive impact on the world

    • Achieving work-life balance

    • Building meaningful relationships

    • Contributing to the community

  • Answered by AI
  • Q13. Do you have any problem in relocation?
  • Ans. 

    I am open to relocation for the right opportunity.

    • I am willing to relocate for the job.

    • I have no issues moving to a new location for work.

    • I am excited about the possibility of experiencing a new city or country.

    • I have relocated for previous jobs and have found it to be a positive experience.

  • Answered by AI
  • Q14. Reasons why you want to and why you don't want to relocate?
  • Ans. 

    I want to relocate for career growth and new experiences, but I am hesitant due to leaving behind family and friends.

    • Career growth opportunities in new location

    • Desire for new experiences and challenges

    • Concerns about leaving behind family and friends

  • Answered by AI
  • Q15. What do you watch ion tv?
  • Ans. 

    I enjoy watching a variety of shows on TV, including dramas, comedies, and documentaries.

    • I watch dramas like Grey's Anatomy and This Is Us

    • I enjoy comedies such as The Office and Brooklyn Nine-Nine

    • I also like watching documentaries on topics like nature and history

  • Answered by AI
  • Q16. Which movie did you last see
  • Ans. 

    I last saw the movie Inception.

    • Directed by Christopher Nolan

    • Released in 2010

    • Genre: Sci-Fi/Thriller

    • Starring Leonardo DiCaprio

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: On 1st September 2016, Cognizant held this round at our college. We were initially told that it would be an adaptive paper but it was not so. We could not navigate between questions (both intra and inter section). There was a minimum number of questions which had to be attempted from each section else we would disqualify. The questions were easy and I found many questions common from AMCAT papers.
Tips: Practice as much as you can. Try to learn shortcut tricks to solve the questions quickly and easily. Try to solve questions within certain time limit. Give online tests so that you are familiar with giving tests on machine. Do not waste time in a particular question. If you can't solve it then leave it( if there is negative marking) or answer randomly( if there is no negative marking).
Duration: 55 mins minutes
Total Questions: 55

Round: Technical Interview
Experience: The interviewer asked me to introduce myself. I was nervous and so i fumbled in 2 or 3 sentences but then i took the pace. he chit chatted with me to release my pressure . he went through my resume and my marksheets. he asked a few HR questions and then started the technical interview. He asked me questions regarding microprocessors and electronics but I had prepared software subjects I being a CS student could not remember most of it. But I sill answered them with best of my knowledge. i told him that I would rather be comfortable with CS core subjects. then he shifted his focus to DBMS and Software Engineering I did not lose my calm although I was very nervous. I thought I would be rejected but finally I got selected.
Tips: Don't be nervous as most of the interviewers are really friendly and they give ample chances to prove yourself. Try to practice the your introduction. They may ask your questions that are not from your domain but try to answer them with your presence of mind and previous knowledge. you may be nervous but don't show that on your face. Try to have basic concepts of your core subjects.

Round: HR Interview
Experience: It is the best round. You can voice your own views. The interviewers are mostly friendly and you seem to have a discussion with your friends.
If you manage to appear for this round most probably you will be selected.
Tips: Just be simple and be frank. Answer to the point and do not sound arrogant.

Skill Tips: Try to clear the aptitude and half of your job is done. For technical interview try to learn the basics of c,OOPS,DBMS. Try to know about the company .
Be calm .
All the best..!!
Skills: software engineering, Basic Electronics, Basic Knowledge Of DBMS
College Name: St. Thomas' College Of Engineering & Technology

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What are your aspirations
  • Ans. 

    My aspiration is to become a successful financial analyst and eventually move into a leadership role within the company.

    • To become a successful financial analyst by continuously improving my analytical skills and staying updated on market trends

    • To eventually move into a leadership role within the company by demonstrating strong leadership qualities and strategic thinking

    • To contribute towards the growth and success of th...

  • Answered by AI
  • Q2. How will you fit in this role
  • Ans. 

    I have a strong analytical background and experience in data interpretation, which will allow me to excel in this role.

    • Extensive experience in data analysis and interpretation

    • Strong analytical skills and attention to detail

    • Ability to communicate complex findings in a clear and concise manner

    • Proven track record of delivering actionable insights from data

    • Familiarity with relevant tools and software such as Excel, SQL, an

  • Answered by AI
  • Q3. Asked puzzles like which way the bus goes and arranging an array in descending order
  • Q4. Mostly focussed on my department course project

Interview Preparation Tips

Skills: Communication and confidence
College Name: IIT Madras

I appeared for an interview in Sep 2016.

Interview Questionnaire 

9 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

  • Answered by AI
  • Q2. What did you do in your last job
  • Ans. 

    I was responsible for managing social media accounts and creating engaging content for a marketing agency.

    • Managed social media accounts for clients

    • Created content calendars and posts for various platforms

    • Analyzed engagement metrics to optimize content strategy

  • Answered by AI
  • Q3. Why do MBA
  • Ans. 

    MBA provides advanced business knowledge, skills, and networking opportunities.

    • MBA helps develop strategic thinking and leadership skills.

    • It provides a deeper understanding of business concepts and practices.

    • MBA graduates often have better job prospects and higher earning potential.

    • Networking opportunities with industry professionals and alumni can lead to valuable connections.

    • Specializations in areas like finance, mar...

  • Answered by AI
  • Q4. 3 key takeaways you want from MBA
  • Ans. 

    Key takeaways from MBA include leadership skills, strategic thinking, and networking opportunities.

    • Developing strong leadership skills through coursework and group projects

    • Learning strategic thinking and decision-making through case studies and simulations

    • Building a strong professional network through internships, networking events, and alumni connections

  • Answered by AI
  • Q5. Why cognizant
  • Ans. 

    Cognizant offers a diverse range of opportunities for growth and development in the IT industry.

    • Cognizant is a global leader in IT services and consulting.

    • They have a strong reputation for delivering high-quality solutions to clients.

    • Cognizant provides a collaborative and inclusive work environment.

    • They offer extensive training and learning programs to enhance skills.

    • Cognizant has a strong focus on innovation and digit...

  • Answered by AI
  • Q6. Describe 2 case studies you learnt in college
  • Ans. 

    Studied case studies on marketing strategies and ethical dilemmas in business.

    • Analyzed a case study on how Coca-Cola's marketing strategies helped increase sales and brand awareness.

    • Discussed a case study on a company facing an ethical dilemma and the consequences of their decisions.

    • Explored the impact of social media on consumer behavior in a case study on a successful marketing campaign.

  • Answered by AI
  • Q7. Your goals in life
  • Ans. 

    My goal in life is to make a positive impact on others and contribute to the betterment of society.

    • To work towards improving healthcare access and quality

    • To advocate for social justice and equality

    • To continuously learn and grow both personally and professionally

    • To build meaningful relationships and support others in their journeys

    • To leave a lasting legacy that inspires future generations

  • Answered by AI
  • Q8. A situation in which you handled a disagreement
  • Ans. 

    I resolved a disagreement between two team members by facilitating a meeting and encouraging open communication.

    • Identified the root cause of the disagreement

    • Scheduled a meeting with both parties to discuss the issue

    • Encouraged open communication and active listening

    • Facilitated a compromise that satisfied both parties

  • Answered by AI
  • Q9. A situation where you showcased your leadership skills

Interview Preparation Tips

Round: Other Interview
Experience: It was a video interview. The questions were displayed one by one. For each question, a fixed time was given (2 to 4 mins). The video response got recorded for each question
Tips: Dress well as someone will review the video later. Sit in a well lit room with a white background. Prepare Competency based questions well

Round: HR Interview
Experience: Typical HR round
Tips: At the end, when the interviewer says, "do you have any question for me", then always ask a relevant question.

Round: HR Interview
Experience: Again typical HR round
Tips: Prepare well about the company. That helps a lot in interview. Try to include what the company is doing in your answers. Should feel natural

Interview Preparation Tips

Round: Group Discussion
Duration: 15 minutes

Round: Test
Duration: 50 minutes

Skills: Communication, Clear Communication
College Name: Tkr college of engineering and technology

Jobs cruze Interview FAQs

How many rounds are there in Jobs cruze interview?
Jobs cruze interview process usually has 3 rounds. The most common rounds in the Jobs cruze interview process are One-on-one Round and Resume Shortlist.

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.6k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
Indeed Interview Questions
4.0
 • 28 Interviews
Foundit Interview Questions
3.5
 • 26 Interviews
Glassdoor Interview Questions
3.7
 • 8 Interviews
View all

Jobs cruze Reviews and Ratings

based on 2 reviews

3.7/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.7

Salary

3.7

Job security

3.7

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 2 Reviews and Ratings
Recruitment Executive
12 salaries
unlock blur

₹1.7 L/yr - ₹2.5 L/yr

HR Recruiter
7 salaries
unlock blur

₹1.2 L/yr - ₹2 L/yr

HR Executive
4 salaries
unlock blur

₹1.7 L/yr - ₹2 L/yr

Senior Recruitment Executive
3 salaries
unlock blur

₹2 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Jobs cruze with

Foundit

3.5
Compare

Timesjobs.com

1.6
Compare

Indeed

4.0
Compare

Freshersworld.com

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