Upload Button Icon Add office photos

Filter interviews by

Blackcoffer Intern Interview Questions and Answers

Updated 27 Sep 2024

Blackcoffer Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2024

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

Data crawling and data extraction and textual and sentimental analysis

Interview Preparation Tips

Interview preparation tips for other job seekers - work hard and do good

Intern Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Assignment 

Made us make a fullstack application

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghosted by blackcoffer after submitting assignment

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Interview questions from similar companies

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What motivates you to join Zidio Development as opposed to other companies?
  • Q2. How will your experience with Zidio development contribute to your career growth?
  • Ans. 

    My experience with Zidio development will enhance my technical skills, teamwork, and problem-solving abilities, crucial for my career growth.

    • Developed proficiency in programming languages like Java and Python, which are essential for software development roles.

    • Collaborated with a diverse team, improving my communication skills and ability to work in a team-oriented environment.

    • Gained hands-on experience with agile meth...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. They need skills of googler at 4 lakhs
  • Q2. 2 leetcode hard and 2 project Euler problems,did all still got rejected

Intern Interview Questions & Answers

Zidio Development user image Rajveer Choubisa

posted on 19 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. React hooks related How to use them
  • Q2. About web socket real time messaging
  • Q3. About react router dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself well for interview Do mot panic
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS based questions
  • Q2. Basic language based questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Second largest number in an array
  • Ans. 

    Find the second largest number in an array of strings.

    • Convert the strings to numbers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
  • Q2. Pairs with given sum
  • Ans. 

    Find pairs in an array that sum up to a given target value.

    • Use a hash set to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hash set.

    • Return the pairs that sum up to the target value.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Oct 2022. There were 5 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 - Coding Test 

Duration is around 1 hour

Round 3 - Technical 

(1 Question)

  • Q1. 1. Basic programming concepts 2. OOP concepts and basic problem solving skills
Round 4 - Technical 

(1 Question)

  • Q1. Programming question
Round 5 - HR 

(1 Question)

  • Q1. 1. Basic questions

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are Joins in SQL? Briefly explain difference between all types of joins
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables, with NULL values for non-matching rows

    • Cross join retur

  • Answered by AI
  • Q2. Find a sub array with a given sum
  • Ans. 

    Given an array of integers, find a contiguous subarray with a given sum.

    • Use a sliding window approach to iterate through the array and keep track of the current sum.

    • If the current sum exceeds the given sum, move the window's left endpoint forward.

    • If the current sum is less than the given sum, move the window's right endpoint forward.

    • If the current sum equals the given sum, return the subarray.

    • Time complexity: O(n), Spa

  • Answered by AI
  • Q3. Questions related to Projects mentioned in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice would be to remain honest throughout the interview. The interviewer checks the problem solving abilities by your approach of solving it. Ask if there are any doubts.

Skills evaluated in this interview

Blackcoffer Interview FAQs

How many rounds are there in Blackcoffer Intern interview?
Blackcoffer interview process usually has 1 rounds. The most common rounds in the Blackcoffer interview process are Assignment.

Tell us how to improve this page.

Blackcoffer Intern Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more
Data Scientist
23 salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Data Scientist Associate
9 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Data Science Intern
9 salaries
unlock blur

₹1 L/yr - ₹4.2 L/yr

Associate Software Engineer
7 salaries
unlock blur

₹1.2 L/yr - ₹4.5 L/yr

Software Engineer
6 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Blackcoffer with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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