Upload Button Icon Add office photos

Filter interviews by

Smart Brains Engineers And Technologist Interview Questions and Answers

Updated 30 Mar 2023

Smart Brains Engineers And Technologist Interview Experiences

Popular Designations

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. I am Ankit Yadav from up my current location Noida Sector 59 Metro Station Mamura I have done my Master Degree in master of Business Administration I have total work experience 2.5 years
  • Answered Anonymously
  • Q2. What was the CTC in your last company
  • Ans. My last company CTC was 21000
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills , customer convincing power

Sales Executive Interview Questions asked at other Companies

Q1. Do you know what is selling and how you can sell it?
View answer (51)

I applied via Campus Placement and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Assignment 

Communication

Round 2 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. Dns, outlook, ticket solving html full form

Interview Preparation Tips

Interview preparation tips for other job seekers - Ticket solvings and troublshooting

Service Desk Engineer Interview Questions asked at other Companies

Q1. What will you do if zoom application does not open?
View answer (2)

Network Analyst Interview Questions & Answers

user image gantantra agrawal

posted on 8 Sep 2021

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

Interview Questionnaire 

1 Question

  • Q1. Group discussion topic was "whether skill is important or degree?".

Interview Preparation Tips

Interview preparation tips for other job seekers - keep your tone calm, pronunciation clear and a very middle answer like both are important because they don't like people with strict opinion.

Network Analyst Interview Questions asked at other Companies

Q1. Computer network- what is a modem and explain wireless technology?
View answer (1)

Jobs at Smart Brains Engineers And Technologist

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. They ask about yourself
  • Q2. Need to sign agreement

Interview Preparation Tips

Interview preparation tips for other job seekers - Think twice before joining Victorious Kidss Educares!

I want to share my experience to help others make informed decisions. Many employees at Victorious Kidss Educares have not received their November salary even till now, causing financial stress. Worse, every month, staff members have to personally approach the principal to ask for their salary—something that should be a basic right, not a favor.

Additionally, PF deductions appear on salary slips, but the amounts are not credited to PF accounts monthly, raising serious concerns. The institution also lacks professionalism, with misleading promises during interviews about IB training and career growth—which never materialize.

If you're considering joining this school, please do thorough research before making a decision. Employees deserve timely payments and ethical workplace practices!

#WorkplaceEthics #SalaryIssues #EmployeeRights #EducationSector
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 were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between useMemo and useCallback ?
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a computed value and recompute it only when its dependencies change.

    • useCallback is used to memoize a callback function and prevent unnecessary re-renders.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.

  • Answered by AI
  • Q2. How we do error handling in js ?
  • Ans. 

    Error handling in JavaScript involves using try-catch blocks, throwing errors, and using error objects.

    • Use try-catch blocks to catch errors and handle them gracefully

    • Throw errors using the throw keyword to indicate when something goes wrong

    • Use error objects like Error, SyntaxError, TypeError, etc. to provide more information about the error

    • Handle asynchronous errors using promises and the .catch() method

  • Answered by AI
  • Q3. What is Promises ? Write a Polyfill of Promise.all()
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • Promise.all() takes an array of promises and returns a single promise that resolves when all of the input promises have resolved.

    • A polyfill for Promise.all() can be implemented using a combination of Promise and Array.prototype.reduce().

  • Answered by AI
Round 2 - Assignment 

Frontend assignment make the CRUD application using of reactj.s

Interview Preparation Tips

Topics to prepare for Interview Kickstart Front end Developer interview:
  • Reactjs
  • Javascript
  • NextJs
  • HTML
  • CSS
Interview preparation tips for other job seekers - i submit my assignment, but hr not giving feedback for next interview rounds. They do not reply for my messages after submit the assignment.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Sales experience
  • Ans. 

    I have 3 years of sales experience in a previous role, where I successfully met and exceeded sales targets.

    • Demonstrate ability to build relationships with clients

    • Highlight experience in meeting and exceeding sales targets

    • Discuss any specific sales strategies or techniques used

  • Answered by AI
  • Q2. Edtech experience
  • Ans. 

    I have extensive experience with various educational technologies, including online learning platforms and interactive whiteboards.

    • Implemented online learning platforms to enhance student engagement

    • Utilized interactive whiteboards for interactive lessons

    • Trained teachers on how to effectively integrate technology into their curriculum

  • Answered by AI
  • Q3. What's your highest education
  • Q4. What are your dreams and goals
  • Q5. Where do you see yourself in another 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Edtech sales experience required
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell about data structure
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and modified efficiently.

    • Data structures include arrays, linked lists, stacks, queues, trees, graphs, etc.

    • They are essential for efficient algorithms and problem-solving.

    • Example: An array is a data structure that stores a collection of elements in contiguous memory locations.

  • Answered by AI
  • Q2. What is aaray and its types
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type. There are different types of arrays like one-dimensional, two-dimensional, and multi-dimensional arrays.

    • One-dimensional array: Stores elements in a single row or column.

    • Two-dimensional array: Stores elements in rows and columns.

    • Multi-dimensional array: Stores elements in more than two dimensions.

    • Example: ['apple', 'banana', 'orange']

  • Answered by AI

Skills evaluated in this interview

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

Find largest element

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

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Introduce yourself and research paper publications Details

Interview Preparation Tips

Interview preparation tips for other job seekers - Vice Chancellor will ask only about the publication in Scopus. His interaction with the job candidates was worst experience. He shows his negative attitude. Even though well qualified job candidates, he rejects without proper reasons. Simply they will conduct the interviews but they won't select. Waste of time. Full day they will conduct the interviews but finally they will select very very less people. Its better to go with some reference. Vice Chancellor method of selection only wrong. They will conduct simply offline interviews from morning to evening. But finally they will reject. They do not have the time sense. They will least bother about the candidates. No basic humanity.
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 Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your favourite movie
  • Q2. Tell me about your family
Round 2 - Group Discussion 

Do you consider online shopping or offline shopping which one will you support and why

Round 3 - HR 

(1 Question)

  • Q1. Why do you like to join in our company

Interview Preparation Tips

Topics to prepare for IILM Primary English Teacher interview:
  • Programming
  • Creativity
Interview preparation tips for other job seekers - Be confident while answering the questions.
Speak fluently and make eye contact with the interviewer.
Be maintain well dress sense.

Smart Brains Engineers And Technologist Interview FAQs

How many rounds are there in Smart Brains Engineers And Technologist interview?
Smart Brains Engineers And Technologist interview process usually has 2-3 rounds. The most common rounds in the Smart Brains Engineers And Technologist interview process are HR, Assignment and Technical.
How to prepare for Smart Brains Engineers And Technologist 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 Smart Brains Engineers And Technologist. The most common topics and skills that interviewers at Smart Brains Engineers And Technologist expect are Telesales, B2B Sales, Microsoft Dynamics, OOPS and Salesforce.

Tell us how to improve this page.

Smart Brains Engineers And Technologist Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Cyient Interview Questions
3.7
 • 282 Interviews
View all

Smart Brains Engineers And Technologist Reviews and Ratings

based on 57 reviews

3.3/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.1

Salary

3.1

Job security

3.2

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 57 Reviews and Ratings
HR Executive
8 salaries
unlock blur

₹1.8 L/yr - ₹2.5 L/yr

Accountant
7 salaries
unlock blur

₹2.8 L/yr - ₹3.6 L/yr

Graphic Designer
5 salaries
unlock blur

₹2.1 L/yr - ₹2.7 L/yr

Network Analyst
5 salaries
unlock blur

₹2.2 L/yr - ₹2.7 L/yr

Training Manager
5 salaries
unlock blur

₹1.5 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Smart Brains Engineers And Technologist with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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