当前位置:网站首页>Can you write the software test questions?
Can you write the software test questions?
2022-07-08 01:52:00 【Software testing Lao Mo】
Catalog
One 、SQL Database multiple choice questions ( Each question 2.5 branch , common 20 topic )
Two 、LINUX choice question ( Each question 2.5 branch , common 10 topic )
3、 ... and 、 LINUX Completion ( Each question 5 branch , common 5 topic )
One 、SQL Database multiple choice questions ( Each question 2.5 branch , common 20 topic )
1.SQL refer to ? ( )
A.Strong Question Language
B.Structured Question Language
C.Structured Query Language
2. that SQL Statement is used to extract data from a database ? ( )
A.EXTRACT
B.SELECT
C.OPEN
D.GET
3. Which one SQL Statement is used to update data in the database ? ( )
A.MODIFY
B.SAVE AS
C.UPDATE
D.SAVE
4. Which one SQL Statement is used to delete data in a database ? ( )
A.COLLAPSE
B.DELETE
C.REMOVE
5. Which one SQL Statement is used to insert new data into the database ? ( )
A.INSERT NEW
B.ADD RECORD
C.ADD NEW
D.INSERT INTO
6. adopt SQL, How do you get from "Persons" Select in the table "FirstName" Column ? ( )
A.SELECT Persons.FirstName
B.SELECT FirstName FROM Persons
C.EXTRACT FirstName FROM Persons
7. adopt SQL, How do you get from "Persons" Select all the lists in the table ? ( )
A. SELECT [all] FROM Persons
B. SELECT Persons
C. SELECT * FROM Persons
D. SELECT *.Persons
8. adopt SQL, How do you get from "Persons" Select in the table "FirstName" The value of the column is equal to "Peter" All records ? ( )
A.SELECT [all] FROM Persons WHERE FirstName='Peter'
B.SELECT * FROM Persons WHERE FirstName LIKE 'Peter'
C.SELECT [all] FROM Persons WHERE FirstName LIKE 'Peter'
D.SELECT * FROM Persons WHERE FirstName='Peter'
9. adopt SQL, How do you get from "Persons" Select in the table "FirstName" The value of the column is in "a" All the notes at the beginning
record ? ( )
A.SELECT * FROM Persons WHERE FirstName LIKE 'a%'
B.SELECT * FROM Persons WHERE FirstName='a'
C.SELECT * FROM Persons WHERE FirstName LIKE '%a'
D.SELECT * FROM Persons WHERE FirstName='%a%'
10. Please judge whether the following statement is correct : When one of the listed conditions is true when ,OR The operator will display the record . When all the conditions listed are true when ,AND The operator will display the record . ( )
A. correct
C. error
11. adopt SQL, How do you watch Persons Choose from FirstName be equal to Thomas and LastName be equal to Carter All records ? ( )
A.SELECT * FROM Persons WHERE FirstName LIKE 'Thomas' AND LastName LIKE 'Carter'
B.SELECT FirstName='Thomas', LastName='Carter' FROM Persons
C.SELECT * FROM Persons WHERE FirstName='Thomas' AND LastName='Carter'
12. adopt SQL, How do you select... Alphabetically Persons In the table LastName Be situated between Adams and Carter All records ? ( )
A.SELECT * FROM Persons WHERE LastName BETWEEN 'Adams' AND 'Carter'
B.SELECT * FROM Persons WHERE LastName>'Adams' AND LastName<'Carter'
C.SELECT LastName>'Adams' AND LastName<'Carter' FROM Persons
13. Which one SQL Statement can return a unique different value ? ( )
A.SELECT DIFFERENT
B.SELECT DISTINCT
C.SELECT UNIQUE
14. that SQL Keywords are used to sort the results ? ( )
A.ORDER
B.SORT BY
C.SORT
D.ORDER BY
15. adopt SQL, How do you base on "FirstName" Slightly descending from "Persons" Table returns all records ?( )
A.SELECT * FROM Persons SORT 'FirstName' DESC
B.SELECT * FROM Persons ORDER BY FirstName DESC
C.SELECT * FROM Persons ORDER FirstName DESC
D.SELECT * FROM Persons SORT BY 'FirstName' DESC
16. adopt SQL, How would you like to "Persons" The expression inserts a new record ?( )
A.INSERT ('Jimmy', 'Jackson') INTO Persons
B.INSERT VALUES ('Jimmy', 'Jackson') INTO Persons
C.INSERT INTO Persons VALUES ('Jimmy', 'Jackson')
17. adopt SQL, How would you like to "Persons" In the table "LastName" Don't insert "Wilson" ?( )
A.INSERT INTO Persons (LastName) VALUES ('Wilson')
B.INSERT ('Wilson') INTO Persons (LastName)
C.INSERT INTO Persons ('Wilson') INTO LastName
18. How do you put "Persons" In the table "LastName" Column "Gates" Change it to "Wilson" ?( )
A.MODIFY Persons SET LastName='Wilson' WHERE LastName='Gates'
B.UPDATE Persons SET LastName='Wilson' WHERE LastName='Gates'
C.UPDATE Persons SET LastName='Wilson' INTO LastName='Gates'
D.MODIFY Persons SET LastName='Wilson' INTO LastName='Gates'
19. adopt SQL, How are you in "Persons" In the table to delete "FirstName" be equal to "Fred" The record of ?( )
A.DELETE FROM Persons WHERE FirstName = 'Fred'
B.DELETE FirstName='Fred' FROM Persons
C.DELETE ROW FirstName='Fred' FROM Persons
20. adopt SQL, How do you return to "Persons" The number recorded in the table ?( )
A.SELECT COLUMNS( ) FROM Persons
B.SELECT COLUMNS(*) FROM Persons
C.SELECT COUNT( ) FROM Persons
D.SELECT COUNT(*) FROM Persons
Two 、LINUX choice question ( Each question 2.5 branch , common 10 topic )
1. If you forget ls command reference , May adopt ( ) Order help
A.?ls
B.help ls
C.man ls
D.get ls
2. To file file1 The command with the executable attribute of others is ( )
A.chmod a+x
B.chown a+x
C.chmod o+x
D.chown o+x
3. The command to view all processes in the system is ( )
A.ps all
B.ps aix
C.ps auf
D.ps aux
4. The file permissions that all users can read are ( )
A.777
B.444
C.644
D.640
5. Use $cd ~ After the command , We will enter ( ) Catalog .
A. /
B. ~
C. User's home directory
D. /tmp
6. In order to archive the compressed files in the current directory myftp.tar.gz decompression , We can use :( )
A.tar -xvzf myftp.tar.gz
B.tar -xvz myftp.tar.gz
C.tar -vzf myftp.tar.gz
D.tar -xvf myftp.tar.gz
7. The permissions of a file are -rw-rw-r--, The permissions of the owner of this file are ( )
A.read-only
B.write
C.read-write
8. stay vi In the editor , command “dd” Used to delete the current location ( )
A. character
B. That's ok
C. Variable
D. word
9. What command to use to merge two files into one file ?( )
A.cat
B.grep
C.awk
D.cut
10. About bash The correct argument of variables is :( )
A. Can be in /etc/porfile The settings in it take effect for all users , permanent
B. In the user's home directory .bash_profile Adding variables to the file takes effect for a single user , Provisional entry into force
C. have access to export Definition , Only for the present shell take effect , Permanent validity
D. None of the above is true
3、 ... and 、 LINUX Completion ( Each question 5 branch , common 5 topic )
1. Create a name in the current directory as 1 Directory command , And create cascading directories 1/2/3/ The order of ? Complete... With one command
2. Several commands for viewing the application log ( Write two )
3. To execute sh Word of the file , Add attribute .
4.VI The save and exit command inside is
5. The command is used to check how much space the hard disk is occupied and how much space is left .
Thank everyone who reads my article carefully !!!
If you can use the following information, you can take it away directly :
1、 Self study development or test the necessary complete project source code and environment
2、 Test all templates in the work ( test plan 、 The test case 、 Test report, etc )
3、 Classic interview questions for software testing
4、Python/Java Automation test practice .pdf
5、Jmeter/postman Interface test full set of video acquisition
I personally sorted out some technical materials I have sorted out in my software testing career in recent years , contain : e-book , Resume module , Various work templates , Interview treasure , Self study projects, etc . You can call me if you need it. Thank you .
边栏推荐
- 剑指 Offer II 041. 滑动窗口的平均值
- pb9.0 insert ole control 错误的修复工具
- Codeforces Round #643 (Div. 2)——B. Young Explorers
- Redission源码解析
- Introduction to ADB tools
- Js中forEach map无法跳出循环问题以及forEach会不会修改原数组
- 神经网络与深度学习-5- 感知机-PyTorch
- Is it necessary for project managers to take NPDP? I'll tell you the answer
- [target tracking] |atom
- ROS problems (topic types do not match, topic datatype/md5sum not match, MSG XXX have changed. rerun cmake)
猜你喜欢
I don't know. The real interest rate of Huabai installment is so high
Voice of users | winter goes and spring comes, waiting for flowers to bloom -- on gbase 8A learning comprehension
Version 2.0 of tapdata, the open source live data platform, has been released
How to make the conductive slip ring signal better
Nacos microservice gateway component +swagger2 interface generation
Anaconda3 download address Tsinghua University open source software mirror station
ANSI / nema- mw- 1000-2020 magnetic iron wire standard Latest original
城市土地利用分布数据/城市功能区划分布数据/城市poi感兴趣点/植被类型分布
burpsuite
qt--將程序打包--不要安裝qt-可以直接運行
随机推荐
第七章 行为级建模
About snake equation (2)
微信小程序uniapp页面无法跳转:“navigateTo:fail can not navigateTo a tabbar page“
MySQL查询为什么没走索引?这篇文章带你全面解析
About snake equation (5)
给刚入门或者准备转行网络工程师的朋友一些建议
cv2读取视频-并保存图像或视频
Apache多个组件漏洞公开(CVE-2022-32533/CVE-2022-33980/CVE-2021-37839)
从Starfish OS持续对SFO的通缩消耗,长远看SFO的价值
静态路由配置全面详解,静态路由快速入门指南
Gbase observation | how to protect the security of information system with frequent data leakage
nmap工具介紹及常用命令
进程和线程的退出
用户之声 | 对于GBase 8a数据库学习的感悟
How to realize batch control? MES system gives you the answer
Codeforces Round #649 (Div. 2)——A. XXXXX
保姆级教程:Azkaban执行jar包(带测试样例及结果)
MySQL查询为什么没走索引?这篇文章带你全面解析
QT -- package the program -- don't install qt- you can run it directly
In depth analysis of ArrayList source code, from the most basic capacity expansion principle, to the magic iterator and fast fail mechanism, you have everything you want!!!