Interview Questions and Answers - Order By Newest Q3391. Write a regex pattern that would validate if the word starts with a alphabet and then alphanumeric thereafter or few special characters (let's say . and _ ). Regex
Ans. ^[a-z,A-Z][a-z,A-Z,0-9,._]*$ Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3392. Write a regex pattern that would validate if the sting has only alphanumeric characters and no consecutive spaces. Regex
Ans. ^([a-z,A-Z,0-9]*[ ]+)*$ Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3393. What does pipe does on an observable ? RxJs
Ans. With pipe we specify the operator function to which this observable is passed for transforming the observable. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Angular   Observable Q3394. What do we specify within the pipe method ? RxJs
Ans. Operator function to which an observable is passed for transformation. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Angular Q3395. Why do we do transformation on the observable itself rather than doing it in the subscriber ? RxJs
Ans. Because that way we just need to do that transformation at one place and not within each subscriber. Single source of truth. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Angular   Observable  Suscriber Q3396. Can we specify multiple functions in the pipe ? What happens if we do it ? RxJs
Ans. Yes, We can specify multiple functions within pipe method. In that case first function get's called with the observable , the response if then passed to the second method and so on. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Angular Q3397. Can we specify multiple maps within pipe ? RxJs
Ans. Yes, it's same as passing multiple methods within pipe. Output of one map is passed to second and so on. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Angular Q3398. How can we sort an observable of a user array on user name ( name being one of the field of user ) ? RxJs
Ans. userArrayObservable.pipe(
map(userArray => {
return userArray.sort(comparator);
});
) Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Angular Q3399. What does the pipe method return in Rxjs ? RxJs
Ans. Pipe method is performed on an observable with the argument as a function. It returns the transformed observable with transformation being done by the specified method. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  memory management  heap memory expert Q3401. What resources are shared between threads ? Threads
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  memory management  heap memory   heap allocation expert Q3403. How do you merge changes from master to your feature branch ? Git
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3404. Do you ever merge changes from one feature branch to another ? Why ? SCM
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  SCM  Source Code Management  Configuration Control  Git  Svn Q3405. How can you delete a commit from a pull request ? Git
Ans. By rolling back that commit in the branch Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3406. What does this warning message for the unit test means
WARN: 'Spec has no expectations.' Angular
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Junit   Jasmine   Karma Q3407. Which language is Git written in ? and What are it's benefits ? Git
Ans. GIT is fast because it's written in C. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3408. What is staging in GIT ? Git
Ans. Before completing the commits, it can be formatted and reviewed in an intermediate area known as staging. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3409. What is conflict in GIT ? Git
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3410. What is GIT Stash ? Git
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3411. How can you trim all strings in an array ?
Ans. array.map(s => s.trim()) Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  java   angular   typescript   javascript Q3412. Is it safe to use session storage ? Javascript
Ans. Session storage can be accessed from XSS (Cross site Scripting) attacks but cookies (if set with "HttpOnly" and "Secure" flags) are more safer against these attacks. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  session storage  security Q3413. Can we specify that a particular variable may have either of the two data types in Typescript ? Typescript
Ans. let result: string | boolean; Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3414. How can we specify that a particular variable may have either of the two data types in Typescript ? Typescript
Ans. Yes Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3415. How can we specify that a particular variable may have either of the two data types in Typescript ? Typescript
Ans. let result: string | boolean; Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3416. What does the following declaration mean
let result: string | number; Typescript
Ans. It means we can assign either a string or a number to result. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3417. Will the following code give any error
let result: string | number;
result = true; Typescript
Ans. Yes, result can either be string or a number but not boolean. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3418. Will the following code give any error
let result: string | number;
result = 'true'; Typescript
Ans. No Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3419. Will the following code give any error
let result: string | number;
result = 'true'; Typescript
Ans. No Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q3420. Will the following code give any error
let result: boolean;
result = false | true; Typescript
Ans. Yes, | is a bitwise operator and not boolean or. Use || instead Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve