exam questions

Exam 102-500 All Questions

View all questions & answers for the 102-500 exam

Exam 102-500 topic 1 question 74 discussion

Actual exam question from LPI's 102-500
Question #: 74
Topic #: 1
[All 102-500 Questions]

Which of the following commands puts the output of the command date into the shell variable mydate?

  • A. mydate="date"
  • B. mydate="exec date"
  • C. mydate="$((date))"
  • D. mydate="$(date)"
  • E. mydate="${date}"
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Maxfr
Highly Voted 2 years, 1 month ago
mydate="$(date)"
upvoted 11 times
...
dwayne012
Most Recent 4 days, 13 hours ago
Selected Answer: E
root@test-srv-ubuntu-2204:~# mydate="$(date)" root@test-srv-ubuntu-2204:~# echo $mydate Fri Nov 29 06:36:20 PM UTC 2024 root@test-srv-ubuntu-2204:~# mydate="$(date)" root@test-srv-ubuntu-2204:~# echo $mydate Fri Nov 29 06:36:20 PM UTC 2024 root@test-srv-ubuntu-2204:~# mydate="$(date)" root@test-srv-ubuntu-2204:~# echo $mydate Fri Nov 29 06:36:20 PM UTC 2024 root@test-srv-ubuntu-2204:~# mydate="date" root@test-srv-ubuntu-2204:~# echo $mydate date
upvoted 1 times
...
b703161
2 months, 1 week ago
Selected Answer: A
Correct is A: [dawoud@server ~]$ mydate="$(date)" [dawoud@server ~]$ $mydate bash: Mi: Befehl nicht gefunden... [dawoud@server ~]$ mydate="date" [dawoud@server ~]$ $mydate Mi 25. Sep 17:59:24 CEST 2024 [dawoud@server ~]$
upvoted 1 times
...
ciola89
2 months, 3 weeks ago
Selected Answer: A
DESKTOP-KKVDTQ1:~$ mydate="date" DESKTOP-KKVDTQ1:~$ $mydate Tue Apr 30 00:31:01 EEST 2024 DESKTOP-KKVDTQ1:~$ mydate="$(date)" DESKTOP-KKVDTQ1:~$ $mydate Tue: command not found
upvoted 1 times
...
douivayl
7 months, 1 week ago
DESKTOP-KKVDTQ1:~$ mydate="date" DESKTOP-KKVDTQ1:~$ $mydate Tue Apr 30 00:31:01 EEST 2024 DESKTOP-KKVDTQ1:~$ mydate="$(date)" DESKTOP-KKVDTQ1:~$ $mydate Tue: command not found DESKTOP-KKVDTQ1:~$ uname -a Linux DESKTOP-KKVDTQ1 5.10.16.3-microsoft-standard-WSL2 #1 SMP Fri Apr 2 22:23:49 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...