Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Delostyle Studio Team. If you also belong to the team, you can get access from here

Delostyle Studio Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Delostyle Studio Interview Questions, Process, and Tips

Updated 30 Jul 2024

Top Delostyle Studio Interview Questions and Answers

View all 7 questions

Delostyle Studio Interview Experiences

Popular Designations

3 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on Angular
  • Q2. BS questions that don't make any sense
Round 2 - Technical 

(2 Questions)

  • Q1. What are API errors and levels?
  • Ans. 

    API errors are issues that occur when using an API, categorized into different levels based on severity.

    • API errors are issues that occur when a client makes a request to an API and the API is unable to fulfill that request.

    • API errors are categorized into different levels such as 4xx for client errors (e.g. 404 Not Found) and 5xx for server errors (e.g. 500 Internal Server Error).

    • Each level of API errors indicates the s...

  • Answered by AI
  • Q2. Can you write an assignment for us?
  • Ans. 

    Yes, I can write an assignment for you.

    • Research the topic thoroughly before starting to write

    • Create an outline to organize your thoughts and structure the assignment

    • Include relevant examples and case studies to support your points

    • Proofread and edit the assignment before submitting

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply. Not worth at all. Very egotistic interviewers

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. React native Hoc component
  • Q2. Redux in react native
  • Ans. 

    Redux is a state management library for React Native applications.

    • Redux helps manage the state of your application in a predictable way

    • It allows you to centralize your application's state and logic

    • Redux works by having a single source of truth, the store, which holds the state of your application

    • Actions are dispatched to update the state in the store, and components can subscribe to changes in the state

  • Answered by AI
Round 2 - Assignment 

Related to Client project

Round 3 - Technical 

(2 Questions)

  • Q1. All react native basic questions
  • Q2. Difference between props and components
  • Ans. 

    Props are used to pass data from parent to child components, while components are reusable building blocks of a UI.

    • Props are read-only and cannot be modified by the child component

    • Components can have their own state and logic, while props are used for passing data

    • Example:

    • Example:

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is middleware
  • Ans. 

    Middleware is software that acts as a bridge between different applications or components, allowing them to communicate and work together.

    • Middleware facilitates communication between different software components

    • It can handle tasks such as data transformation, security, and logging

    • Examples include message brokers like RabbitMQ, web servers like Apache Tomcat, and API gateways like Kong

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is model and what is migration
  • Ans. 

    A model is a representation of a database table in an object-oriented programming language. A migration is a way to alter the database schema.

    • A model defines the structure and behavior of data in an application, often corresponding to a table in a database.

    • Migrations are scripts that describe changes to the database schema, such as creating or modifying tables, columns, or indexes.

    • Models and migrations are commonly use...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is the difference between cake php and laravel
  • Ans. 

    CakePHP is a rapid development framework for PHP while Laravel is a more modern and advanced PHP framework.

    • CakePHP is known for its convention over configuration approach, making it easier for developers to get started quickly.

    • Laravel has a more expressive syntax and provides more features out of the box, such as authentication and routing.

    • Laravel has a larger community and ecosystem with more third-party packages avai...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at Delostyle Studio

View all

Interview questions from similar companies

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

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There was an OA on hackerearth of an hour. In that there were 20 MCQs and two DSA questions easy to medium on Heap, Hashmap and Subarray

Round 2 - Technical 

(3 Questions)

  • Q1. Asked about previous worked project in last company
  • Q2. Asked one medium DSA question (DNA sequencing) and asked to design some schema
  • Q3. Asked one puzzle If there are 1000 bottles and one is poisonous, a rat will diw after one hour of drinking and you have only one hour to find out which bottle is poisonous, How many minimum rats you need ?

I appeared for an interview in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing was 10:00 AM. Platform was good.

  • Q1. 

    Subarray With Given Sum Problem Statement

    Given an array ARR of N integers and an integer S, determine if there exists a contiguous subarray within the array with a sum equal to S. If such a subarray exis...

  • Ans. 

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

    • Iterate through the array while keeping track of the current sum and start index.

    • Use a hashmap to store the sum and its corresponding index.

    • If the current sum - S is found in the hashmap, a subarray with sum S exists.

    • Return the start index and current index as the end index.

  • Answered by AI
  • Q2. 

    Remove Consecutive Duplicates Problem Statement

    Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.

    Input:

    String S

    Output:

    Output string

    Constr...

  • Ans. 

    Recursively remove consecutive duplicate characters from a string.

    • Use recursion to check if the current character is the same as the next character, if so skip the next character

    • Base case: if string length is 1, return the string

    • Example: Input: 'aabbc' Output: 'abc'

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 8 CGPAGoComet interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data structure questions.
Tip 2 : Do some projects.
Tip 3 : Have knowledge of DBMS.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Arrays problems
  • Q2. Sliding window problem
  • Ans. 

    Sliding window problem involves finding a subarray of fixed size k with maximum sum.

    • Use a sliding window approach to iterate through the array and calculate the sum of each subarray of size k.

    • Keep track of the maximum sum encountered so far.

    • Move the window by one element at a time and update the sum accordingly.

    • Example: Given array [1, 3, -1, -3, 5, 3, 6, 7] and k = 3, the subarray with maximum sum is [5, 3, 6] with su

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. One Puzzle to detect Defective Box
  • Q2. Previous Work Experience
  • Ans. 

    I have 3 years of experience as a Software Developer at XYZ company.

    • Developed web applications using Java and Spring framework

    • Collaborated with cross-functional teams to deliver projects on time

    • Implemented new features and enhancements based on client requirements

  • Answered by AI

I applied via Referral and was interviewed before Jun 2021. There were 2 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 - HR 

(1 Question)

  • Q1. Why do you want to join. What are your future plans

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing as such. Interns are treated s unpaid labours everywhere
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. My roll reletive question
  • Q2. Sales targets reletive questions
Round 3 - One-on-one 

(3 Questions)

  • Q1. My roll reletive question
  • Q2. My roll reletive questions
  • Q3. My profile related

Interview Preparation Tips

Interview preparation tips for other job seekers - No

Delostyle Studio Interview FAQs

How many rounds are there in Delostyle Studio interview?
Delostyle Studio interview process usually has 2-3 rounds. The most common rounds in the Delostyle Studio interview process are Technical, HR and Assignment.
How to prepare for Delostyle Studio interview?
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 Delostyle Studio. The most common topics and skills that interviewers at Delostyle Studio expect are Javascript, Lead Generation, PHP, Advertising and Ajax.
What are the top questions asked in Delostyle Studio interview?

Some of the top questions asked at the Delostyle Studio interview -

  1. What is the difference between cake php and lara...read more
  2. What are API errors and leve...read more
  3. Can you write an assignment for ...read more

Tell us how to improve this page.

Delostyle Studio Interview Process

based on 6 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Fabindia Interview Questions
4.0
 • 52 Interviews
Biba Apparels Interview Questions
3.6
 • 39 Interviews
NexTurn Interview Questions
4.1
 • 27 Interviews
GoComet Interview Questions
4.5
 • 23 Interviews
FloBiz Interview Questions
3.6
 • 23 Interviews
Vedant Fashions Interview Questions
4.0
 • 19 Interviews
Ritu Kumar Interview Questions
3.9
 • 9 Interviews
W for Woman Interview Questions
4.4
 • 3 Interviews
Global Desi Interview Questions
4.1
 • 2 Interviews
View all

Delostyle Studio Reviews and Ratings

based on 22 reviews

4.6/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

4.2

Salary

3.9

Job security

4.6

Company culture

3.9

Promotions

4.2

Work satisfaction

Explore 22 Reviews and Ratings
Lead Generation Specialist

Kolkata

2-3 Yrs

Not Disclosed

Explore more jobs
Software Developer
12 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Quality Analyst
4 salaries
unlock blur

₹3.3 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Delostyle Studio with

Fabindia

4.0
Compare

Biba Apparels

3.6
Compare

W for Woman

4.4
Compare

Global Desi

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