Unit 4 - Practice Quiz

CSC104 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 In Bash scripting, which of the following is a valid syntax for defining a function named myFunc?

A. def myFunc():
B. func myFunc() { commands }
C. function myFunc { commands; }
D. myFunc = function() { commands; }

2 When writing a multi-function script, how do you define a variable that is only accessible within the function it is declared in?

A. restricted var_name
B. private var_name
C. local var_name
D. const var_name

3 Inside a function, how do you access the first argument passed specifically to that function?

A. $1
B. $ARG1
C. $0
D. @{1}

4 Which command is used to return a numeric exit status from a function to the caller?

A. return
B. exit
C. echo
D. back

5 To enable an interactive menu, which Bash command is commonly used to accept single-character input without requiring the user to press Enter?

A. read -n 1
B. getch
C. input -char
D. read -p

6 Which ANSI escape code sequence is typically used to print text in Red?

A. \033[0;32m
B. \033[0;34m
C. \033[0;31m
D. \color{red}

7 When using ANSI escape codes for colors, what is the code \033[0m used for?

A. Make text bold
B. Clear the screen
C. Set background to black
D. Reset/Normalize all attributes

8 Which control structure is most efficient for handling multiple choices in an interactive menu script?

A. if-else chain
B. while loop
C. case statement
D. for loop

9 What is the primary command used to securely execute a script on a remote server?

A. ssh
B. ftp
C. netcat
D. telnet

10 How can you execute a local script named setup.sh on a remote server user@host without copying the file there first?

A. ssh user@host < setup.sh
B. scp setup.sh user@host && run
C. ssh user@host exec setup.sh
D. ssh user@host -s setup.sh

11 To perform remote execution without entering a password every time, which mechanism should be set up?

A. Telnet plain text
B. SSH Key-based Authentication
C. Hardcoded password in script
D. Root permission

12 Which command-line tool is specifically designed to parse, filter, and map JSON data in the terminal?

A. grep
B. jq
C. sed
D. awk

13 Given the JSON {"status": "active", "id": 50}, which jq filter extracts the value of the status?

A. jq [status]
B. jq -extract status
C. jq 'status'
D. jq .status

14 What does the jq command jq '.' do to raw JSON input?

A. Extracts the first element
B. Minifies the JSON
C. Deletes the JSON
D. Pretty-prints/Formats the JSON

15 Given a JSON array [{"id":1}, {"id":2}], how do you access the first object using jq?

A. jq .[1]
B. jq .first
C. jq .array(0)
D. jq .[0]

16 When interacting with the Cloudflare API via curl, which HTTP header is used for authentication using an API Token?

A. -H "Authorization: Bearer <TOKEN>"
B. -H "X-CF-Key: <TOKEN>"
C. -H "Auth: <TOKEN>"
D. -u user:<TOKEN>

17 Which curl flag is used to send JSON data as the payload (body) of a request?

A. -p or --payload
B. -d or --data
C. -b or --body
D. -j or --json

18 If you need to update a DNS record via Cloudflare API, which HTTP method is appropriate?

A. GET
B. HEAD
C. PUT
D. DELETE

19 In an Apache access log, which command is most suitable for extracting just the IP addresses (usually the first column)?

A. cut -c 1-5
B. sed 'delete all'
C. awk '{print $1}'
D. grep '$1'

20 When summarizing logs, what does the command sequence sort | uniq -c do?

A. Sorts lines and deletes unique lines
B. Uniquely sorts characters
C. Sorts lines and counts the occurrences of each unique line
D. Sorts lines and removes duplicates

21 Which command would you use to filter an access log for only entries resulting in a '404 Not Found' error?

A. find "404"
B. locate "404"
C. cat "404"
D. grep "404"

22 What is the primary function of SSMTP in a scripting context?

A. To act as a full-featured mail server like Exchange
B. To send emails from the command line via an external SMTP server
C. To receive emails (IMAP server)
D. To encrypt emails using PGP

23 Which configuration file typically holds the credentials and server details for SSMTP?

A. /etc/mail/sendmail.cf
B. /etc/ssh/sshd_config
C. /var/www/html/config.php
D. /etc/ssmtp/ssmtp.conf

24 To generate a random password, which system file serves as a source of non-blocking pseudorandom data?

A. /dev/urandom
B. /dev/null
C. /dev/zero
D. /dev/randomness

25 In a password generator script, what does tr -dc 'A-Za-z0-9' do?

A. Translates lower case to upper case
B. Deletes all characters except the complement (alphanumeric)
C. Deletes alphanumeric characters
D. Encrypts the input

26 Which command allows you to cut a stream of characters to a specific length (e.g., take the first 12 characters)?

A. grep -12
B. cut -d 12
C. tail -c 12
D. head -c 12

27 What is the fundamental difference between a pipe | and redirection >?

A. > is used for errors only
B. | sends output to a file; > sends output to a command
C. | sends output to another command; > sends output to a file
D. There is no difference

28 If you use >> instead of > when redirecting output to a file, what happens?

A. The file is overwritten
B. The output is appended to the end of the file
C. The command fails if the file exists
D. The file is deleted

29 How do you redirect Standard Error (stderr) to a file?

A. &>
B. 1>
C. 2>
D. |>

30 In the context of automating WordPress setup, what is the purpose of wget https://wordpress.org/latest.tar.gz?

A. To install Apache
B. To download the WordPress source files
C. To update the OS
D. To configure the database

31 Which command is used to extract the .tar.gz file downloaded for WordPress?

A. rar x latest.tar.gz
B. tar -xzf latest.tar.gz
C. gunzip latest.tar.gz
D. unzip latest.tar.gz

32 In a LAMP stack automation script, which user usually owns the web directory (/var/www/html) for security and write access?

A. www-data
B. root
C. guest
D. admin

33 When automating the database setup for WordPress, which SQL command creates the database?

A. MAKE DATABASE wordpress;
B. NEW DATABASE wordpress;
C. CREATE DATABASE wordpress;
D. INIT DATABASE wordpress;

34 To allow WordPress to connect to the database, which file needs to be created from wp-config-sample.php?

A. config.php
B. wp-config.php
C. wp-connect.php
D. wp-settings.php

35 Which sed command pattern is best for replacing a placeholder like database_name_here in a config file?

A. sed -r 'database_name_here -> my_db' file
B. sed 'delete database_name_here' file
C. sed -x 'my_db' file
D. sed -i 's/database_name_here/my_db/' file

36 What is the result of the logical operation cmd1 && cmd2 in a script?

A. cmd1 runs only if cmd2 succeeds
B. cmd2 runs only if cmd1 succeeds
C. cmd2 runs only if cmd1 fails
D. Both commands run simultaneously

37 When using curl to fetch JSON data, how do you suppress the progress meter output?

A. -v
B. -P
C. --verbose
D. -s

38 In a bash script, what does set -e do?

A. Exports all variables
B. Enables syntax highlighting
C. Exits the script immediately if a command exits with a non-zero status
D. Enables debugging mode

39 Which tool would you use to verify that a variable $JSON contains valid JSON syntax before parsing it?

A. echo "$JSON" | grep json
B. cat "$JSON"
C. validate_json "$JSON"
D. echo "$JSON" | jq .

40 When creating a log summarizer, which awk variable represents the number of fields (columns) in the current line?

A. NF
B. FS
C. $$
D. NR

41 In an interactive menu, how do you create an infinite loop that keeps the menu open until the user chooses to exit?

A. while true; do ... done
B. repeat ... until exit
C. for i in {1..100}; do ... done
D. until false; do ... done

42 How do you securely supply a password to mysql in a script without the prompt interrupting the automation?

A. Type it manually
B. mysql -u user -pPASSWORD
C. Use telnet
D. It is impossible

43 What is the purpose of ssh-copy-id user@host?

A. To copy files securely
B. To duplicate the server ID
C. To copy the SSH daemon to a remote server
D. To copy your public key to the remote server's authorized_keys

44 When using grep, which flag allows you to search using Extended Regular Expressions (like | for OR)?

A. -E
B. -x
C. -v
D. -i

45 In an SSMTP email body, what must usually be the first line to ensure the recipient is displayed correctly in email clients?

A. From: me@example.com
B. Subject: My Subject
C. To: recipient@example.com
D. Hello World

46 Which of the following generates a random 16-character string using openssl?

A. openssl genrsa 16
B. openssl random 16
C. openssl sha256
D. openssl rand -base64 12

47 If you want to debug a script by printing every command before it is executed, how do you run the script?

A. bash -x script.sh
B. bash -v script.sh
C. bash -e script.sh
D. bash -d script.sh

48 When automating the Apache service, which command ensures Apache starts automatically when the server boots?

A. apache2 --init
B. service apache2 run
C. systemctl enable apache2
D. systemctl start apache2

49 Which mathematical operator in a Bash arithmetic expansion a ? $b)) performs the modulo operation?

A. %
B. #
C. *
D. /

50 In a JSON API response, if a key contains a special character (e.g., user-name), how must it be referenced in jq?

A. .['user-name']
B. ."user-name"
C. .user-name
D. Both B and C