Upload Button Icon Add office photos

Filter interviews by

Coforge Smartserve Front Office Incharge Interview Questions and Answers

Updated 30 Mar 2022

Coforge Smartserve Front Office Incharge Interview Experiences

1 interview found

I applied via Recruitment Consulltant

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 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer questions confidently .

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(7 Questions)

  • Q1. Css flexbox and grid
  • Q2. Pagination on scroll
  • Ans. 

    Implementing pagination on scroll allows for loading more content as the user reaches the bottom of the page.

    • Use a scroll event listener to detect when the user has reached the bottom of the page

    • Make an API call to fetch more data when the bottom is reached

    • Append the new data to the existing content on the page

  • Answered by AI
  • Q3. Immediately invoked fn and anonymous fn
  • Ans. 

    Immediately invoked function expressions (IIFE) are functions that are executed immediately after they are created.

    • IIFE is defined and invoked at the same time using parentheses at the end of the function declaration.

    • Anonymous functions do not have a name and can be used as IIFE by wrapping them in parentheses.

    • IIFE is commonly used to create a private scope for variables and functions.

  • Answered by AI
  • Q4. What are closures
  • Ans. 

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

    • Closures allow functions to access variables from their parent function even after the parent function has returned

    • They help in creating private variables and functions in JavaScript

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
  • Q5. What is promise? explain
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() method to handle success and failure callbacks.

    • Example: Fetch API returns a promise when making an HTTP request.

  • Answered by AI
  • Q6. What is lazy loading -explain
  • Ans. 

    Lazy loading is a technique used in web development to defer loading non-essential resources until they are needed.

    • Lazy loading helps improve page load times by only loading resources when they are required.

    • It is commonly used for images, videos, and other media files on a webpage.

    • Lazy loading can be implemented using JavaScript libraries like Intersection Observer or by using native browser features like loading='lazy

  • Answered by AI
  • Q7. Media query and css selectors

Skills evaluated in this interview

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

Coding a frontend UI from provided image. And creating a fucntional star rating system

Round 2 - Technical 

(2 Questions)

  • Q1. Designing a Component API in React using Typescript.
  • Ans. 

    Designing a Component API in React using Typescript involves defining props, state, and methods for the component.

    • Define the props interface to specify the expected input data for the component

    • Use typescript types to ensure type safety and prevent runtime errors

    • Define the state interface to manage the internal state of the component

    • Implement methods to handle user interactions and component logic

    • Document the component

  • Answered by AI
  • Q2. Create a function that can clear all the timer ids at once.
  • Ans. 

    Function to clear all timer ids at once

    • Create an array to store all timer ids

    • Iterate through the array and clear each timer id using clearTimeout() function

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

They asked JS basics and Promises, hoisting

Round 2 - Coding Test 

Just asked about my work culture, as I worked in startup and product based company, they except me work in Agile and how u will adopt to MNC / service based company culture

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Merge sort time complexity less
  • Ans. 

    Merge sort has a time complexity of O(n log n) in the worst case scenario.

    • Merge sort divides the array into two halves, sorts them recursively, and then merges them back together.

    • The time complexity of merge sort is O(n log n) in the worst case scenario.

    • For example, sorting an array of 8 elements would take 3 recursive calls to merge sort.

  • Answered by AI
  • Q2. Palindrome with react js to show on UI
  • Ans. 

    Create a palindrome checker using React JS to display on the UI

    • Create a input field for user to enter a string

    • Use state to store the input string

    • Create a function to check if the input string is a palindrome

    • Display the result on the UI

  • Answered by AI
Round 2 - Coding Test 

Javascript question on promise, callbacks, hosting

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a hacker coding test mostly javascript questions

Round 2 - Technical 

(3 Questions)

  • Q1. React advance concept
  • Q2. Context api how to use that
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props manually.

    • Create a context using createContext() method

    • Use the Provider component to wrap the components that need access to the context

    • Access the context data using the useContext() hook within the consuming components

  • Answered by AI
  • Q3. Higher order component
Round 3 - Behavioral 

(3 Questions)

  • Q1. Mainly introduction, how do you manage a project
  • Q2. How to debug a code
  • Ans. 

    Debugging a code involves identifying and fixing errors in the code to ensure it runs correctly.

    • Use console.log() statements to print out values and check for errors

    • Utilize browser developer tools to inspect elements and debug JavaScript

    • Step through the code using breakpoints to identify the source of the issue

    • Review error messages and stack traces to pinpoint the problem

    • Consider using tools like linters and debuggers

  • Answered by AI
  • Q3. How to get employee details using group by
  • Ans. 

    Employee details can be retrieved using group by clause in SQL.

    • Use GROUP BY clause in SQL to group employee details based on a specific column

    • Aggregate functions like COUNT, SUM, AVG can be used with GROUP BY to get summarized employee details

    • Example: SELECT department, COUNT(*) as total_employees FROM employees GROUP BY department

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Currying
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in creating reusable functions and partial application.

    • It allows for easier composition of functions.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return 5.

  • Answered by AI
  • Q2. What are closures
  • Ans. 

    Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They help in maintaining state in functional programming.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

    • Example...

  • Answered by AI
  • Q3. What hooks you are familiar with

Interview Preparation Tips

Topics to prepare for Infosys BPM React Js Frontend Developer interview:
  • React.Js
  • Java script
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

First round was with BarRaiser, they first gave the question related to DSA related to strings. Then questions related to HTML/CSS in same round. Then questions related to react concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just study about easy to medium DSA and study about react concepts thoroughly and also clear your basics related HTML/CSS
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General questions of mathematics

Round 2 - Coding Test 

2 coding questions, 1 from arrays and 2nd from lists

Round 3 - HR 

(1 Question)

  • Q1. General questions about pay scale and company policies
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. React js basic questions

Coforge Smartserve Interview FAQs

How many rounds are there in Coforge Smartserve Front Office Incharge interview?
Coforge Smartserve interview process usually has 2 rounds. The most common rounds in the Coforge Smartserve interview process are Resume Shortlist and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
Genpact Interview Questions
3.9
 • 2.9k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
View all
Senior Executive
33 salaries
unlock blur

₹2.2 L/yr - ₹5.7 L/yr

Executive
13 salaries
unlock blur

₹1.8 L/yr - ₹2.8 L/yr

Finance Executive
7 salaries
unlock blur

₹2.2 L/yr - ₹2.5 L/yr

Analyst
4 salaries
unlock blur

₹1.9 L/yr - ₹3 L/yr

Test Engineer
4 salaries
unlock blur

₹3.3 L/yr - ₹5 L/yr

Explore more salaries
Compare Coforge Smartserve with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview