Review Questions 467Review Questions1. Where is the best location for  dịch - Review Questions 467Review Questions1. Where is the best location for  Việt làm thế nào để nói

Review Questions 467Review Question

Review Questions 467
Review Questions
1. Where is the best location for the current directory indicator (.) to reside in root’s PATH
environment variable?
A. Before all other directories
B. After all other directories
C. At any location exceptthe last one
D. Wherever is convenient
E. Nowhere; it shouldn’t be in root’s path
2. You want to create a shortcut for the command cd ~/papers/trade. Which of the following lines, if entered in a bashstartup script, will accomplish this goal?
A. alias cdpt=’cd ~/papers/trade’
B. export cdpt=’cd ~/papers/trade’
C. cd ~/papers/trade
D. shortcut cdpt “cd ~/papers/trade”
E. env cdpt `cd ~/papers/trade`
3. What is the purpose of the EDITORenvironment variable?
A.Set to Y(the default), the shell environment permits editing of commands; set to N, such
editing is disallowed.
B. It specifies the filename of the text editor that bashuses by default while you’re entering commands at its prompt.
C. If you type edit filenameat a command prompt, the program specified by EDITOR
will be launched.
D.Set to GUI, programs call a GUI editor; set to TEXT, programs call a text-based editor.
E. Some programs refer to EDITORto determine what external editor to launch when they
need to launch one.
4. In what environment variable is the current working directory stored?
A. PATH
B. CWD
C. PWD
D. PRESENT
E. WORKING
468 Chapter 9 ■ Writing Scripts, Configuring Email, and Using Databases
5. Which of the following commands, if typed in a bashshell, will create an environment
variable called MYVARwith the contents mystuffthat will be accessible to subsequently
launched programs?
A.export MYVAR=’mystuff’
B.MYVAR=’mystuff’
C.$MYVAR==mystuff
D. echo $MYVAR mystuff
E. setenv MYVAR mystuff
6. What file might a user modify to alter his or her own bashenvironment?
A. ~/.startup
B. /etc/bashrc
C. /home/.bashrc
D. /home/profilerc
E. ~/.bashrc
7. What commands might you use (along with appropriate options) to learn the value of a specific environment variable? (Select two.)
A. env
B. DISPLAY
C. export
D. echo
E. cat
8. After using a text editor to create a shell script, what step should you take before trying to
use the script?
A. Set the SUID bit using chmod.
B. Copy the script to the /usr/bin/scriptsdirectory.
C. Compile the script by typing bash scriptname, where scriptnameis the script’s
name.
D. Run a virus checker on the script to be sure it contains no viruses.
E. Set one or more executable bits using chmod.
9. Describe the effect of the following short script, cp1, if it’s called as cp1 big.c big.cc:
#!/bin/bash
cp $2 $1
A. It has the same effect as the cpcommand—copying the contents of big.cto big.cc.
B. It compiles the C program big.cand calls the result big.cc.
C. It copies the contents of big.ccto big.c, eliminating the old big.c.
D. It converts the C program big.cinto a C++ program called big.cc.
E. It interprets the big.cand big.ccfiles as bashscripts.
Review Questions 469
10. What is the purpose of conditional expressions in shell scripts?
A. They prevent scripts from executing if license conditions aren’t met.
B. They display information about the script’s computer environment.
C. They enable the script to take different actions in response to variable data.
D. They enable scripts to learn in a manner reminiscent of Pavlovian conditioning.
E. They improve code quality by improving its readability.
11. Which of the following lines identify valid shell scripts on a normally configured system?
(Select two.)
A. #!/bin/script
B. #!/bin/bash
C. !#/bin/tcsh
D. #!/bin/sh
E. !#/bin/zsh
12. Which of the following are valid looping statements in bashshell scripting? (Select three.)
A. for
B. while
C. goto
D. until
E. case
13. Your SMTP email server, mail.luna.edu, receives a message addressed to postmaster@
mail.luna.edu. There is no postmasteraccount on this computer. Assuming the system is
properly configured, how should the email server respond?
A. Accept the message, but do so very slowly so as to tie up the sender’s resources.
B. Bounce the message so that the sender knows the account doesn’t exist.
C. Hold the message in the local mail queue until the postmasteraccount is created.
D. Delete the message without bouncing it so as to reduce email clutter.
E. Deliver the email to another account, either locally or on another computer.
14. Which of the following is nota popular SMTP server for Linux?
A.Postfix
B.Sendmail
C.Fetchmail
D.Exim
E.qmail
470 Chapter 9 ■ Writing Scripts, Configuring Email, and Using Databases
15. You see the following line in a script:
mail -s “Error” -c abort < /tmp/msg root
What is the effect of this line, if and when it executes?
A. An email is sent to the user Error, the script is aborted using rootprivileges, and error
messages are written to /tmp/msg.
B. An email with the subject of Errorand the contents from /tmp/msgis sent to the local
users rootand abort.
C. An email with the subject of Errorand the contents of /tmp/msgis sent to the local
user root, and then the script is aborted.
D. An email is sent with Errorpriority to the local user root, and the email system is
then shut down with error messages being stored in /tmp/msg.
E. An email with the subject of Errorand contents of /tmp/msgis sent to root, and
information on this is logged with priority abort.
16. Your Internet connection has gone down for several hours. What is true of email sent by
your users to off-site recipients via a properly configured local SMTP server?
A. The SMTP server will refuse to accept email from local clients during the outage.
B. Email will be neither delayed nor lost.
C. All email sent during the outage will be lost.
D. Email will be delayed by a few hours but not lost.
E. Recipients will have to retrieve the mail via POP or IMAP.
17. You examine your /etc/aliasesfile and find it contains the following line:
root: jody
What can you conclude from this?
A. Email addressed to jodyon this system will be sent to the local user root.
B. Email addressed to rooton this system will be sent to the local user jody.
C. The local user jodyhas broken into the system and acquired rootprivileges.
D. The local user jodyhas permission to read email directly from root’s mail queue.
E. The administrator may log in using either username: rootor jody.
18. You’ve just installed MySQL and run it by typing mysql. How would you create a database
called fishto store data on different varieties of fish?
A.Ty pe NEW DATABASE fish;at the mysql>prompt.
B.Ty pe CREATE DATABASE fish;at the mysql>prompt.
C.Ty pe NEW DATABASE FISH;at the mysql>prompt.
D.Ty pe DATABASE CREATE fish;at the mysql>prompt.
E.Ty pe DB CREATE fish;at the mysql>prompt.
Review Questions 471
19. Which of the following are true statements about SQL tables? (Select two.)
A. Multiple tables may exist in a single SQL database.
B. Tables may be combined for cross-table searches using the DROPcommand.
C. Tables consist of rows, each of which holds attributes, and columns, each of which
defines a specific database item.
D. Careful table design can reduce the amount of data entry and database storage size.
E. Tables are stored on disk using a lossy compression algorithm.
20. What is the effect of the following SQL command, assuming the various names and data
exist?
mysql> UPDATE stars SET magnitude=2.25 WHERE starname=’Mintaka’;
A. It returns database entries from the starstable for all stars with magnitudeof 2.25
and starnameof Mintaka.
B. It sets the value of the starsfield in the magnitudeset to Mintaka, using a precision of
2.25.
C. It sets the value of the magnitudefield to 2.25for any item in the starstable with the
starnameof Mintaka.
D. It combines the starsand magnitude=2.25tables, returning all items for which
starnameis Mintaka.
E. It updates the starsdatabase, creating a new entry with a starnameof Mintakaand a
magnitudeof 2.25.
0/5000
Từ: -
Sang: -
Kết quả (Việt) 1: [Sao chép]
Sao chép!
Review Questions 467Review Questions1. Where is the best location for the current directory indicator (.) to reside in root’s PATHenvironment variable?A. Before all other directoriesB. After all other directoriesC. At any location exceptthe last oneD. Wherever is convenientE. Nowhere; it shouldn’t be in root’s path2. You want to create a shortcut for the command cd ~/papers/trade. Which of the following lines, if entered in a bashstartup script, will accomplish this goal?A. alias cdpt=’cd ~/papers/trade’B. export cdpt=’cd ~/papers/trade’C. cd ~/papers/tradeD. shortcut cdpt “cd ~/papers/trade”E. env cdpt `cd ~/papers/trade`3. What is the purpose of the EDITORenvironment variable?A.Set to Y(the default), the shell environment permits editing of commands; set to N, such editing is disallowed.B. It specifies the filename of the text editor that bashuses by default while you’re entering commands at its prompt.C. If you type edit filenameat a command prompt, the program specified by EDITORwill be launched.D.Set to GUI, programs call a GUI editor; set to TEXT, programs call a text-based editor.E. Some programs refer to EDITORto determine what external editor to launch when they need to launch one.4. In what environment variable is the current working directory stored?A. PATHB. CWDC. PWDD. PRESENTE. WORKING468 Chapter 9 ■ Writing Scripts, Configuring Email, and Using Databases5. Which of the following commands, if typed in a bashshell, will create an environment variable called MYVARwith the contents mystuffthat will be accessible to subsequently launched programs?A.export MYVAR=’mystuff’B.MYVAR=’mystuff’C.$MYVAR==mystuffD. echo $MYVAR mystuffE. setenv MYVAR mystuff6. What file might a user modify to alter his or her own bashenvironment?A. ~/.startupB. /etc/bashrcC. /home/.bashrcD. /home/profilercE. ~/.bashrc7. What commands might you use (along with appropriate options) to learn the value of a specific environment variable? (Select two.)A. envB. DISPLAYC. exportD. echoE. cat8. After using a text editor to create a shell script, what step should you take before trying to use the script?A. Set the SUID bit using chmod.B. Copy the script to the /usr/bin/scriptsdirectory.C. Compile the script by typing bash scriptname, where scriptnameis the script’s name.D. Run a virus checker on the script to be sure it contains no viruses.E. Set one or more executable bits using chmod.9. Describe the effect of the following short script, cp1, if it’s called as cp1 big.c big.cc:#!/bin/bashcp $2 $1A. It has the same effect as the cpcommand—copying the contents of big.cto big.cc.B. It compiles the C program big.cand calls the result big.cc.C. It copies the contents of big.ccto big.c, eliminating the old big.c.D. It converts the C program big.cinto a C++ program called big.cc.E. It interprets the big.cand big.ccfiles as bashscripts.Review Questions 46910. What is the purpose of conditional expressions in shell scripts?A. They prevent scripts from executing if license conditions aren’t met.B. They display information about the script’s computer environment.C. They enable the script to take different actions in response to variable data.D. They enable scripts to learn in a manner reminiscent of Pavlovian conditioning.E. They improve code quality by improving its readability.11. Which of the following lines identify valid shell scripts on a normally configured system? (Select two.)A. #!/bin/scriptB. #!/bin/bashC. !#/bin/tcshD. #!/bin/shE. !#/bin/zsh12. Which of the following are valid looping statements in bashshell scripting? (Select three.)A. forB. whileC. gotoD. untilE. case13. Your SMTP email server, mail.luna.edu, receives a message addressed to postmaster@mail.luna.edu. There is no postmasteraccount on this computer. Assuming the system is properly configured, how should the email server respond?A. Accept the message, but do so very slowly so as to tie up the sender’s resources.B. Bounce the message so that the sender knows the account doesn’t exist.C. Hold the message in the local mail queue until the postmasteraccount is created.D. Delete the message without bouncing it so as to reduce email clutter.E. Deliver the email to another account, either locally or on another computer.14. Which of the following is nota popular SMTP server for Linux?A.PostfixB.SendmailC.FetchmailD.EximE.qmail470 Chapter 9 ■ Writing Scripts, Configuring Email, and Using Databases15. You see the following line in a script:mail -s “Error” -c abort < /tmp/msg rootWhat is the effect of this line, if and when it executes?A. An email is sent to the user Error, the script is aborted using rootprivileges, and error messages are written to /tmp/msg.B. An email with the subject of Errorand the contents from /tmp/msgis sent to the local users rootand abort.C. An email with the subject of Errorand the contents of /tmp/msgis sent to the local user root, and then the script is aborted.D. An email is sent with Errorpriority to the local user root, and the email system is then shut down with error messages being stored in /tmp/msg.E. An email with the subject of Errorand contents of /tmp/msgis sent to root, and information on this is logged with priority abort.16. Your Internet connection has gone down for several hours. What is true of email sent by your users to off-site recipients via a properly configured local SMTP server?A. The SMTP server will refuse to accept email from local clients during the outage.B. Email will be neither delayed nor lost.C. All email sent during the outage will be lost.D. Email will be delayed by a few hours but not lost.E. Recipients will have to retrieve the mail via POP or IMAP.17. You examine your /etc/aliasesfile and find it contains the following line:
root: jody
What can you conclude from this?
A. Email addressed to jodyon this system will be sent to the local user root.
B. Email addressed to rooton this system will be sent to the local user jody.
C. The local user jodyhas broken into the system and acquired rootprivileges.
D. The local user jodyhas permission to read email directly from root’s mail queue.
E. The administrator may log in using either username: rootor jody.
18. You’ve just installed MySQL and run it by typing mysql. How would you create a database
called fishto store data on different varieties of fish?
A.Ty pe NEW DATABASE fish;at the mysql>prompt.
B.Ty pe CREATE DATABASE fish;at the mysql>prompt.
C.Ty pe NEW DATABASE FISH;at the mysql>prompt.
D.Ty pe DATABASE CREATE fish;at the mysql>prompt.
E.Ty pe DB CREATE fish;at the mysql>prompt.
Review Questions 471
19. Which of the following are true statements about SQL tables? (Select two.)
A. Multiple tables may exist in a single SQL database.
B. Tables may be combined for cross-table searches using the DROPcommand.
C. Tables consist of rows, each of which holds attributes, and columns, each of which
defines a specific database item.
D. Careful table design can reduce the amount of data entry and database storage size.
E. Tables are stored on disk using a lossy compression algorithm.
20. What is the effect of the following SQL command, assuming the various names and data
exist?
mysql> UPDATE stars SET magnitude=2.25 WHERE starname=’Mintaka’;
A. It returns database entries from the starstable for all stars with magnitudeof 2.25
and starnameof Mintaka.
B. It sets the value of the starsfield in the magnitudeset to Mintaka, using a precision of
2.25.
C. It sets the value of the magnitudefield to 2.25for any item in the starstable with the
starnameof Mintaka.
D. It combines the starsand magnitude=2.25tables, returning all items for which
starnameis Mintaka.
E. It updates the starsdatabase, creating a new entry with a starnameof Mintakaand a
magnitudeof 2.25.
đang được dịch, vui lòng đợi..
Kết quả (Việt) 2:[Sao chép]
Sao chép!
Xem lại câu hỏi 467
câu hỏi đánh giá
1. Đâu là vị trí tốt nhất cho chỉ số thư mục hiện hành (.) Để cư trú trong PATH gốc của
biến môi trường?
A. Trước khi tất cả các thư mục khác
B. Sau khi tất cả các thư mục khác
C. Ở bất kỳ vị trí exceptthe cuối cùng một trong
D. Bất cứ nơi nào thuận tiện
E. Hư không; nó không phải ở trong đường dẫn gốc của
2. Bạn muốn tạo một shortcut cho các lệnh cd ~ / giấy tờ / thương mại. Mà các dòng sau đây, nếu nhập vào trong một kịch bản bashstartup, sẽ thực hiện được mục tiêu này?
A. alias cdpt = 'cd ~ / giấy tờ / thương mại'
B. xuất khẩu cdpt = 'cd ~ / giấy tờ / thương mại'
C. cd ~ / giấy tờ / thương mại
D. cdpt shortcut "cd ~ / giấy tờ / thương mại"
E. env cdpt `cd ~ / giấy tờ / trade`
3. ? Mục đích của biến EDITORenvironment là gì
A.Set Y (mặc định), môi trường shell cho phép chỉnh sửa các lệnh; thiết lập để tồn tại, như
chỉnh sửa là không được phép.
B. Nó chỉ định tên tập tin của trình biên tập văn bản bashuses theo mặc định trong khi bạn gõ lệnh tại dấu nhắc.
C. Nếu bạn gõ chỉnh sửa filenameat một dấu nhắc lệnh, chương trình theo quy định của EDITOR
sẽ được đưa ra.
D.Set để GUI, các chương trình gọi một trình soạn thảo GUI; thiết lập để TEXT, chương trình gọi một trình soạn thảo văn bản.
E. Một số chương trình tham khảo để xác định những gì EDITORto soạn thảo bên ngoài để khởi động khi họ
cần để khởi động một.
4. Trong những biến môi trường được các thư mục làm việc hiện hành được lưu trữ?
A. PATH
B. CWD
C. PWD
D. HIỆN
E. LÀM VIỆC
468 Chương 9 ■ Scripts Viết, Cấu hình Email, và sử dụng cơ sở dữ liệu
5. Mà các lệnh sau đây, nếu gõ vào một bashshell, sẽ tạo ra một môi trường
thay đổi gọi là MYVARwith nội dung mystuffthat sẽ có thể truy cập để sau đó
chương trình đưa ra?
A.export myVar = 'MyStuff'
B.MYVAR = 'MyStuff'
C. $ myVar = = MyStuff
D. echo $ myVar MyStuff
E. setenv myVar MyStuff
6. Tập tin gì có một người sử dụng sửa đổi để thay đổi mình hoặc bashenvironment của riêng mình?
A. ~ / .startup
B. / etc / bashrc
C. /home/.bashrc
D. / home / profilerc
E. ~ / .bashrc
7. Những gì bạn có thể sử dụng lệnh (cùng với các tùy chọn thích hợp) để tìm hiểu giá trị của một biến môi trường cụ thể? (Chọn hai.)
A. env
B. DISPLAY
C. xuất khẩu
D. tiếng vang
E. mèo
8. Sau khi sử dụng một trình soạn thảo văn bản để tạo ra một kịch bản, những gì bước bạn nên dùng trước khi cố gắng
sử dụng các kịch bản?
A. Thiết lập các bit SUID sử dụng chmod.
B. Copy kịch bản đến / usr / bin / scriptsdirectory.
C. Dịch kịch bản bằng cách gõ bash scriptname, nơi scriptnameis của kịch bản
tên.
D. Chạy một kiểm tra virus trên các kịch bản để đảm bảo nó không có chứa virus.
E. Đặt một hoặc nhiều bit thực thi bằng cách sử dụng chmod.
9. Mô tả các tác động của các kịch bản ngắn, CP1 sau đây, nếu nó được gọi là CP1 big.c big.cc:
#! / Bin / bash
cp $ 2 $ 1
A. Nó có tác dụng tương tự như các cpcommand-sao chép nội dung của big.cto big.cc.
B. Nó biên dịch chương trình C big.cand gọi kết quả big.cc.
C. Nó sao chép nội dung của big.c big.ccto, loại bỏ các big.c. cũ
D. Nó chuyển đổi các chương trình C big.cinto một chương trình C ++ gọi big.cc.
E. Nó diễn giải các big.ccfiles big.cand như bashscripts.
Xem lại câu hỏi 469
10 mục đích của biểu thức điều kiện trong kịch bản shell là gì?
A. Họ ngăn chặn kịch bản từ thực hiện nếu điều kiện giấy phép không được đáp ứng.
B. Họ hiển thị thông tin về môi trường máy tính của kịch bản.
C. Chúng cho phép các kịch bản để có những hành động khác nhau để đáp ứng với dữ liệu biến.
D. Chúng cho phép các kịch bản để tìm hiểu một cách gợi nhớ của máy xạ.
E. Họ cải thiện chất lượng mã bằng cách cải thiện khả năng đọc của mình.
11. Mà các dòng sau đây xác định các kịch bản shell hợp lệ trên một hệ thống cấu hình bình thường?
(Chọn hai.)
A. #! / bin / script
B. #! / bin / bash
C. #! / bin / tcsh
D. #! / bin / sh
E. #! / bin / zsh
12. Khẳng định nào sau đây là hợp lệ looping trong bashshell kịch bản? (Chọn ba.)
A. cho
B. trong khi
C. goto
D. cho đến
E. trường hợp
13. Máy chủ email SMTP của bạn, mail.luna.edu, nhận được tin nhắn gửi đến postmaster @
mail.luna.edu. Không có postmasteraccount trên máy tính này. Giả sử hệ thống được
cấu hình đúng cách, làm thế nào nên các phản ứng máy chủ email?
A. Chấp nhận các thông điệp, nhưng làm như vậy rất chậm để tie lên nguồn tài nguyên của người gửi.
B. Trả lại các tin nhắn nên mà người gửi biết tài khoản không tồn tại.
C. Giữ tin nhắn trong hàng đợi mail địa phương cho đến khi postmasteraccount được tạo ra.
D. Xóa tin nhắn mà không nảy nó để giảm email lộn xộn.
E. Cung cấp các email đến tài khoản khác, hoặc cục bộ hoặc trên một máy tính khác.
14. Điều nào sau đây là Nota máy chủ phổ biến SMTP cho Linux?
A.Postfix
B.Sendmail
C.Fetchmail
D.Exim
E.qmail
470 Chương 9 ■ Scripts Viết, Cấu hình Email, và sử dụng cơ sở dữ liệu
15. Bạn thấy các dòng sau đây trong một kịch bản:
thư -s "Lỗi" -c hủy bỏ </ tmp / msg gốc
các tác dụng của dòng này là gì, nếu và khi nó thực hiện?
A. Một email sẽ được gửi đến các lỗi người dùng, kịch bản được hủy bỏ bằng cách sử dụng rootprivileges, và lỗi
thông điệp được ghi vào / tmp / msg.
B. Một email với chủ đề của Errorand nội dung từ / tmp / msgis gửi đến các địa phương
sử dụng rootand hủy bỏ.
C. Một email với chủ đề của Errorand nội dung của / tmp / msgis gửi đến các địa phương
gốc của người dùng, và sau đó kịch bản bị hủy bỏ.
D. Một email được gửi đi với Errorpriority vào thư mục gốc dùng địa phương, và các hệ thống email được
sau đó đóng cửa với thông báo lỗi được lưu trong / tmp / msg.
E. Một email với chủ đề của Errorand nội dung của / tmp / msgis gửi cho người chủ, và
thông tin về điều này được ghi lại với ưu tiên hủy bỏ.
16. Kết nối Internet của bạn đã đi xuống trong vài giờ. Những gì là thực sự của email được gửi bởi
người dùng của bạn để off-site người nhận thông qua một máy chủ SMTP địa phương cấu hình đúng?
A. Các máy chủ SMTP sẽ từ chối nhận email từ các khách hàng địa phương trong lúc cúp điện.
B. Email sẽ được trì hoãn không phải và cũng không bị mất.
C. Tất cả các email gửi trong lúc cúp điện sẽ bị mất.
D. Email sẽ được trì hoãn bởi một vài giờ, nhưng không bị mất.
E. Người nhận sẽ phải lấy mail qua POP hoặc IMAP.
17. Bạn kiểm tra tập tin / etc / aliasesfile và tìm thấy nó chứa các dòng sau:
root: jody
Những gì bạn có thể kết luận từ này?
A. Email gửi đến jodyon hệ thống này sẽ được gửi đến thư mục gốc dùng địa phương.
B. Email gửi đến rooton hệ thống này sẽ được gửi đến jody dùng địa phương.
C. Các jodyhas người dùng địa phương đột nhập vào hệ thống và mua rootprivileges.
D. Cho phép người dùng địa phương jodyhas để đọc email trực tiếp từ hàng đợi email của root.
E. Các quản trị viên có thể đăng nhập bằng cách sử dụng tên người dùng: rootor jody.
18. Bạn chỉ cần cài đặt MySQL và chạy nó bằng cách gõ mysql. Làm thế nào bạn sẽ tạo ra một cơ sở dữ liệu
được gọi là fishto lưu trữ dữ liệu trên các giống cá khác nhau?
A.Ty pe NEW DATABASE cá;. Tại mysql> nhắc
B.Ty pe CREATE DATABASE cá; tại mysql> nhắc.
C.TY pe NEW DATABASE FISH;. tại mysql> nhắc
D.Ty pe DATABASE CREATE cá;. tại mysql> nhắc
E.Ty pe DB CREATE cá;. tại mysql> nhắc
xét câu hỏi 471
19. Điều nào sau đây là nói đúng sự thật về SQL bảng? (Chọn hai.)
A. Nhiều bảng này có thể tồn tại trong một cơ sở dữ liệu SQL duy nhất.
B. Bảng này có thể được kết hợp cho các tìm kiếm chéo bảng sử dụng các DROPcommand.
C. Bảng gồm các hàng, mỗi trong số đó nắm giữ các thuộc tính, và các cột, mỗi trong số đó
xác định một mục cơ sở dữ liệu cụ thể.
D. Thiết kế bảng cẩn thận có thể làm giảm lượng nhập dữ liệu và cơ sở dữ kích thước lưu trữ.
E. Bàn được lưu trữ trên đĩa bằng cách sử dụng một thuật toán nén lossy.
20. Tác động của các lệnh SQL sau đây là gì, giả sử các tên gọi khác nhau và dữ liệu
có tồn tại?
Mysql> CẬP NHẬT sao SET độ lớn = 2.25 ĐÂU starname = 'Mintaka';
A. Nó trả về các mục cơ sở dữ liệu từ các starstable cho tất cả các ngôi sao với magnitudeof 2.25
và starnameof Mintaka.
B. Nó đặt giá trị của starsfield trong magnitudeset để Mintaka, sử dụng một độ chính xác
2,25.
C. Nó đặt giá trị của magnitudefield để 2.25for bất kỳ mục nào trong starstable với
starnameof Mintaka.
D. Nó kết hợp các starsand độ lớn = 2.25tables, trả lại tất cả các mặt hàng mà
starnameis Mintaka.
E. Nó cập nhật các starsdatabase, tạo một entry mới với một starnameof Mintakaand một
magnitudeof 2.25.
đang được dịch, vui lòng đợi..
 
Các ngôn ngữ khác
Hỗ trợ công cụ dịch thuật: Albania, Amharic, Anh, Armenia, Azerbaijan, Ba Lan, Ba Tư, Bantu, Basque, Belarus, Bengal, Bosnia, Bulgaria, Bồ Đào Nha, Catalan, Cebuano, Chichewa, Corsi, Creole (Haiti), Croatia, Do Thái, Estonia, Filipino, Frisia, Gael Scotland, Galicia, George, Gujarat, Hausa, Hawaii, Hindi, Hmong, Hungary, Hy Lạp, Hà Lan, Hà Lan (Nam Phi), Hàn, Iceland, Igbo, Ireland, Java, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Kurd, Kyrgyz, Latinh, Latvia, Litva, Luxembourg, Lào, Macedonia, Malagasy, Malayalam, Malta, Maori, Marathi, Myanmar, Mã Lai, Mông Cổ, Na Uy, Nepal, Nga, Nhật, Odia (Oriya), Pashto, Pháp, Phát hiện ngôn ngữ, Phần Lan, Punjab, Quốc tế ngữ, Rumani, Samoa, Serbia, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenia, Somali, Sunda, Swahili, Séc, Tajik, Tamil, Tatar, Telugu, Thái, Thổ Nhĩ Kỳ, Thụy Điển, Tiếng Indonesia, Tiếng Ý, Trung, Trung (Phồn thể), Turkmen, Tây Ban Nha, Ukraina, Urdu, Uyghur, Uzbek, Việt, Xứ Wales, Yiddish, Yoruba, Zulu, Đan Mạch, Đức, Ả Rập, dịch ngôn ngữ.

Copyright ©2025 I Love Translation. All reserved.

E-mail: