You are on page 1of 4

Angular :-

What is async and await ?


What are promises ?
What is the difference between promises and observables ?
Difference between angular and angular js ?
Features of es6 ?
What is the difference between OnInit and Constructor ?
What is Solar search ?
What is a decorator ?
What are life cycle hooks in angular ? explain in detail ?
What is forkLink ?
What is authguard in detail ?
D3.js in detail
Angular animation
Upgrades in angular (ivy major changes)
View encapsulation.
View encapsulation defines whether the template and styles defined within the
component can affect the whole application or vice versa.
how to add priority to global css in angular 8
Using view encapsulation
Interceptors in details
Can we inject a service to b and b to a ? give error
Cookie
Localstorage
Sessionstorage
Fragments
router preloading
how to test routing
git hooks
which tool is used to jest to test code coverage
how to create structural directive
changeDetection
detection strategy
what is the need of effects
Subject
behavioural object
Map
Ngrx entity framework
How to check which module is loaded in lazy loading
How to create component library
polyfiter.js, where code is transpiled, sudo classes and elements

Javascript :-

Hoisting in javascript
Implicit type coercion
Javascript predefined question
Javascript scope
closure in js
curry function in js
Prototyping
Javascript function
Pure functions
Scope of variables
Difference in rest and spread operator
Event loop
event bubbling
event capturing
prototype chain
Ways to create objects
// console.log(typeof(null))

// console.log('1',x)
// var x = 21;
// var girl = function () {
// console.log('2',x);
// var x = 20;
// };
// girl ();

// 1 undefiend
// 2 undefiend

// for (let i = 0; i < 5; i++) {


// setTimeout(function() { console.log(i); }, i * 1000 );
// }
// answer : 4 4 4 4 4
// for (var i = 0; i < 5; i++) {
// setTimeout(function() { console.log(i); }, i * 1000 );
// }
// answer: 4 4 4 4 4

// (function() {
// console.log(1);
// setTimeout(function(){console.log(2)}, 1000);
// setTimeout(function(){console.log(3)}, 0);
// console.log(4);
// })();

// 1,4,3,2

// (function(x) {
// return (function(y) {
// console.log(x);
// })(2)
// })(1);

// function foo1()
// {
// return {
// bar: "hello"
// };
// }

// function foo2()
// {
// return
// {
// bar: "hello"
// };
// }
// console.log('foo1',foo1())
// console.log('foo2',foo2())

// foo1 {bar: "hello"}


// foo2

// var a1 = [1,[2]] // [1,2]


// var a2 = [1,[2,3],[[4]]] // [1,2,3,4]
// var a2 = [1,[2,3],[[[4]]]] // [1,2,3,4]

// function flattenArray(arr){
// let newArr = [];
// for(let i =0; i < arr.length; i++){
// if(arr[i].length){
// for(let j =0; j < arr[i].length; j++){
// if(arr[i][j].length){
// for(let k =0; k < arr[i][j].length; k++){
// newArr.push(arr[i][j][k]);
// }
// }else {
// newArr.push(arr[i][j]);
// }
// }
// }else {
// newArr.push(arr[i]);
// }
// }
// return newArr;
// }

// console.log(flattenArray(a1))
// console.log(flattenArray(a2))

<div class="parent">
<div class="child"></div>
</div>

states of promises,
design patterns
page optimization
how https is different from http
cookies in detail

HTML :-

HTML5 links
Meta in html
Semantic html
tages why used
Seo
Service workers
Web workers
PWA
Web accessibility

CSS :-

CSS Properties and basic terms


How to align box into center of page
pseudo class in css
Scss
Css specificity
Mobile first approach
Mixins

Node JS

Why node js
Features of node Js
What is express js
What is Promises

Impetus Question:

HTML5 new syntax.


Center a div.
Object and Array in built function
Copy of array and object
Sorting of array.

Bundling,
Code

You might also like