Perl and Java

Perl and Java

University

8 Qs

quiz-placeholder

Similar activities

Algo 1

Algo 1

University

10 Qs

Programming Language Quiz

Programming Language Quiz

University

9 Qs

Python Quiz - 1

Python Quiz - 1

University

10 Qs

Bahasa Pemrograman Python

Bahasa Pemrograman Python

University

10 Qs

2021_DASPRO_PERTEMUAN2

2021_DASPRO_PERTEMUAN2

University

10 Qs

Python Basics

Python Basics

University

6 Qs

CSC301 Chapter 2

CSC301 Chapter 2

University

10 Qs

Python 1ra Clase

Python 1ra Clase

University

9 Qs

Perl and Java

Perl and Java

Assessment

Quiz

Computers

University

Hard

Created by

Annapoorani G

Used 4+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following data types are preceded by a dollar sign ($) in Perl?

Scalar

Array

Hashes

All of the above

Answer explanation

Scalars are preceded by a dollar sign ($).

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To verify if the variable $str contains the word “test” you would use

if ($str = ~/test/)

if ($str == “test”)

if ($str = “test”)

if ($str contains “test”)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To repeat a string, perl uses ___ operator.

/

.

x

\\

4.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

AVD stands for________

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output?

#!/usr/local/bin/perl

$a = 5;

until( $a > 10 ) {

printf "Value of a: $a\n";

$a = $a + 1;

}

Value of a: 5

Value of a: 6

Value of a: 7

Value of a: 8

Value of a: 9

Value of a: 10

5 6 7 8 9 10

Value of a: 5

6

7

8

9

10

Error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following commands is used to display the directory attributes

cat

ls

mkdir

cp

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Mystery animal game was based on

Media Image
Media Image
Media Image

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#!/usr/bin/perl

%data = ('John Paul', 45, 'Lisa', 30, 'Kumar', 40);

print "\$data{'John Paul'} = $data{'John Paul'}\n";

print "\$data{'Lisa'} = $data{'Lisa'}\n";

print "\$data{'Kumar'} = $data{'Kumar'}\n";

What is the output of above code?

data{'John Paul'} = 45

data{'Lisa'} = 30

data{'Kumar'} = 40

$data{'John Paul'} = 45

$data{'Lisa'} = 30

$data{'Kumar'} = 40

\45=45

\30=30

\40=40

None of the above