Practice Test Geeks home

Epic Skills Assessment Fictional Programming Language Logic Questions and Answers

A developer is writing an EpicScript function to validate user IDs.
The user ID must start with 'E' and end with '90'.

Given the code snippet below, what will be the final value of the 'isValid' variable?

let userId = "E-SYS-ADMIN-90";

let pattern = "E*90";

let isValid = userId ~= pattern;

Select your answer