Ethical Hacking Kali Linux Part 3

Ethical Hacking Kali Linux Part 3

Professional Development

10 Qs

quiz-placeholder

Similar activities

Test Variable

Test Variable

Professional Development

10 Qs

[FE] Ice Breaking - JavaScript Control Flow

[FE] Ice Breaking - JavaScript Control Flow

Professional Development

10 Qs

[FE] Ice Breaking - Tailwind CSS: Building Dynamic and User-Enga

[FE] Ice Breaking - Tailwind CSS: Building Dynamic and User-Enga

Professional Development

10 Qs

Front-End Development Beginner Knowledge Test

Front-End Development Beginner Knowledge Test

Professional Development

10 Qs

node Js/Javascript Quizz

node Js/Javascript Quizz

Professional Development

14 Qs

[FE] Ice Breaking - React Fundamentals: Building Interactive Use

[FE] Ice Breaking - React Fundamentals: Building Interactive Use

Professional Development

10 Qs

Post-test Digitalisasi Sekolah

Post-test Digitalisasi Sekolah

Professional Development

10 Qs

SpidervellA CyberSecurity Quiz

SpidervellA CyberSecurity Quiz

Professional Development

10 Qs

Ethical Hacking Kali Linux Part 3

Ethical Hacking Kali Linux Part 3

Assessment

Quiz

Information Technology (IT)

Professional Development

Hard

Created by

KALAIARASAN SGM

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct shebang line to start a Bash script?

#!/usr/bin/python

#!/bin/bash

#!/bin/sh

#!/bash

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to define a variable in Bash?

name = "Alex"

name: Alex

name="Alex"

$name = Alex

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following script output?

x=5

echo $x

$x

x

5

x=5

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which conditional statement is used for multiple conditions?

elseif

elif

else if

ifelse

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the if block below check?

if [ $num -eq 10 ]; then

echo "Ten"

fi

If num is less than 10

If num is equal to 10

If num is a string

If num is undefined

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop executes a set of commands for a given range?

until loop

while loop

for loop

case loop

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the script?

for i in {1..3}; do

echo $i

done

123

1 2 3

1 2 3 on one line

1 (newline) 2 (newline) 3 (newline)

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?