Upload Button Icon Add office photos

Filter interviews by

SBI Kiosk Banking Front Office Executive Interview Questions and Answers

Updated 26 Jul 2022

SBI Kiosk Banking Front Office Executive 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 - Aptitude Test 

Customer handling and satisfaction

Round 3 - Case Study 

Banking related and bank customer related

Interview Preparation Tips

Interview preparation tips for other job seekers - be careful and prompt along with must be in discipline about the job and organisation.

Interview questions from similar companies

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

I applied via campus placement at Pranveer Singh Institute of Technology, Kanpur and was interviewed in Jul 2024. There were 8 interview rounds.

Round 1 - Assignment 

**1st Round: Online Assessment**
The first elimination round consisted of an online assessment focused on HTML, CSS, and JavaScript. The questions ranged from basic to advanced, with a significant emphasis on JavaScript concepts like promises and async operations. This round included negative marking, so accuracy was key.

Round 2 - Coding Test 

**2nd Round: DSA Online Test**
The second elimination round tested Data Structures and Algorithms (DSA). It involved two compulsory problems: one focused on string manipulation and the other on array manipulation, both requiring solutions with O(1) space complexity.

Round 3 - Aptitude Test 

**3rd Round: Personality Test**
This non-elimination round assessed grammar and communication skills. It included:
- Fill-in-the-blank questions focused on subject-verb agreement.
- Sentence repetition tasks where we had to listen and repeat the given sentences.
- Audio-based tasks requiring us to repeat sentences after listening to them.

Round 4 - Assignment 

**4th Round: Home Assignment**
In this elimination round, we were tasked with cloning a webpage using only HTML, CSS, and JavaScript. The goal was to create a pixel-perfect design without the use of frameworks or libraries like Bootstrap.

Candidates who cleared this round invited to the JTG campus for further process.

Round 5 - Coding Test 

**5th Round: DSA **
This elimination round began with solving DSA problems focused on string and array manipulation.

Round 6 - Assignment 

**6th Round: Live Coding Assignment**
Round 5th was followed by a live coding task where we had to build a to-do application using only HTML, CSS, and JavaScript. The application needed to leverage local storage for data persistence. The technical interview in this round was based on the live coding task.

Round 7 - One-on-one 

(1 Question)

  • Q1. **6th and 7th Rounds: Technical Interviews** The next two elimination rounds were back-to-back technical interviews. They covered advanced concepts in HTML, CSS, and JavaScript, along with DSA problems.
Round 8 - HR 

(1 Question)

  • Q1. **9th Round: HR Interview** The final round was an HR interview, where the focus was on personality traits, career aspirations, and alignment with the company’s values. **Verdict: Selected**

Interview Preparation Tips

Interview preparation tips for other job seekers - **Outcome**
From our college, only two students were selected. We joined the company in September 2024 as Frontend Developer Interns, with a Pre-Placement Offer (PPO) of 12 LPA.

**Exciting News!**
I am also starting a YouTube channel where I will teach each concept in detail. The content will focus on helping candidates prepare for developer interviews by covering topics like HTML, CSS, JavaScript, and DSA. Do subscribe to my channel to stay updated and take your preparation to the next level!

Channel link - -----/@prathamsingh191?si=gE5UHeJcrq5mBDUI

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

(1 Question)

  • Q1. What is the react
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Krishna Institute of Engineering and Technology, Ghaziabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Medium level questions asked

Round 2 - Coding Test 

Simple easy to medium 2 questions asked of string and array

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. JavaScript like fetch axios and others
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Questions for dbms,os

Round 2 - HR 

(2 Questions)

  • Q1. How was your day today
  • Ans. 

    My day was productive and busy, with a lot of coding and problem-solving.

    • Completed a new feature for the website

    • Fixed a bug in the existing codebase

    • Attended a team meeting to discuss project updates

  • Answered by AI
  • Q2. Where do you see in 5 yrs
  • Ans. 

    In 5 years, I see myself as a senior front end developer leading a team and working on cutting-edge technologies.

    • Leading a team of developers on various projects

    • Working on advanced technologies like AR/VR, AI, and machine learning

    • Contributing to open source projects and attending tech conferences

    • Continuing to learn and grow in the field of front end development

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Pointer i c++ and css
Round 2 - Coding Test 

Dsa round with medium tto hard level questions

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

They have their own platform

Round 2 - Assignment 

Take home assignment

Round 3 - Technical 

(1 Question)

  • Q1. Live coding round of CRUD based small app.
Round 4 - Technical 

(1 Question)

  • Q1. More on HTML, CSS, JS
Round 5 - Technical 

(1 Question)

  • Q1. Promises, async/await, settimeout etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep your core knowledge strong
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

I was asked 60 question with various snppits or problems to be solved within a time frame of 1 hour

Round 2 - Coding Test 

3 dsa 2 medium 1 hard

Round 3 - Assignment 

To create a project in which i was asked to simply create a exact same page as given in design

Interview Preparation Tips

Interview preparation tips for other job seekers - Not good enough company
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Feb 2024.

Round 1 - Aptitude Test 

It was quite basic including the basic understanding of front-end and the aptitude

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Last Stone Weight

    We have a collection of 'N' stones, each stone has a positive integer weight.

    On each turn, we choose the two heaviest stones and smash them together. Suppose the stones have w...

  • Ans. 

    This question is about finding the weight of the last stone after repeatedly smashing the two heaviest stones together.

    • Sort the array of stone weights in descending order.

    • Repeatedly smash the two heaviest stones until there is at most 1 stone left.

    • If there is 1 stone left, return its weight. Otherwise, return 0.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. System Design Question

    Design a given signin page using HTML and CSS only.

  • Ans. 

    A signin page designed using HTML and CSS only.

    • Create a form element to contain the signin inputs

    • Use appropriate input types for email and password fields

    • Apply CSS styles to align and format the signin page

    • Add a submit button to trigger the signin action

  • Answered by AI
Round 3 - Assignment 

(1 Question)

Round duration - 7 days
Round difficulty - Medium

  • Q1. System Design Question

    Design and develop and todo list type of application using localstorage.

  • Ans. 

    A todo list application using localstorage.

    • Use HTML, CSS, and JavaScript to create the user interface.

    • Use the localstorage API to store and retrieve todo items.

    • Implement features like adding, editing, and deleting todo items.

    • Display the list of todo items and their status.

    • Allow users to mark todo items as completed or incomplete.

  • Answered by AI
Round 4 - Video Call 

Round duration - 120 Minutes
Round difficulty - Easy

Round 5 - Video Call 

(9 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Questions related to react and high level javascript?

  • Q1. JavaScript Question

    What is hoisting in javascript?

  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope.

    • Hoisting applies to both variable and function declarations.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. JavaScript Question

    What is memoization in js?

  • Ans. 

    Memoization is a technique in JavaScript to cache the results of expensive function calls for future use.

    • Memoization improves performance by avoiding redundant calculations

    • It is commonly used in recursive functions or functions with expensive computations

    • The cached results are stored in a data structure like an object or a map

    • Memoization can be implemented manually or using libraries like Lodash or Memoizee

  • Answered by AI
  • Q3. JavaScript Question

    What is IIFE?

  • Ans. 

    IIFE stands for Immediately Invoked Function Expression. It is a JavaScript function that is executed as soon as it is defined.

    • IIFE is a way to create a function expression and immediately invoke it.

    • It helps in creating a private scope for variables and functions.

    • It is commonly used to avoid polluting the global namespace.

    • IIFE can be written using different syntaxes like using parentheses, function declaration, or arro

  • Answered by AI
  • Q4. JavaScript Question

    What are promises in javascript?

  • Ans. 

    Promises in JavaScript are objects that represent the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations such as fetching data from a server or reading a file.

    • They simplify the process of writing asynchronous code by providing a more structured approach.

    • Promises have three states: pending, fulfilled, or rejected.

    • They can be chained together using methods like...

  • Answered by AI
  • Q5. JavaScript Question

    What is Temporal Dead Zone?

  • Ans. 

    Temporal Dead Zone is a behavior in JavaScript where variables are not accessible before they are declared.

    • Temporal Dead Zone occurs when accessing variables before they are declared

    • Variables in the Temporal Dead Zone cannot be accessed or assigned

    • The Temporal Dead Zone is a result of JavaScript's hoisting behavior

    • Example: accessing a variable before it is declared will throw a ReferenceError

  • Answered by AI
  • Q6. JavaScript Question

    What are arrow functions?

  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions have a shorter syntax compared to regular functions.

    • They do not have their own 'this' value.

    • They do not have the 'arguments' object.

    • They cannot be used as constructors with the 'new' keyword.

    • They are commonly used in functional programming and with array methods like 'map' and 'filter'.

  • Answered by AI
  • Q7. JavaScript Question

    What is JSX?

  • Ans. 

    JSX is a syntax extension for JavaScript that allows you to write HTML-like code in your JavaScript files.

    • JSX stands for JavaScript XML

    • It is commonly used with React to define the structure and appearance of components

    • JSX elements are transpiled into regular JavaScript function calls

    • It allows you to write HTML-like code with JavaScript expressions embedded within curly braces

    • Example:

      Hello, {name}!

  • Answered by AI
  • Q8. JavaScript Question

    What are higher order functions?

  • Ans. 

    Higher order functions are functions that can take other functions as arguments or return functions as their results.

    • Higher order functions can be used to create more flexible and reusable code.

    • They enable functional programming paradigms.

    • Examples of higher order functions include map, filter, and reduce in JavaScript.

  • Answered by AI
  • Q9. JavaScript Question

    What is virtual DOM?

  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM that allows efficient updates and rendering in JavaScript frameworks.

    • Virtual DOM is a concept used in JavaScript frameworks like React.

    • It is a lightweight copy of the actual DOM tree.

    • Changes made to the virtual DOM are compared with the actual DOM to determine the minimal updates needed.

    • This helps in efficient rendering and improves performance.

    • Virtual DOM allows deve...

  • Answered by AI
Round 6 - HR 

Round duration - 35 Minutes
Round difficulty - Easy

Happend around 08:30 pm

Interview Preparation Tips

Eligibility criteriaNo criteria.Josh Technology Group interview preparation:Topics to prepare for the interview - HTML, CSS, Javascript, React, C/C++, DSATime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Internet fundamentals - HTTP, HTTPs, CDNs, DNS etc.
Tip 2 : Web Storage - localstorage and session storage. Know how the cookies work and what does HttpOnly, same-site, secure mean in the context of cookies.
Tip 3 : HTML - Get yourself familiar with semantic HTML elements, different types of attribute, HTML selectors and their precedence etc.
Tip 4 : Learn advance level Javascript.
Tip 5 : It will be better to have experience in any frontend frameworks/libraries, for example React.js.
Tip 6 : You should be able to solve easy level DSA(array and linked-list) and problem solving related questions.

Application resume tips for other job seekers

Tip 1 : Have some development projects on resume.
Tip 2 : Highlight your frontend development skills in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

SBI Kiosk Banking Interview FAQs

How many rounds are there in SBI Kiosk Banking Front Office Executive interview?
SBI Kiosk Banking interview process usually has 3 rounds. The most common rounds in the SBI Kiosk Banking interview process are Resume Shortlist, Aptitude Test and Case Study.

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
IndusInd Bank Interview Questions
3.6
 • 588 Interviews
Yes Bank Interview Questions
3.8
 • 411 Interviews
GAO Tek Interview Questions
4.5
 • 132 Interviews
View all

SBI Kiosk Banking Front Office Executive Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Computer Operator
8 salaries
unlock blur

₹1.2 L/yr - ₹2.5 L/yr

Customer Service Executive
6 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Kiosk Operator
5 salaries
unlock blur

₹0.6 L/yr - ₹3.5 L/yr

Banking Executive
5 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Accountant
5 salaries
unlock blur

₹1 L/yr - ₹2.4 L/yr

Explore more salaries
Compare SBI Kiosk Banking with

ICICI Bank

4.0
Compare

HDFC Bank

3.9
Compare

Axis Bank

3.8
Compare

Kotak Mahindra Bank

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