Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@ Please follow your own understanding, do not use Google and ChatGPT.
Please fork this repository and answer the following five questions.

Q1: How to list all files, including hidden files, in the current directory using a Linux command?
Answer:
Answer:ls -a

Q2: Rename 'world-hello.txt' to 'hello_world.md' using the Linux command.
Answer:
Answer: mv 'world-hello.txt' 'hello_world.md'

Q3: How to request the latest code using Git command.
Answer:
Answer:git pull

Q4: There is a MySQL table named `students` with columns `id`, `name`, `gender`, and `age`. Please write a SQL
query to retrieve male students who are older than 10 years old.
Answer:
Answer:select * from students where age >=10

Q5: Please provide code to find the minimum number in an array using your preferred programming language.
Code:
Code: numbers = [12,3,333,22]
print(min(numbers))