Upload Button Icon Add office photos

Filter interviews by

Unique Creations Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General basic assessment.

Round 2 - MCQ 

(1 Question)

  • Q1. They will give you few PDFs to read and then MCQ from that.

Interview Preparation Tips

Interview preparation tips for other job seekers - So the job application process will start from emailing them to the MCQ. Then if selected you'll receive email with next steps which involves Skype chat(no involvement of voice call or video, only chat). Then after the technical setup you need to email them again that you're done with that, after that you'll get another mail with a link to choose a starting date.
On the starting date you'll again message one person(Yashima Kamra) on Skype, they'll give you 'Zulip'(it's an open source chat system, interface is kind of like Discord but too basic) access. Now you need to message in an assigned group in Zulip. The Zulip part is 'Training' in real but good luck getting any support from the other person. He/she will just give you commands, and if you ask any questions or ask for assistance to understand the new process they'll simply ignore that.
Then if you're lucky like me one day they'll report that you're ate fault, you haven't reported so they've revoked your Zulip access.

I have joined there or you can say hoped to work atleast(as it was 4 hours/day job) but that's not possible it seems.

If you're looking for jobs here I'd suggest to give it a try ofcourse so that people can actually know about this company's rubbish people.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is process of configuration of transmitters
  • Q2. What is the of put of transmitters and I to P relay
Round 2 - Technical 

(2 Questions)

  • Q1. What is the process of transmitters configuration
  • Q2. What is the output of transmitters and I to P relay
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

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

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

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Can we perform data driven testing using postman
  • Ans. 

    Yes, Postman supports data driven testing through the use of variables and data files.

    • Postman allows users to define variables and use them in requests for data driven testing.

    • Data files such as CSV or JSON can be imported into Postman to drive test data.

    • Iterations can be set up in Postman to run tests with different data sets.

  • Answered by AI
  • Q2. Basic coding questions on integer array missing numbers

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. About yourself ?
  • Q2. Just asked questions on previous role
  • Q3. How many types of IOT devices are there
  • Ans. 

    There are three main types of IoT devices: consumer, commercial, and industrial.

    • Consumer IoT devices: Smart home devices like thermostats, lights, and security cameras.

    • Commercial IoT devices: Smart meters, asset tracking systems, and connected vending machines.

    • Industrial IoT devices: Sensors and actuators used in manufacturing, agriculture, and healthcare.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste time as the interviewer doesn't ask you questions related to JD.He asked me questions related to my previous work experience.Hr is good but interviewer is out of mind .I think interviewer wants to select their known candidates or relatives.Even if you give all answers they will simply reject you.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Online Assessment for 60 min

Round 2 - One-on-one 

(2 Questions)

  • Q1. General Question
  • Q2. Final Year college project

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Know your strengths
2. Prepare Thoroughly
3. Positive Mindset
4. Be Clear and Concise
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How you handle critical projects and team conflicts
  • Ans. 

    I handle critical projects by prioritizing tasks, communicating effectively, and resolving conflicts through open dialogue and compromise.

    • Prioritize tasks based on urgency and impact on project timeline

    • Communicate clearly with team members about expectations and deadlines

    • Address conflicts promptly through open dialogue and seeking compromise

    • Encourage team members to share their perspectives and work towards a common go...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Application Form 

(2 Questions)

  • Q1. They believe they are good when they are not. Maquila company
  • Q2. Lack of skills. no what they promise.

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow the law.
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 Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How angular app starts?
  • Ans. 

    Angular app starts by bootstrapping the root module and creating the component tree.

    • Angular app starts by loading the main.ts file, which bootstraps the root module of the application.

    • The root module then defines the component tree, which represents the structure of the application.

    • Angular creates instances of components and injects services as needed to render the application.

    • The AppComponent is typically the root com...

  • Answered by AI
  • Q2. Write code to find a string is palindrome or not
  • Ans. 

    Code to check if a string is a palindrome or not

    • Create a function that takes a string as input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the string with its reverse to check if it's a palindrome

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2023. 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 - HR 

(1 Question)

  • Q1. About salary and previous job profile
Round 3 - One-on-one 

(1 Question)

  • Q1. About what kind of projects we did in the past
Round 4 - Technical 

(1 Question)

  • Q1. Ask you about the particular field wise knowledge and past project related questions
Round 5 - Technical 

(1 Question)

  • Q1. Never happens, they just stall you

Interview Preparation Tips

Interview preparation tips for other job seekers - Recently interviewed by Co-founder. That was my third round. Still, they kept me on hold assuring that all reviews for my interview were positive and still wanted one more interview round. Then they didn't contact at all. When I contacted them, I got to know that their HR assumed I was not ready to relocate so they didn't contact. So either they don't know who they interview or they just assume things about candidates. Then, two days later, they said they have hired someone and let me know if any requirements in future. Just waste of time. I recommend not to apply here if you really are applying for job change and one should not depend on this company's assurances. They will just interview you and waste you time without letting you know anything about the decision.

Tell us how to improve this page.

Interview Questions from Similar Companies

Busibud Interview Questions
4.0
 • 42 Interviews
Switchon Interview Questions
3.1
 • 4 Interviews
Innovate Labs Interview Questions
5.0
 • 3 Interviews
Leumas Interview Questions
3.4
 • 3 Interviews
View all

Unique Creations Reviews and Ratings

based on 2 reviews

1.4/5

Rating in categories

1.6

Skill development

2.1

Work-Life balance

1.1

Salary & Benefits

1.6

Job Security

1.4

Company culture

1.0

Promotions/Appraisal

1.3

Work Satisfaction

Explore 2 Reviews and Ratings
Graphic Designer
5 salaries
unlock blur

₹1.5 L/yr - ₹2.7 L/yr

Architect Interior Designer
5 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Interior Designer
4 salaries
unlock blur

₹3.1 L/yr - ₹4.3 L/yr

Mobile Application Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹6 L/yr

Account Assistant
4 salaries
unlock blur

₹1.8 L/yr - ₹2.3 L/yr

Explore more salaries
Compare Unique Creations with

Busibud

4.0
Compare

Plus IT Park

5.0
Compare

SP Robotic Works

4.0
Compare

Morphedo Technologies

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