Skip to content

Commit

Permalink
Update linux-assessment.md (#1363)
Browse files Browse the repository at this point in the history
* Update linux-assessment.md

Add two new questions to the linux assessment

* Update mysql-quiz.md

Add a new question 73

* Revert "Update mysql-quiz.md"

This reverts commit d0567ac.

* Update mysql-quiz.md

Add a new question 73 to the quiz
  • Loading branch information
KietDinh authored Mar 31, 2021
1 parent 5c03391 commit 2a72a66
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
13 changes: 13 additions & 0 deletions linux/linux-assesment.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,3 +295,16 @@ date | mail -s "This is a remote test" user1@rhhost1.localnet.com
- [ ] {0,3}(pattern}
- [x] Occurrence quantifiers are not supported in Bash's version of extended globs, so this is not possible.
- [ ] {3}(pattern})

#### Q39. When configuring a Samba share, how would the engineering group be specified in the smb.conf?
- [ ] Samba uses Linux operating system groups from the /etc/group file; just specify the group name.
- [x] It would be preceded by a percent sign (%), such as %engineers.
- [ ] Use the group name by itself; Samba checks for its existence.
- [ ] It would be preceded by an @ symbol, such as @engineering.

#### Q40. To configure the Kerberos client, which command should you use to import the keytab file?
- [ ] krb5-workstation
- [x] ktutil
- [ ] pam_krb5
- [ ] kdb5_util

6 changes: 6 additions & 0 deletions mysql/mysql-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,3 +561,9 @@ WHERE MATCH(address) AGAINST ('street, drive');
- [ ] Temporary tables can be shared among clients, which makes them more usable in group development environments.
- [ ] The temporary table will be dropped as soon as your session disconnects.
- [ ] Creating a temporary table does not require any special privileges.

#### Q73. Which is a valid constructor for a class named User?
- [ ] public construct User() {}
- [X] public User() {}
- [ ] public instance User() {}
- [ ] public init User() {}

0 comments on commit 2a72a66

Please sign in to comment.