Upload Button Icon Add office photos

Filter interviews by

DigiChefs Interview Questions and Answers for Experienced

Updated 12 Jun 2023

DigiChefs Interview Experiences for Experienced

1 interview found

SEO Executive Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Assignment 

You have to give SEO audit for given website

Round 3 - One-on-one 

(1 Question)

  • Q1. You have to present seo audit

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay up to date with seo practices
And basics should be clear

SEO Executive Interview Questions asked at other Companies

Q1. What are the best practices to get more traffic on a website?
View answer (1)

Interview questions from similar companies

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: 30 questions, 30

Interview Questionnaire 

6 Questions

  • Q1. Effect of currency depreciation
  • Ans. 

    Currency depreciation can have various effects on the economy and businesses.

    • Currency depreciation can make exports cheaper and imports more expensive, leading to an increase in exports and a decrease in imports.

    • It can boost tourism as foreign visitors find the destination more affordable.

    • Currency depreciation can also increase the cost of imported goods and raw materials, potentially leading to inflation.

    • It can make f...

  • Answered by AI
  • Q2. Importance of Balance of Payment
  • Ans. 

    Balance of payment is important for assessing a country's economic health and its international transactions.

    • Balance of payment helps in understanding a country's trade position with the rest of the world.

    • It provides insights into the inflow and outflow of foreign currency, which impacts exchange rates.

    • A positive balance of payment indicates that a country is earning more from exports than spending on imports.

    • A negativ...

  • Answered by AI
  • Q3. Probability based questions
  • Q4. Your best quality
  • Ans. 

    My best quality is my ability to effectively communicate and collaborate with others.

    • Strong communication skills

    • Excellent interpersonal skills

    • Ability to work well in a team

    • Active listening

    • Conflict resolution

    • Empathy and understanding

    • Clear and concise verbal and written communication

    • Building positive relationships

    • Providing constructive feedback

    • Facilitating effective meetings

  • Answered by AI
  • Q5. How you handle stress
  • Ans. 

    I handle stress by prioritizing tasks, taking breaks, and practicing mindfulness.

    • I prioritize tasks based on deadlines and importance

    • I take short breaks to clear my mind and recharge

    • I practice mindfulness techniques such as deep breathing or meditation

    • I seek support from colleagues or supervisors when needed

  • Answered by AI
  • Q6. Calculate the total no.of accounts that a new bank card get.
  • Ans. 

    The total number of accounts a new bank card can get depends on various factors such as customer demand, marketing efforts, and eligibility criteria.

    • The number of accounts can vary based on the type of bank card (e.g., credit card, debit card)

    • Customer demand and marketing efforts play a significant role in acquiring new accounts

    • Eligibility criteria, such as credit score and income, may determine the number of accounts ...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Tips: Keep the resume short and to the point

Round: Test
Experience: Online test on the lines of common entrance exam with certain questions specific to finance field. And basically tested the general aptitude
Duration: 1 hour 30 minutes
Total Questions: 30

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. Why this specific profile? (analyst)
  • Ans. 

    I am passionate about analyzing data and deriving insights to drive strategic decision-making.

    • I have a strong background in data analysis and statistics.

    • I enjoy problem-solving and finding patterns in data.

    • I believe that my analytical skills can add value to the organization by providing actionable insights.

    • I have experience using various analytical tools such as Excel, SQL, and Tableau.

    • I am detail-oriented and thrive

  • Answered by AI
  • Q2. Why finance?
  • Ans. 

    Passion for analyzing data and making informed financial decisions.

    • I have always been fascinated by numbers and analyzing trends.

    • I enjoy the challenge of making sense of complex financial data.

    • I believe finance plays a crucial role in driving business success and growth.

    • I am motivated by the opportunity to help companies make informed financial decisions.

    • I find satisfaction in using data to identify opportunities for i

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: Q: Give me five steps to estimate the number of traffic lights in Bombay.
Me: I will divide the city into equidistant lines, both vertical and horizontal; sort of a mesh. Then I would take vertical and horizontal rectangles i.e. the rectangles which fall on length and breadth of the city. Starting with the horizontal ones I would try to estimate the number of roads going from east to west in each rectangle(depending on the type of area: residential, commercial or a highway) Similarly I would try to estimate the number of roads going from north to south in each vertical rectangle. Now I have the average number of roads per unit length and per unit breadth. Now, I can calculate the average number of roads intersecting per rectangle. Now if I have the data, I can also use the traffic density data to further improve my estimate, i.e. whether the traffic light is required in that rectangle or not.(depending upon the traffic density)
Q: Lets say that golden quadrilateral gets completed tomorrow. What would be its impact on the sales of Ashok Leyland?
Me: Sir, they would increase, as more and more traffic will shift from railways to roadways as the average time taken by road will decrease.
Q: If I say that the sales will decreases by road, the truk will make the same number of trips in less amount of time, thereby rendering overcapacity in the road transport market therefore the sales will decrease.
Me: (I actually didn't let him complete, I interrupted him in between and said that I got the logic)
Tips: Don't try to overstate the facts.

Skills:
Duration: 3
College Name: IIM Lucknow

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

Associate Interview Questions & Answers

JPMorgan Chase & Co. user image SHUBHAM VINAYAK KALE shubham

posted on 4 Dec 2016

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

Interview Questionnaire 

8 Questions

  • Q1. Project/DDP based questions
  • Q2. Any coding done in curriculum, explain the most complex one
  • Ans. 

    Yes, I have coded in curriculum. The most complex one was a project on building a web application using React and Node.js.

    • Built a full-stack web application using React and Node.js

    • Implemented user authentication and authorization using JSON Web Tokens (JWT)

    • Used MongoDB as the database and Mongoose as the ODM

    • Implemented real-time updates using Socket.IO

    • Deployed the application on Heroku

    • Handled errors and implemented log

  • Answered by AI
  • Q3. What is 'Big data'? Why is it called 'Big'
  • Ans. 

    Big data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big data is characterized by its volume, velocity, and variety

    • It is used in various industries such as healthcare, finance, and retail

    • Examples of big data include social media data, sensor data, and transactional data

    • It is called 'big' because it involves processing massive amounts of data

    • Big data requires ...

  • Answered by AI
  • Q4. Why do you want to switch to IT sector from your respective branch
  • Ans. 

    I am passionate about technology and eager to learn new skills in the IT sector.

    • I have always had a keen interest in technology and enjoy working with computers.

    • I believe the IT sector offers more opportunities for growth and advancement in my career.

    • I have seen the impact of technology on various industries and want to be a part of that innovation.

    • I have taken courses in programming and networking to prepare myself fo

  • Answered by AI
  • Q5. I did a course on compute simulation and had extra curricular in chess, so was asked to simulate a chess game
  • Q6. Two friends A & B meet after long time, A asks B about his family. B says he has 3 children, product of their ages is 36, and sum of their ages is equal to the (point towards a house on street) house numbe...
  • Q7. A rat has 3000 gm of rice, he has to travel a distance of 3000m, he eats 1gm rice/m, his maximum carrying capcity is 1000 gm,how should he travel the distance to reach with maximum rice left
  • Q8. A new software has 3 functions SelectSum(), log() and exp(). You have a table of 1000 data points, how will you find product of all points using only the above mentioned functions
  • Ans. 

    To find the product of all data points using SelectSum(), log(), and exp() functions.

    • Use the log() function to convert the product into a sum of logarithms

    • Apply the SelectSum() function to calculate the sum of logarithms

    • Finally, use the exp() function to convert the sum back into the product

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Aptitude part has easy questions, including number series, picture series, interest rate and some quant based questions.

The coding part is difficult.2-3 coding questions, Codes will be related to linked lists , trees or sorting.
Tips: Try to get maximum marks in aptitude, which should be fine with some practice . One of the code will be easy, so complete it and make a try for second
Duration: 1 hour
Total Questions: 30

Round: Puzzle Interview
Experience: very easy puzzles, I was able to solve all puzzles in first attempt
Tips: Be confident in your approach they are locking for approach more than result

Round: Technical Interview
Experience: I answered all resume based questions, he liked my choice of projects, though they were not exactly related to the profile. He liked me and said I would recommend you directly to HR round
Tips: Prepare in details about all points in resume, course work mentioned and projects, Based on performance in this interview, they decide to whether to take one more technical interview or send directly to HR

Skills: Behavioural Skills, Puzzle Solving Capability, Approaching A Problem, Basic Coding
College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: They selected 10 students from our college from CS and IT .They are looking for guys with extra projects done during college .App development will be a bonus ,contribution to open source and competitive programming will help for shortlisting.
Some of my friends had research papers published and they too got selected.

Round: Test
Experience: Have to write code snippet for 4 questions in 45 minutes
1.Difference between hour hand and minute hand
2.longest palindromic sub string.
3.Product Array puzzle
4.Some question related to matrix

Tips: All question were from geeksforgeeks
So practice it well ..u will make through it

Round: Test
Experience: Long Discussion on projects
They will scan each and every line of your Resume ,so dont write bullshits..
I wrote about interest in AI and got screwed..Discussion on college projects and final year project.
Then asked me to design a snake and ladder game OOPS concepts
Told me to find sum of all elements of sub matrix..(hint pre-processing the matrix)
Asked me about sessions and cookies
Gave a query to write on database indexing (dont remember exactly)
Asked me the code of the difference between hour hand and minute hand and extended it wid the second hand
Asked me as how to implement a dictionary
asked about TRIES ,CODE SNIPPET ON THE SHARED DOCS
One of my friend was asked to implement (set) of STL
Tips: The interviewer was cool guy..helped me a lot always made me comfortable.Interact with them as much as possible

Round: Test
Experience: Wid the CTO of the company .
Started wid the projects again .ACID properties,Database transactions,Concurrency Control
Optimization in database.
Then he asked me to code a function
Given a hash function applied on letters of English words ,un-hash it.Took me 45 minutes to reach the solution ,he helped me a lot.
Asked me to write the code for diameter of a binary tree
Asked me write the code for Boolean Matrix
One of my friend was asked to a question in which there was a bug in a m*n matrix and we have to find the bug(hint dfs or bfs)
Tips: keep calm ,,just keep talking ad he will help u a lot...

Round: HR
Experience: This was the toughest round for me...I had cleared all the rounds but they rejected me in the HR round ,,,dont know where I screwed..Learn every thing of Zomato..
They offered me an internship and thereafter they would look to give a PPO ...!!!lets see what happens

Skills: Coding Skills And Knowledge On Data Structures
Duration: 3
College Name: NIT Srinagar

Business Analyst Interview Questions & Answers

Citicorp user image Bhargava Excalibur

posted on 30 Aug 2015

Interview Questionnaire 

9 Questions

  • Q1. Tell me about your education background
  • Ans. 

    I have a Bachelor's degree in Business Administration and a Master's degree in Finance.

    • Bachelor's degree in Business Administration

    • Master's degree in Finance

  • Answered by AI
  • Q2. Explain one of your internships or project
  • Q3. Do you want to ask any question?
  • Q4. Estimate the number of atm in India
  • Ans. 

    There are approximately 200,000 ATMs in India.

    • As of March 2021, there were around 200,000 ATMs in India.

    • The number of ATMs in India has been steadily increasing over the years.

    • ATMs are operated by various banks and financial institutions in India.

    • The Reserve Bank of India regulates the functioning of ATMs in the country.

  • Answered by AI
  • Q5. Explain me about the internships followed by many questions
  • Q6. Why are you going for analytics though you have graduated from mining engineer
  • Ans. 

    Analytics offers a diverse range of career opportunities and aligns with my interests and skills.

    • Mining engineering and analytics share common skills such as data analysis and problem-solving.

    • Analytics offers a wider range of industries to work in, including finance, healthcare, and technology.

    • I have taken courses in data analytics and found it to be a fascinating field with endless possibilities.

    • I believe that my back...

  • Answered by AI
  • Q7. Why not Ph.d
  • Ans. 

    Ph.D not necessary for Business Analyst role

    • Ph.D is not a requirement for a Business Analyst role

    • Experience and skills are more important than a Ph.D

    • A Ph.D may not provide practical business knowledge

    • A Ph.D may not align with the goals of a Business Analyst role

  • Answered by AI
  • Q8. Why citi
  • Ans. 

    Citi is a leading global bank with a strong reputation for innovation and customer service.

    • Citi has a strong global presence with operations in over 160 countries

    • Citi is known for its innovative approach to banking, including its mobile app and digital banking services

    • Citi has a strong reputation for customer service, consistently ranking highly in customer satisfaction surveys

    • Citi offers a wide range of financial prod...

  • Answered by AI
  • Q9. Do you need to ask me anything

Interview Preparation Tips

Round: Test
Experience: The quantitative part is relatively easy, it is for testing the speed and accuracy, there are two math cases given the exam but they were also comparatively easy based on probability and statistics
Tips: In the math cases it is very important to analyse the result after solving it. that is what makes the difference because almost every one solves it
Duration: 30 minutes
Total Questions: 22

Round: Interview
Experience: The guy was one of the vice presidents in the firm. He seemed pretty cool.
They will make you more comfortable and they want you answer the questions.
Tips: Do not try to babble about all the courses that you have taken just brief him your specialization, projects and internships.

Try to explain an intern or project related to the position and be sure about what you are explaining these guys are technically very sound.

Try not to ask the bland questions like what are the opportunities at Citi , what is the vertical hierarchy in the firm. This is not an hr question and this is a trap. Ask him about the plunging profits or gains or what is citi's strategy to hold its position in certain countries. This will give him the impression that you did prepare for the interview.

Round: Interview
Experience: This was a mix of stress +guesstimate+ technical interview.
This round went so much longer than the first round. Some times they may ask an irrelevant question just to see how you react to it. In this round they have asked me everything about the projects and internships. As I told you they were technically sound they will track you up to every minute detail of the project. They have also asked many situation type questions. They have asked me about my high CGPA and why not a Ph.D.
Tips: Try to be as much cool as possible in this interview do not show a blank face to the interviewers when they have asked something from your CV. In the situation type questions try to relate those situations to something on your CV and then tell them how you have solved it. And you must be a master of your CV you must be able to answer about a particular graph or result from your project even during sleep. they shoot a lot of questions at you and answer them as appropriately as you can. Be sure to know what your strengths and weakness are. do not try to disguise your weakness as a strength, they will find out that you are trying to fake, they have seen thousand of candidates like you.

Round: Interview
Experience: I had a friendly chat with the HR to begin with as he was asking about my surname and stuff. the interview went on for 15-20 mins of the phone. here you need to really explain about why you are interested in citi and why you are into analytics
Tips: Follow the same tips mentioned in the third round.

General Tips: Be thorough with your projects and internships and do not try to fake the technical details
Skill Tips: Good technical knowledge is required and taking statistics courses would really help
Skills: Speed, Accuracy, Analytical ability, Stress handling, statistical methods basics, reasoning
College Name: IIT KHARAGPUR
Motivation: Nice work life balance and growth in the firm and the firms stability

Interview Preparation Tips

Round: Test
Experience: Test conducted covered 12th class mathematics like probability, permutations and combinations, etc. 

Good knowledge of this subject was needed for clearing this round.Around 40 students were short-listed after this round.

Round: Case Study Interview
Experience: Questions asked were based on probability and optimization.

Round: Technical Interview
Experience: This round judged the candidate's knowledge on Data Analysis, General Awareness and other questions asked were resume-based.

Round: HR Interview
Experience: In this, a candidate were asked some random questions and questions regarding himself.

General Tips: Have a good practice on all the questions sent by BC.For every point mentioned in the resume, one should have a backup for that point.Read Newspapers (at least Economic Times) at least before 2 months.
Skill Tips: CAT preparation would definitely help (almost same topics as CAT).
Skills: Knowledge in Probability and Statistics., Basics in Operation Research (Optimization).
College Name: IIT MADRAS
Motivation: The company encourages entrepreneurial skills,enabling and empowering employees to take appropriate decisions. Those wanting to grow better as an entrepreneur should definitely apply here.

Interview Questionnaire 

9 Questions

  • Q1. Write a regex for email validation?
  • Ans. 

    Regex for email validation

    • Start with a string of characters followed by @ symbol

    • Followed by a string of characters and a period

    • End with a string of characters with a length of 2-6 characters

    • Allow for optional subdomains separated by periods

    • Disallow special characters except for . and _ in username

  • Answered by AI
  • Q2. Parse the XML? and store the output in JSON. Discussed different approaches?
  • Q3. Print prime numbers in a given range and optimize the solution?
  • Ans. 

    Print prime numbers in a given range and optimize the solution.

    • Use Sieve of Eratosthenes algorithm to generate prime numbers efficiently

    • Start with a boolean array of size n+1, mark all as true

    • Loop through the array and mark all multiples of each prime as false

    • Print all the indexes that are still marked as true

  • Answered by AI
  • Q4. Puzzle – 25 horses – 5 lanes, find fastest 3 horses?
  • Q5. Web related questions on Sessions and cookies?
  • Q6. A lot of discussion on my resume, experience etc
  • Q7. Find angle between hour hand and minute hand in clock if time is given? Write a program or pseudo code?
  • Ans. 

    Find angle between hour and minute hand in a clock given the time.

    • Calculate the angle made by the hour hand with respect to 12 o'clock position

    • Calculate the angle made by the minute hand with respect to 12 o'clock position

    • Find the difference between the two angles and take the absolute value

    • If the angle is greater than 180 degrees, subtract it from 360 degrees to get the smaller angle

  • Answered by AI
  • Q8. A hash function was written to convert a string into a hash. Write a un-hash function to revert it(from hash to string)?
  • Ans. 

    To un-hash a string, use a reverse algorithm to convert the hash back to the original string.

    • Create a reverse algorithm that takes the hash as input and outputs the original string

    • Use the same logic as the hash function but in reverse order

    • If the hash function used a specific algorithm, use the inverse of that algorithm to un-hash the string

  • Answered by AI
  • Q9. He discussed about expectations and role. Asked me if I have any questions. He said to me “yaha aana hai to marwani padegi. tyar ho”? I smiled and asked what are the work timings? He said 9-9 and I was kin...

Interview Preparation Tips

General Tips: I applied through a recruiter. Then I got a call from Zomato HR. It was for LAMP developer profile. She asked me about my profile and also shared some expectations from the role. She asked me to come for F2F rounds to take the process further
Skills: Web development, JSON, Algorithm
College Name: na
Motivation: Overall process was not very tough. But they have start up culture. People work their for 11-12 hours a day. Sometimes on Saturday as well. So people who are geeks or have nothing in life to do except their job can go and join

Skills evaluated in this interview

DigiChefs Interview FAQs

How many rounds are there in DigiChefs interview for experienced candidates?
DigiChefs interview process for experienced candidates usually has 3 rounds. The most common rounds in the DigiChefs interview process for experienced candidates are Resume Shortlist, Assignment and One-on-one Round.
How to prepare for DigiChefs interview for experienced candidates?
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 DigiChefs. The most common topics and skills that interviewers at DigiChefs expect are Digital Marketing, Social Media Marketing, Equity Research, Google Analytics and Interpersonal Skills.
What are the top questions asked in DigiChefs interview for experienced candidates?

Some of the top questions asked at the DigiChefs interview for experienced candidates -

  1. How will you spend $10000 for xyz clie...read more
  2. You have to present seo au...read more
  3. Basic questions about paid me...read more

Tell us how to improve this page.

DigiChefs Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 563 Interviews
Wells Fargo Interview Questions
3.8
 • 562 Interviews
Bajaj Finserv Interview Questions
4.0
 • 519 Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
Swiggy Interview Questions
3.8
 • 424 Interviews
Zomato Interview Questions
3.7
 • 308 Interviews
Box8 Interview Questions
3.5
 • 13 Interviews
FoodPanda Interview Questions
3.7
 • 8 Interviews
View all

DigiChefs Reviews and Ratings

based on 8 reviews

3.1/5

Rating in categories

3.5

Skill development

3.2

Work-life balance

3.4

Salary

3.1

Job security

3.3

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 8 Reviews and Ratings
SEO Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Social Media Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Social Media Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Executive
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SEO Executive
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare DigiChefs with

Zomato

3.8
Compare

Swiggy

3.8
Compare

FoodPanda

3.7
Compare

Faasos Food Services

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