GUI Quiz 1

A modern digital interface with regex patterns overlaying a data visualization background, showcasing elements like code snippets, and GUI components.

GUI and Regex Knowledge Quiz

Test your understanding of GUI principles and regex concepts with our comprehensive quiz! This targeted assessment covers a variety of topics relevant to daily operations and data management.

  • 10 challenging questions
  • Multiple choice and checkbox formats
  • Immediate feedback on your answers
10 Questions2 MinutesCreated by ParsingTree528
1. We have three kinds of failures that we see on a daily basis.
 
Which of the following is the correct 'failure logic'?
 
In other words, which failure has to occur first before the other failures can even happen?
Validation Failure    ->    Normalizing Failure    ->    Parsing Failure or 'Failed'
Normalizing Failure    ->    Parsing Failure or 'Failed'    ->    Validation Failure
Parsing Failure / 'Failed'    ->    Normalizing Failure    ->    Validation Failure
I'm not sure.
2. What can cause a 'Normalizing Failed' status?
The statement End Date wasn't parsed.
A total row with an extra $100 was picked up.
We divided by '0' on accident somewhere in the statement.
I'm not sure.
3. What will the output be in the 'Group Mask'?
 
"Rule #1 of GUI is that parsers are never done."
 
Extract Value Regex:
(?<a>\d+)
 
Group Mask:
<a>
GUI
1
A
I'm not sure.
4. What does the '|' symbol represent in a regex expression?
 
Example:

(?<num>\d+)|(?<num>\d+ \d+)
(?<num>\d+) or (?<num>\d+ \d+)
(?<num>\d+) and (?<num>\d+ \d+)
(?\d+) and/or (?\d+ \d+)
I'm not sure.
5. For the following JavaScript snippet, what are we trying to achieve with "value"?
 
const value = propertyContext.ExtractedValue.Value;
 
if (value.includes('DIV')){
 
return 'Dividend';
 
}
 
else {
 
return null;
 
}
We want to divide the extracted value by 'Dividend'.
We want to change the extraction from "Dividend" to "DIV".
We want to change the extraction from "DIV" to "Dividend".
I'm not sure.
6. What will the output of this JavaScript snippet be for this table?
 
Description Quantity Market Value
ALPHABET INC TICKER: GOOGL 50 -500
 
 
const marketValue = GetColumn(propertyContext.CurrentTableRow, 'Market Value');
 
const regexTest = /-(?<num>\d+)/gmi
 
const match = regexTest.exec(GetColumnValue(marketValue));
 
 
if (marketValue.includes('-')){
 
return match[1];
 
}
 
else {
 
return '-' + marketValue;
 
}
 
 
-500
500
500-
I'm not sure.
7. What has to happen before we send a ticket to 'Analytics Review' as part of our Ops DOD?
Verify there are no blank activity types in transactions.
Verify all securities must be mapped.
Update the ticket for CX or Sales team with why the statement failed and how it was fixed.
8. As of last week, statements that have activity types that aren't a part of our activity types will fail normalizing.
True
False
I'm not sure.
9. Let's say we had a table like this:
 
 
EQUITIES
Description
Quantity Market Value Price
GOOGLE 10 $50 $5
APPLE 10 $50 $5
 
 
And we want to set the mapping to 'EQUITIES', but 'EQUITIES' is also found in the summary tables at the top of the statement.
 
What is another header mapping we could try to map this?
 
 
"EQUITIES Description Quantity"
"EQUITIES"
"Description Quantity Market Value Price Unrealized"
I'm not sure.
10. If:
  • A client statement was submitted in the morning at 9:00am
  • I've been stuck on a problem I can't solve for 1-2 hours
I should email the devs and then try to solve the problem after I email them if nothing else is outstanding.
True
False
{"name":"GUI Quiz 1", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Test your understanding of GUI principles and regex concepts with our comprehensive quiz! This targeted assessment covers a variety of topics relevant to daily operations and data management. 10 challenging questions Multiple choice and checkbox formats Immediate feedback on your answers","img":"https:/images/course8.png"}
Powered by: Quiz Maker