Regular expression (Quiz 1)

Regular expression (Quiz 1)

University

20 Qs

quiz-placeholder

Similar activities

DATABASE

DATABASE

University

20 Qs

Susulan PBO XIRPL (2021/2022)

Susulan PBO XIRPL (2021/2022)

11th Grade - University

20 Qs

Quiz2

Quiz2

University

15 Qs

Java Programming

Java Programming

University

20 Qs

Java March

Java March

KG - University

16 Qs

Quiz-5

Quiz-5

University

20 Qs

ASK T2 - Kod Arahan (Python)

ASK T2 - Kod Arahan (Python)

7th Grade - University

20 Qs

C Language Quiz-1

C Language Quiz-1

University - Professional Development

15 Qs

Regular expression (Quiz 1)

Regular expression (Quiz 1)

Assessment

Quiz

Computers

University

Medium

Created by

Alok Sahoo

Used 4+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the regular expression ^abc match?

Any string containing "abc"

A string ending with "abc"

A string starting with "abc"

A string with only "abc"

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the . (dot) symbol match in a regular expression?

A digit

A space

Any single character except newline

The end of a string

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the regex a* match?

Zero or more 'a' characters

One or more 'a' characters

Exactly one 'a'

No match at all

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the \d represent in regex?

Any digit

A lowercase 'd'

A whitespace

A word character

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which regex matches exactly a 5-digit number?

\d+

\d{5}

\d*

\d{1,5}

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which regex will match email addresses like user@example.com?

[a-z]+@[a-z]+\.[a-z]+

\w+@\w+\.\w+

\S+@\S+

.+@.+

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the + symbol mean in regex?

Optional

Zero or more

One or more

Exactly one

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?