Upload Button Icon Add office photos

Filter interviews by

Seremban Engineering Berhad, Seremban, Malaysia Front end Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. 1. Basic html schemantics
  • Q2. 2. Pure JS
  • Q3. 3. Angular advance

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard Interview process

I applied via Recruitment Consulltant and was interviewed in Jan 2022. 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 - Aptitude Test 
Round 3 - Coding Test 
Round 4 - Assignment 
Round 5 - HR 

(9 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
  • Q9. Tell me about your questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes i can intresting in this company

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Javascript ES6 HTML and Reactjs

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Javascript more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
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 - Coding Test 

What is HTTPS and how it work in backend creation

Round 3 - HR 

(2 Questions)

  • Q1. Tell me something about your past job
  • Ans. What is MVC in Website operation
  • Answered Anonymously
  • Q2. Why do you want to join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be hesitate infront of interviewer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Jan 2022. There were 3 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 - Technical 

(3 Questions)

  • Q1. What is Event Loop ? How it works?
  • Ans. 

    Event Loop is a mechanism in JavaScript that manages the execution of code and handles asynchronous operations.

    • Event Loop continuously checks the call stack and the message queue.

    • If the call stack is empty, it takes the first message from the queue and pushes it onto the call stack.

    • If the message is a callback function, it is executed and removed from the call stack.

    • If the message is not a callback function, it is pass...

  • Answered by AI
  • Q2. Make a set of 6 boxes Responsive in CSS
  • Ans. 

    Use CSS to make a set of 6 boxes responsive

    • Use percentage or viewport units for width and height

    • Use media queries to adjust styles for different screen sizes

    • Consider using flexbox or grid for layout

    • Avoid using fixed pixel values

    • Test on different devices and browsers

    • Use CSS frameworks like Bootstrap or Foundation for easier implementation

  • Answered by AI
  • Q3. Hoisting & Closures Questions
Round 3 - HR 

(1 Question)

  • Q1. What's your Salary expectations ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Dev. Aditya's YouTube videos are enough to crack these interviews

Skills evaluated in this interview

I applied via LinkedIn

Interview Questionnaire 

1 Question

  • Q1. Questions on basic html,css,javascript,angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Go specifically through the requirements mentioned in job profile before attending the interview to keep interviewer and us in the same page.

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 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 - Coding Test 

How revere the string without using reverse method

Round 3 - Coding Test 

Split duplication from the array

Round 4 - HR 

(2 Questions)

  • Q1. Salary negotiation, asked about my previous employer
  • Q2. Speak bold at time of salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared, have a hand experience in your technical

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

Interview Questionnaire 

4 Questions

  • Q1. Remove duplicate elements from an Array
  • Ans. 

    Remove duplicate elements from an Array

    • Use the Set object to remove duplicate elements

    • Convert the Set back to an array using the spread operator

    • If the array contains objects, use a custom comparison function

  • Answered by AI
  • Q2. How can you only accept jpg and png files using HTML5.
  • Ans. 

    Use the accept attribute in the input tag to only allow jpg and png files.

    • Add accept attribute to input tag with 'image/jpeg, image/png' value

    • This will restrict file selection to only jpg and png files

  • Answered by AI
  • Q3. How to center align a div in just one line in css.
  • Ans. 

    Use flexbox to center align a div in just one line in CSS.

    • Set the parent container's display property to flex.

    • Use the justify-content property with the value 'center' to horizontally center the div.

    • Use the align-items property with the value 'center' to vertically center the div.

  • Answered by AI
  • Q4. How to redirect to login page through React Router if the user has not logged in and trying to go to another page through URL.
  • Ans. 

    Use React Router's Redirect component to redirect to login page if user is not logged in.

    • Create a PrivateRoute component that checks if user is logged in

    • If user is not logged in, redirect to login page using Redirect component

    • Wrap the routes that require authentication with PrivateRoute component

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't really worry about success or failure. It is all about how much you learn. I have failed in at least 15-20 interviews (tbh, I stopped counting at a point, because it doesn't matter) over a span of one year before landing my dream job. I started from not knowing anything about React JS to be fluent enough for interviews. Face as many interviews you can. After the interview, note down all the questions you were asked and study on those topics. For react I divided my topics in three category. REACT(Virtual DOM, class vs functions, lifecycle methods and hooks, work flow on a button click, ROUTER, Context, HOC), REDUX(create store, apply middleware, combine reducers, pure functions, redux saga/thunk, also folder structure for redux ), REACT-REDUX(connect(), mapstatetoprops, mapdispatchtoprops, useselector and usedispatch). These are a few areas I focused on, and they all are VERY important. Study, Give Interviews, Learn, Repeat.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

1hr

Round 2 - Technical 

(1 Question)

  • Q1. About the ReactJS, Javascrirp,HTML5,CSS3 Questions
Round 3 - Coding Test 
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare well for yourself be strong and stick on your words in interview.

Tell us how to improve this page.

Compare Seremban Engineering Berhad, Seremban, Malaysia with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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