Upload Button Icon Add office photos

Filter interviews by

Sketch Brahma Technologies Interview Questions and Answers

Updated 3 May 2025
Popular Designations

9 Interview questions

A Reactjs Developer was asked 1mo ago
Q. Write a function to find the number of occurrences of a given word in a sentence.
Ans. 

To find occurrences of a word in a sentence, we can use string methods to count how many times it appears.

  • Use the split method: Split the sentence into an array of words and then filter to count occurrences. Example: 'hello world hello'.split(' ').filter(word => word === 'hello').length.

  • Regular expressions: Use regex to match the word in a case-insensitive manner. Example: 'hello world hello'.match(/hello/gi).l...

View all Reactjs Developer interview questions
A Reactjs Developer was asked 1mo ago
Q. Given an array of integers, find a pair whose sum is zero.
Ans. 

Find pairs in an array that sum to zero, useful for identifying complementary values in data sets.

  • Use a HashSet: Store elements in a HashSet and check if the negative of each element exists.

  • Example: For array [-1, 1, 2, -2], pairs are (-1, 1) and (2, -2).

  • Sorting Method: Sort the array and use two pointers to find pairs that sum to zero.

  • Example: In sorted array [-2, -1, 0, 1, 2], pairs are (-2, 2) and (-1, 1).

  • Time ...

View all Reactjs Developer interview questions
An Angular Frontend Developer was asked 9mo ago
Q. What are decorators in Angular?
Ans. 

Decorators in Angular are a design pattern that allows you to add behavior to classes, properties, or methods.

  • Decorators are functions that are prefixed with @ and are used to modify classes or properties in Angular.

  • They are commonly used for metadata annotations, dependency injection, and to define component behavior.

  • Examples include @Component, @Injectable, @Input, @Output, @ViewChild, etc.

View all Angular Frontend Developer interview questions
An Angular Frontend Developer was asked 9mo ago
Q. What are interceptors?
Ans. 

Inceptors are services in Angular that allow for intercepting and transforming HTTP requests and responses.

  • Inceptors are used to modify HTTP requests before they are sent and HTTP responses before they are received.

  • They can be used for tasks like adding headers, logging, error handling, and caching.

  • Inceptors are commonly used in Angular applications to handle authentication tokens, error handling, and API requests...

View all Angular Frontend Developer interview questions
A Front end Developer was asked
Q. What are CSS media queries, and what is the difference between min and max?
Ans. 

CSS media queries are used to apply different styles based on device characteristics. Min and max define the range of values.

  • Media queries allow for responsive design by adapting to different screen sizes and orientations

  • Min-width and max-width are commonly used to define the range of screen sizes

  • Min-device-width and max-device-width are used to target specific device characteristics

  • Other media query features incl...

View all Front end Developer interview questions
A Front end Developer was asked
Q. What is CSS Flexbox and its attributes?
Ans. 

CSS Flexbox is a layout module that helps in creating flexible and responsive layouts.

  • Flexbox is used to align and distribute space among items in a container.

  • It has properties like display, flex-direction, justify-content, align-items, and flex-wrap.

  • Flexbox is widely used in modern web development for creating responsive designs.

  • Example: display: flex; flex-direction: row; justify-content: center; align-items: ce...

View all Front end Developer interview questions
A Front end Developer was asked
Q. What is SCSS/Sass and what is its use?
Ans. 

Scss/Sass is a CSS preprocessor that adds features like variables, nesting, and mixins to make writing CSS easier and more efficient.

  • Scss/Sass stands for Syntactically Awesome Style Sheets

  • It is a CSS preprocessor that compiles into regular CSS

  • It adds features like variables, nesting, and mixins to make writing CSS easier and more efficient

  • It also allows for more advanced features like functions and loops

  • Example: $...

View all Front end Developer interview questions
Are these interview questions helpful?
A Product Designer was asked
Q. What is your expected CTC?
Ans. 

The expected CTC for the Product Designer role depends on various factors such as experience, skills, location, and company policies.

  • The CTC can range from 5-15 lakhs per annum in India for mid-level designers

  • Senior designers with more experience and skills can expect a higher CTC

  • Location also plays a crucial role in determining the CTC as it varies from city to city

  • Company policies and benefits such as health ins...

View all Product Designer interview questions
An Angular Frontend Developer was asked 9mo ago
Q. Types of binding
Ans. 

Types of binding in Angular include interpolation, property binding, event binding, two-way binding, and attribute binding.

  • Interpolation: {{ data }}

  • Property binding: [property]="data"

  • Event binding: (event)="function()"

  • Two-way binding: [(ngModel)]="data"

  • Attribute binding: [attr.attributeName]="data"

View all Angular Frontend Developer interview questions

Sketch Brahma Technologies Interview Experiences

14 interviews found

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

(2 Questions)

  • Q1. Snippet based questions in Javascript - Hoisting , Var, let and const
  • Q2. Array and object destructing

Interview Preparation Tips

Interview preparation tips for other job seekers - Continue applying regardless of the rejections.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Telephonic Call 

(5 Questions)

  • Q1. Closures,callbacks
  • Q2. ForEach, map difference , classes, objects,
  • Q3. Types of binding
  • Ans. 

    Types of binding in Angular include interpolation, property binding, event binding, two-way binding, and attribute binding.

    • Interpolation: {{ data }}

    • Property binding: [property]="data"

    • Event binding: (event)="function()"

    • Two-way binding: [(ngModel)]="data"

    • Attribute binding: [attr.attributeName]="data"

  • Answered by AI
  • Q4. Decorators in angular
  • Ans. 

    Decorators in Angular are a design pattern that allows you to add behavior to classes, properties, or methods.

    • Decorators are functions that are prefixed with @ and are used to modify classes or properties in Angular.

    • They are commonly used for metadata annotations, dependency injection, and to define component behavior.

    • Examples include @Component, @Injectable, @Input, @Output, @ViewChild, etc.

  • Answered by AI
  • Q5. What are inceptors
  • Ans. 

    Inceptors are services in Angular that allow for intercepting and transforming HTTP requests and responses.

    • Inceptors are used to modify HTTP requests before they are sent and HTTP responses before they are received.

    • They can be used for tasks like adding headers, logging, error handling, and caching.

    • Inceptors are commonly used in Angular applications to handle authentication tokens, error handling, and API requests.

  • Answered by AI
Round 2 - Coding Test 

3 javascript questions to solve.
Flatten array.
Rotate array with index.
Remove duplicate elements
Without using built-in functions

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

It's 1 hour duration coding test:
1st question was to find the second highest value from the list.
2nd question was to flattend the list of list of Integers.
Both had a constraint
After that I didn't hear from them

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join the company, they aren't serious about interviewing or hiring you and you won't be hearing from them, they boast about having flipkart as a client that's it.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - HR 

(2 Questions)

  • Q1. Introduction round
  • Q2. Non technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - The first round of interviews is a technical round, and you will need to present your work, HR informed me when she called.

The technical round was taken by the HR for UX Design position.

Dislikes :
1: She asked me to turn on the camera throughout the interview, but she did not even turn it on when I was there. This was the first thing that bothered me during the round. The biggest example of her poor listening skills is that she continues to mispronounce the candidate's name even after being corrected.

2. While I was presenting my project portfolio, she insisted on looking at "figma files" that contained current or previous projects. Neither listening to me nor looking at the portfolio work piqued her interest. She persisted in asking to see my most recent Figma files despite my attempts to explain the NDA and provide her with project files from previous projects.

3. Despite my knowledge that it was a technical round, I participated in the whiteboard exercise even though I was not told to.

4. Not even bothered to inform candidate about the interview status; at least put up a so-called
"unfortunate mail".

All in all, it was a pretty awful experience.
Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Share a Breif About Us
  • Ans. 

    We are a leading tech company specializing in creating user-friendly interfaces for various digital platforms.

    • Specialize in UI/UX design for websites and mobile apps

    • Focus on creating intuitive and visually appealing designs

    • Work closely with clients to understand their needs and goals

    • Utilize user research and testing to optimize user experience

    • Stay updated on latest design trends and technologies

  • Answered by AI
  • Q2. Showcase your work

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Take this interview, These are bunch of people of wasting others time

After Reading multiple negative review, Still i taken the interview,
Everything went well, but while showcasing the projects
She is asking to show the projects which even though i mentioned about NDA Agreement, She didn't even bothered, Simply replying "rescheduling the interview please showcase the projects when you are ready" Very unprofessional way.

They are like my Ex simply ghosting people, even after we are doing the assesment and wasting our valuable time for them

Atleast put an unfortunate mail, it will not take more than a minute.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Find tha pair whose sum is zero
  • Ans. 

    Find pairs in an array that sum to zero, useful for identifying complementary values in data sets.

    • Use a HashSet: Store elements in a HashSet and check if the negative of each element exists.

    • Example: For array [-1, 1, 2, -2], pairs are (-1, 1) and (2, -2).

    • Sorting Method: Sort the array and use two pointers to find pairs that sum to zero.

    • Example: In sorted array [-2, -1, 0, 1, 2], pairs are (-2, 2) and (-1, 1).

    • Time Compl...

  • Answered by AI
  • Q2. Find the occurrences of word in a sentence
  • Ans. 

    To find occurrences of a word in a sentence, we can use string methods to count how many times it appears.

    • Use the split method: Split the sentence into an array of words and then filter to count occurrences. Example: 'hello world hello'.split(' ').filter(word => word === 'hello').length.

    • Regular expressions: Use regex to match the word in a case-insensitive manner. Example: 'hello world hello'.match(/hello/gi).length...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All good
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HR will give to solve 2 DSA problems,1 React question

Round 2 - Technical 

(2 Questions)

  • Q1. 1 DSA question about strings
  • Q2. Js and react questions
Round 3 - Technical 

(2 Questions)

  • Q1. OOPs based questions
  • Q2. 1 Programing question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Good question on Kubernetes Docker
  • Q2. AWS linux detailed questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have good understanding of DevOps tools and Linux with Cloud Platform like AWS or Azure
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

1. She asked me to write a code to find second largest number using one for loop.
2. Array rotation using one for loop.
3. React coding assignment online

Interview Preparation Tips

Interview preparation tips for other job seekers - They are just doing the time pass with the candidates and playing with the emotion of people who are looking for job . They are very irresponsible and bad behaviour. Not even picking up the call or not any message.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

2 dsa question :
return 2nd largest in the array.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview went well & I answered both questions, then they rejected me.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Sketch Brahma Technologies?
Ask anonymously on communities.

Sketch Brahma Technologies Interview FAQs

How many rounds are there in Sketch Brahma Technologies interview?
Sketch Brahma Technologies interview process usually has 1-2 rounds. The most common rounds in the Sketch Brahma Technologies interview process are Technical, Coding Test and HR.
How to prepare for Sketch Brahma Technologies 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 Sketch Brahma Technologies. The most common topics and skills that interviewers at Sketch Brahma Technologies expect are Javascript, HTML, Redux, CSS and React Native.
What are the top questions asked in Sketch Brahma Technologies interview?

Some of the top questions asked at the Sketch Brahma Technologies interview -

  1. What is css media queries and difference between min and ...read more
  2. What is css felxbox and attribu...read more
  3. What is Scss/sass and what is the use of...read more
How long is the Sketch Brahma Technologies interview process?

The duration of Sketch Brahma Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 13 interview experiences

Difficulty level

Easy 11%
Moderate 89%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

Sketch Brahma Technologies Reviews and Ratings

based on 16 reviews

3.4/5

Rating in categories

4.0

Skill development

3.3

Work-life balance

3.0

Salary

2.6

Job security

3.4

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 16 Reviews and Ratings
Product Designer
46 salaries
unlock blur

₹3.5 L/yr - ₹10.1 L/yr

Product Engineer
33 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Product Designer
7 salaries
unlock blur

₹6.5 L/yr - ₹10.4 L/yr

Data Analyst
6 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Front end Developer
5 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Explore more salaries
Compare Sketch Brahma Technologies with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview