0% found this document useful (0 votes)
45 views

FrontEnd React Angular Question Bank

The document provides a list of categories and subtopics related to JavaScript, problem solving/data structures, and framework-based questions on Vue JS. It also includes sample questions on topics like arrays, strings, API calls, scope, and more. Further questions cover removing elements from arrays, combining arrays, comparing string occurrences, AJAX, and differences between programming concepts like let, var, const, and more. Links are provided for additional reference material on these topics.
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views

FrontEnd React Angular Question Bank

The document provides a list of categories and subtopics related to JavaScript, problem solving/data structures, and framework-based questions on Vue JS. It also includes sample questions on topics like arrays, strings, API calls, scope, and more. Further questions cover removing elements from arrays, combining arrays, comparing string occurrences, AJAX, and differences between programming concepts like let, var, const, and more. Links are provided for additional reference material on these topics.
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 9

Sl.

No Category Subtopics
1 JavaScript : JS

2 Problem Solving/Data Structure: PS/DS Array

Array
Array

3 FrameworkBased Questions : FW Vue JS

JavaScript : JS

Css

DOM

React
JavaScript : JS Analyse the output

Browser

JavaScript : JS String

JavaScript : JS String

JavaScript : JS Api Call


Questions

What is why - uses of fat-arrow function


Difference between callback and Promises
when to use callback and promises
difference between let, var,const
Global objects - Local scope
Difference between Splice and slice

Let a = [51,10,5,17,.....] - remove all elements that is divisible by and modify the original array
let a = [6,2,8,1,2]; let b = [4,2,1,3,9]; Combine 2 arrays Remove the duplicates at last sort by desc SO my
final array should look like [9,8,6,4,3,2,1];
let a = [1,6,8,7,22,55,78,9,5]; remove all array elements which are even.

How is Vue different from other frameworks


Comparison between Vue, React and Angular
What is Vuex store
What actions are performed on Vuex/ Store
What are State, actions, Mutations, getters

Different types of methods in array.


Difference LocalStorage and Session Storage ? How to set data in localStorage?
Difference b/w Object dot notation and braket notation
What is ajax?
Difference b/W deep copy and shallow copy.
Difference b/w package dependencies and normal dependencies.

Different types of Position values? difference b/w Relative and Absloute

What is Event delegation? Types of event delegation.

What is redux? Architecture of redux? Differnce b/w redux and component states ( useState )
About react router.
How of virtual DOM is used in react?
let i;
for (i = 0; i < 3; i++) {
const log = () => { console.log(i); }
setTimeout(log, 100);
}

Lighthouse tool usage

const str1 = "aaabbcd"; count the number of occurance of character in given string. O/p : {
a: 3,
b: 2,
c: 1,
d: 1
}

const str1 = "aaabbcd";


const str2= "daacbab";
compare two string and their occurance.

Difference b/w PUT and POST methods?


Link/Reference:

https://tinyurl.com/y2z3qgcd
https://tinyurl.com/yxh7e668
https://tinyurl.com/yxh7e668
https://www.freecodecamp.org/news/var-let-and-const-whats-the-difference/

https://tinyurl.com/yyehepvk

https://vuejs.org/v2/guide/comparison.html
https://vuejs.org/v2/guide/comparison.html
https://vuex.vuejs.org/#what-is-a-state-management-pattern
https://vuex.vuejs.org/guide/state.html
CustomerName/Mirafra Author Descrptive Questions
Category
(JS/React JS/Angular,VueJS, Status
PS/DS, FW) (New/Reviewed) Reviewed By
Complexity(High/Medium/Low)
S.No Question
1 Difference between let , var ,const
2 Difference between shallow copy and deep copy
3 update custom key value in array of objects
4 What is closures
5 what is Promises, async and await
6 What is recursive functions
7 what is redux
8 difference between vue and react js
9 What are react hooks
10 block scope
11 What is constructor?

You might also like