Upload Button Icon Add office photos
Engaged Employer

i

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

BYJU'S Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BYJU'S Technical Support Engineer Interview Questions and Answers

Updated 4 Oct 2024

BYJU'S Technical Support Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Sql constraint , primary key, unique and foreign key

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Interview questions from similar companies

I appeared for an interview in Jun 2020.

Interview Questionnaire 

2 Questions

  • Q1. How mic and camera work?
  • Ans. 

    Microphone and camera are input devices that capture audio and video respectively.

    • Microphone converts sound waves into electrical signals that can be processed by a computer.

    • Camera captures light and converts it into digital signals that can be processed by a computer.

    • Both devices require drivers to communicate with the computer's operating system.

    • Microphone and camera can be integrated into laptops or connected extern

  • Answered by AI
  • Q2. How you will support or help students or teachers if facing technical issues.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident enough and have basic computer knowledge of settings, cookies, websites,url etc.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What are remote access software?
  • Ans. 

    Remote access software allows users to access and control a computer or device from a remote location.

    • Remote access software enables users to access and control a computer or device from a remote location

    • It allows for remote troubleshooting, maintenance, and support

    • Examples include TeamViewer, LogMeIn, and Remote Desktop Connection

    • Security measures such as two-factor authentication and encryption are often used to prot

  • Answered by AI
  • Q2. How troubleshooting of devices can be done?
  • Ans. 

    Troubleshooting of devices involves identifying and resolving technical issues.

    • Gather information about the issue from the user

    • Check for error messages or codes

    • Perform basic checks like restarting the device

    • Use diagnostic tools to identify the problem

    • Resolve the issue by repairing or replacing faulty components

    • Test the device to ensure the issue is resolved

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Polyfills and Logical
  • Q2. List in react and the input box
  • Ans. 

    Answer on how to list in react and the input box

    • Use the map function to create a list in React

    • Use the state to store the input value

    • Use onChange event to update the state when the input value changes

    • Use onSubmit event to handle the form submission

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of JS and ReactJs for frontend interview, git, css, scss, html etc

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Normal Aptitute test with logical reasoning.

I appeared for an interview in Feb 2021.

Interview Questionnaire 

1 Question

  • Q1. Admin average question as well as with trigger event or aura component.

Interview Preparation Tips

Interview preparation tips for other job seekers - Average and got the offer... It nice company work environment is too good.....
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

1 hours aptitude test

Round 2 - Coding Test 

Questions on arrays and string

Round 3 - Technical 

(1 Question)

  • Q1. Questions on DSA
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Q1 difference between let and const
  • Ans. 

    let is mutable and can be reassigned, const is immutable and cannot be reassigned

    • let allows reassignment of values, const does not

    • const must be initialized with a value, let can be declared without a value

    • const is block-scoped, let is function-scoped

  • Answered by AI
  • Q2. Q2 what are closures?
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the parent function has finished executing.

    • Closures allow functions to maintain access to variables from their parent scope

    • They are created when a function is defined within another function

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
  • Q3. Q3. What is typeof null
  • Ans. 

    typeof null returns 'object' in JavaScript.

    • typeof null is 'object' in JavaScript

    • This is a historical bug in JavaScript that has not been fixed for backward compatibility

    • Example: console.log(typeof null) will output 'object'

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Q1. Find palindrome strings in an array of strings.
  • Ans. 

    Finding palindrome strings in an array of strings.

    • Iterate through each string in the array.

    • For each string, check if it is equal to its reverse to determine if it is a palindrome.

    • Store palindrome strings in a separate array or print them out.

  • Answered by AI
  • Q2. Q2. Explain debouncing with example.
  • Ans. 

    Debouncing is a technique used to limit the rate at which a function is called.

    • Debouncing is used to prevent multiple rapid calls to a function, typically in response to user input.

    • It involves setting a delay before allowing the function to be called again.

    • Example: Debouncing a search input field to only trigger the search function after the user has stopped typing for a certain period.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For frontend round, you should know most frequently asked Javascript questions. One e.g. can be debouncing. You should also know basic coding questions like find palindrome.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. What is react, diff between react and angular, deep copy shallow copy, hoisting, diff between props and state
  • Ans. 

    React is a JavaScript library for building user interfaces. It is different from Angular in various ways.

    • React is a library while Angular is a framework

    • React uses virtual DOM while Angular uses real DOM

    • React is more flexible and easier to learn than Angular

    • Deep copy creates a new object with the same values while shallow copy creates a new reference to the same object

    • Hoisting is a JavaScript mechanism where variables a...

  • Answered by AI
  • Q2. Implement custom hooks and array flat method
  • Ans. 

    Implement custom hooks and array flat method

    • Custom hooks are reusable functions that allow you to extract component logic into reusable functions

    • Array flat method is used to flatten an array of nested arrays into a single array

    • To implement custom hooks, create a function that uses the useState and useEffect hooks

    • To implement array flat method, use the reduce method to flatten the array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for basic interview question from online site and practice the code challenges

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Check if string is palindrome
  • Ans. 

    Check if a string is the same forwards and backwards

    • Iterate through the string from both ends and compare characters

    • Use built-in functions like reverse() to check for palindrome

    • Ignore spaces and punctuation when checking for palindrome

  • Answered by AI

Skills evaluated in this interview

BYJU'S Interview FAQs

How many rounds are there in BYJU'S Technical Support Engineer interview?
BYJU'S interview process usually has 1 rounds. The most common rounds in the BYJU'S interview process are Technical.
How to prepare for BYJU'S Technical Support Engineer 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 BYJU'S. The most common topics and skills that interviewers at BYJU'S expect are Technical Support.

Tell us how to improve this page.

BYJU'S Technical Support Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Planet Spark Interview Questions
3.7
 • 373 Interviews
Whitehat jr Interview Questions
3.4
 • 262 Interviews
Unacademy Interview Questions
3.0
 • 209 Interviews
Physicswallah Interview Questions
3.7
 • 209 Interviews
upGrad Interview Questions
3.6
 • 201 Interviews
NxtWave Interview Questions
3.8
 • 189 Interviews
Vedantu Interview Questions
3.3
 • 184 Interviews
Simplilearn Interview Questions
3.2
 • 107 Interviews
View all
BYJU'S Technical Support Engineer Salary
based on 16 salaries
₹2.5 L/yr - ₹8 L/yr
At par with the average Technical Support Engineer Salary in India
View more details

BYJU'S Technical Support Engineer Reviews and Ratings

based on 4 reviews

2.5/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

3.9

Salary

1.1

Job security

1.1

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 4 Reviews and Ratings
Business Development Associate
11.3k salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Business Development Manager
3.9k salaries
unlock blur

₹6 L/yr - ₹16.7 L/yr

Business Development Executive
3.2k salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Senior Business Development Associate
2.9k salaries
unlock blur

₹4.2 L/yr - ₹11 L/yr

BDA
2.3k salaries
unlock blur

₹1 L/yr - ₹10 L/yr

Explore more salaries
Compare BYJU'S with

Unacademy

3.0
Compare

Vedantu

3.3
Compare

Toppr

3.4
Compare

Whitehat jr

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