Filter interviews by
I applied via Recruitment Consulltant
Customer handling and satisfaction
Banking related and bank customer related
Top trending discussions
posted on 12 Jan 2025
I applied via campus placement at Pranveer Singh Institute of Technology, Kanpur and was interviewed in Jul 2024. There were 8 interview rounds.
**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.
**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.
**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.
**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.
**5th Round: DSA **
This elimination round began with solving DSA problems focused on string and array manipulation.
**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.
posted on 12 Nov 2024
I applied via campus placement at Krishna Institute of Engineering and Technology, Ghaziabad and was interviewed in Oct 2024. There were 3 interview rounds.
Medium level questions asked
Simple easy to medium 2 questions asked of string and array
Questions for dbms,os
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
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
posted on 19 Dec 2024
Dsa round with medium tto hard level questions
posted on 22 May 2024
They have their own platform
Take home assignment
posted on 23 Aug 2024
I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.
I was asked 60 question with various snppits or problems to be solved within a time frame of 1 hour
3 dsa 2 medium 1 hard
To create a project in which i was asked to simply create a exact same page as given in design
posted on 24 Aug 2024
I was interviewed in Feb 2024.
It was quite basic including the basic understanding of front-end and the aptitude
posted on 26 May 2022
I was interviewed in May 2022.
Round duration - 60 Minutes
Round difficulty - Medium
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.
Round duration - 60 minutes
Round difficulty - Medium
Design a given signin page using HTML and CSS only.
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
Round duration - 7 days
Round difficulty - Medium
Design and develop and todo list type of application using localstorage.
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.
Round duration - 120 Minutes
Round difficulty - Easy
Round duration - 60 Minutes
Round difficulty - Easy
Questions related to react and high level javascript?
What is hoisting in javascript?
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.
What is memoization in js?
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
What is IIFE?
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
What are promises in javascript?
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...
What is Temporal Dead Zone?
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
What are arrow functions?
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'.
What is JSX?
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:
What are higher order functions?
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.
What is virtual DOM?
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...
Round duration - 35 Minutes
Round difficulty - Easy
Happend around 08:30 pm
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.
Tip 1 : Have some development projects on resume.
Tip 2 : Highlight your frontend development skills in your resume.
based on 1 review
Rating in categories
Computer Operator
8
salaries
| ₹1.2 L/yr - ₹2.5 L/yr |
Customer Service Executive
6
salaries
| ₹1 L/yr - ₹3 L/yr |
Kiosk Operator
5
salaries
| ₹0.6 L/yr - ₹3.5 L/yr |
Banking Executive
5
salaries
| ₹2 L/yr - ₹4 L/yr |
Accountant
5
salaries
| ₹1 L/yr - ₹2.4 L/yr |
ICICI Bank
HDFC Bank
Axis Bank
Kotak Mahindra Bank