Wolters
Kluwers(23 Jan2020)
1. What is
OOPS
3. What is dependency
injection
4. What are
other ways than constrictor level dependency injection
5. Difference Var
and let keyword
For(int I =0; i< 5 ; i++){
Console.log(i); => 1 to 4
}
Console.log(i);=> 5
6. IQueryable
and IEnumerator diff
Var k ={1,2,3,4};
Var j = k.Where(x=> x > 3);
k.add(5);
k.add(6);
what will be value of K => 4,5,6
why need to write ToList();
7. Is JavaScript asynchronous or single line
programming language
8. What are
filters
9. Which filter
are you using in project
10.
How authentication filter works