Upload Button Icon Add office photos

Filter interviews by

ChicMic Associate Software Developer Interview Questions and Answers

Updated 2 Oct 2024

ChicMic Associate Software Developer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Logical, technical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Create three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers accordingly

    • Set the head of the linked list to the new tail

  • Answered by AI
  • Q2. Reverse the string
  • Ans. 

    Reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the original string from end to start and append each character to the new string

    • Return the reversed string

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Debouncing concept
  • Q2. Event loop and callback
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a dedicated and passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development

    • Passionate about coding and problem-solving

    • Strong communication and teamwork skills

    • Quick learner and adaptable to new technologies

  • Answered by AI
  • Q2. What the strength and weakness in you
  • Ans. 

    My strength is my problem-solving skills and attention to detail. My weakness is that I can be overly critical of my own work.

    • Strength: Strong problem-solving skills - I enjoy tackling complex problems and finding efficient solutions.

    • Strength: Attention to detail - I am meticulous in my work and strive for perfection.

    • Weakness: Overly critical of my own work - I tend to be hard on myself and can sometimes struggle to se...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

3 online dsa questions easy to medium

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Nov 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 - Technical 

(1 Question)

  • Q1. Basic questions about class and objects and some DSA questions related to arrays.
Round 3 - Technical 

(1 Question)

  • Q1. DSA basic questions and C++ questions related to polymorphism and class design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - they finalized me and called me for a director's round in their office. Later, they said the director was not available and they would call me next week, after that their HR stopped responding to calls.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Some C++ 14/17 questions and OOPs concepts
  • Q2. DSA questions based for basic game logics.
Round 2 - Technical 

(2 Questions)

  • Q1. Advanced OOPs and C++ questions
  • Q2. DSA coding questions based on Stacks and Linked list
Round 3 - HR 

(3 Questions)

  • Q1. Called me to Noida for a F2F HR round. I wasn’t given any Travel allowance. CTC negotiation was brutal. They were not willing to give me even a 5% hike on my previous salary.The HR and the Team said they’d...
  • Q2. A month passed by. Sometimes they’d say the technical team who took your interview wasn’t available so that the CTC discussion could be further done. And somedays they’d just delay by saying we’d get back ...
  • Q3. After a month of wasting my time. The HR finally called and said they rejected me based on the CTC. And are not even willing to negotiate because of my not so well performance in the technical rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had the worst experience ever interviewing in an MNC. Did not expect such unprofessional behaviour from a big company like Merkur Gaming.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Required to write codes in python

Round 2 - Coding Test 

Required to write codes in python

Round 3 - HR 

(2 Questions)

  • Q1. Time to tackle difficulties
  • Q2. Time to learn things outside school
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude only think out of box

Round 2 - One-on-one 

(2 Questions)

  • Q1. Static and final difference
  • Ans. 

    Static variables belong to the class itself, while final variables cannot be changed after initialization.

    • Static variables are shared among all instances of a class

    • Final variables cannot be reassigned once initialized

    • Static variables are initialized only once at the start of the program

    • Final variables must be initialized when declared

  • Answered by AI
  • Q2. Patterns problem
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. Checking english fluency

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good company, friendly HR and interviewer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

10 reasoning questions and 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Wap for factorial with recurrsion
  • Ans. 

    Factorial calculation using recursion in a programming language

    • Define a function that takes an integer as input

    • Base case: if input is 0, return 1

    • Recursive case: return input multiplied by factorial of input-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI
  • Q2. Opps and basic core Java questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple logic and maths based questions along with coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on string literals
  • Q2. Array vs arraylist
  • Ans. 

    Arrays are fixed in size, while ArrayLists can dynamically resize. Arrays are faster for accessing elements, while ArrayLists offer more flexibility.

    • Arrays have a fixed size, while ArrayLists can dynamically resize.

    • Arrays are faster for accessing elements, while ArrayLists offer more flexibility in terms of adding, removing, and manipulating elements.

    • Example: String[] namesArray = new String[5]; ArrayList namesList = n

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. My strength and weaknesses
  • Q2. Past work experiences if any
  • Ans. 

    I have worked as a software developer for 3 years at XYZ company.

    • Developed web applications using Java, Spring, and AngularJS

    • Collaborated with team members to design and implement new features

    • Participated in code reviews and testing processes

    • Resolved technical issues and provided support to end users

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions were pretty easy like on speed etc

Round 2 - Coding Test 

Coding questions were also easy like patterns code, reverse string just basics

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

Systematic interview test

Round 2 - One-on-one 

(1 Question)

  • Q1. What is java and oops concepts
  • Ans. 

    Java is a popular programming language used for developing various applications. OOPs concepts refer to Object-Oriented Programming principles.

    • Java is a high-level, class-based, object-oriented programming language.

    • OOPs concepts include Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation refers to bundling data and meth...

  • Answered by AI

ChicMic Interview FAQs

How many rounds are there in ChicMic Associate Software Developer interview?
ChicMic interview process usually has 4 rounds. The most common rounds in the ChicMic interview process are Technical, Aptitude Test and HR.
What are the top questions asked in ChicMic Associate Software Developer interview?

Some of the top questions asked at the ChicMic Associate Software Developer interview -

  1. Reverse the linked l...read more
  2. Reverse the str...read more
  3. Event loop and callb...read more

Tell us how to improve this page.

ChicMic Associate Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

IDZ Digital Interview Questions
3.8
 • 22 Interviews
Kwalee India Interview Questions
2.9
 • 7 Interviews
Games2Win Interview Questions
2.4
 • 7 Interviews
Tencent Interview Questions
4.6
 • 6 Interviews
Digitoonz Interview Questions
3.0
 • 5 Interviews
99Games Interview Questions
3.1
 • 4 Interviews
View all
ChicMic Associate Software Developer Salary
based on 22 salaries
₹3.6 L/yr - ₹6.5 L/yr
20% less than the average Associate Software Developer Salary in India
View more details

ChicMic Associate Software Developer Reviews and Ratings

based on 28 reviews

4.7/5

Rating in categories

4.8

Skill development

4.7

Work-life balance

4.4

Salary

4.5

Job security

4.7

Company culture

4.5

Promotions

4.7

Work satisfaction

Explore 28 Reviews and Ratings
Associate Software Engineer
32 salaries
unlock blur

₹3.6 L/yr - ₹9 L/yr

Associate Software Developer
22 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

Software Developer
12 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Software Engineer
11 salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Explore more salaries
Compare ChicMic with

Sportz Interactive

3.2
Compare

Head Digital Works

3.9
Compare

Deltatech Gaming

3.3
Compare

Lakshya Digital

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