It's hard to find a test interview on the Internet

Source: Internet
Author: User

1 Operating System
1.1 windows
1. How to install Internet Information Service (IIS) in win2003 )?
2. How can I print and save the test directory folder and sub-directory under the D Drive Using commands under DOS?
3 what is the difference between a process and a thread?
1.2 Linux
(1) The network address of the LAN is 192.168.1.0/24, and the gateway address connecting the LAN to other networks is 192.168.1.1.
When the host 192.168.1.20 accesses the network of 172.16.1.0/24, the correct route is set.
A route add-net 192.168.1.0 GW 192.168.1.1 netmask 255.255.255.0 metric 1
B route add-net 172.16.1.0 GW 192.168.1.1 netmask 255.255.255 metric 1
C route add-net 172.16.1.0 GW 172.16.1.1 netmask 255.255.255.0 metric 1
D route add default 192.168.1.0 netmask 172.161.1 metric 1
(2) The following information lists the processes that are running in a system using the PS-Ef command. A process is a super service running on the Internet.
It monitors connections on Internet sockets and calls an appropriate server to process received information.
A root 1 4.0 0.0 344 204? S init
B Root 2 0.0 0.1 2916 1520? S/sbin/Getty
C root 3 0.0 0.2 1364 632? S/usr/sbin/syslogd
D root 4 0.0 1344 1204? S/usr/sbin/inetd
XXX company _ technical center_test_interview questions for junior test engineers
(3) If the file named mayingbao is modified with chmod 551 mayingbao, its permission is.
A-rwxr-XR-x B-rwxr -- r -- c-r -- d-r-XR-X-x
(4) compress the home/stud1/mayingbaodirectory and generate the mayingbao.tar.gz file.
Save the file to the/home directory to implement the tar command format for this task.
2 Databases
(1) the relationship between the following known scores is shown in 1.
Execute the SQL statement:
Select count (distinct student ID)
From score
Where score> 60
The number of tuples in the query result is ()
Score
Student ID course number score
S1 C1 80
S1 C2 75
S2 C1 null
S2 C2 55
S3 C3 90
Figure 2
A 1 B 2 C 3 D 4
(2) In SQL, the command to delete a table is ()
A Delete B drop C clear d remore
(3) write out the name field and email field for querying student_info_table with the name "Pony.
3 Programming
(1) write the following program output results
# Include <stdio. h>
Main ()
{
Int A, B, C, D;
A = 10;
B = A ++;
C = ++;
D = 10 * A ++;
Printf ("B, c, d: % d, % d, % d", B, c, d );
Return 0;
XXX company _ technical center_test_interview questions for junior test engineers
}
(2) Do ...... While and while ...... What is the difference between do and do?
The previous cycle is used to judge again, and the latter is used to judge again.
(3) Compile a program to calculate the sum of all integers between 1 and 100?
(C/Vb/C ++/C #/Java can be used in programming languages .)
Four Networks
(1) Describe the next complete HTTP Communication Process?
(2) differences between cookies and sessions
(3) which of the following statements about the TCP/IP transport layer protocol is false?
A. the TCP/IP transport layer defines TCP and UDP protocols.
B. TCP is a connection-oriented protocol.
C. UDP is a connectionless protocol.
D. Both UDP and TCP support reliable byte stream transmission.
5. Data Structure
(1) query all records of handsome guys over the age of 20 and beautiful women over the age of 18 in the file.
Parts are ()
A (Gender = "male") or (age> 20) or (Gender = "female") or (age> 18)
B (Gender = "male") or (age> 20) and (Gender = "female") or (age> 18)
C (Gender = "male") and (age> 20) or (Gender = "female") and (age> 18)
D (Gender = "male") and (age> 20) and (Gender = "female") and (age> 18)
(2) write the Bubble sorting algorithm?
(C/Vb/C ++/C #/Java can be used in programming languages .)
Test 6
(1) which of the following statements about Alpha testing are true?
A Alpha test requires the participation of user representatives
User representatives are not required for the B Alpha test.
C alpha testing is a type of system testing.
D Alpha testing is a type of acceptance testing.
(2) Definition of software quality
XXX company _ technical center_test_interview questions for junior test engineers
Software A's functionality, reliability, ease of use, efficiency, maintainability, and portability
B. Ability to meet user requirements
C. maximize user satisfaction
D. Sum of software features and ability to meet requirements and potential user needs
(3) software testing objects include ()
A target program and related documents
B Source program, Target Program, data and related documents
C. Target Program, operating system, and platform software
D source program and Target Program
(4) The software testing type is divided by the development phase ()
A requirement testing, unit testing, integration testing, verification testing
Unit B testing, integration testing, validation testing, system testing, and Acceptance Testing
Unit C testing, integration testing, verification testing validation testing, and Acceptance Testing
D. debugging, unit testing, integration testing, and user testing
(5) Based on the specification descriptions given below, use the equivalence class division method to provide sufficient test cases.
"A program reads three integers. Consider the three values as three edges of a triangle. This program needs to print the information,
It indicates whether the triangle is of an equal waist or an equal edge ranging from three sides ."
(6) A black box test should be performed on the software of an automatic beverage vending machine. The specification of the software is described as follows:
"There is a vending machine software that handles boxed drinks at a price of 1 RMB 5 cents. If you invest 1 RMB 5 cent coin, press "yes"
Click the Le, Sprite, or black tea button to bring out the corresponding drinks. If you have invested 2 Yuan coin, you can withdraw it when you send a drink.
There are also five coins ."
(1) Establish the cause and effect of the software by using the causal method;
(2) design all test cases for testing the software.
(7) to test a program with a length of 100,000 instructions, the recorded data is as follows:
At the beginning of the test, the number of errors found in úis 0;
After 160 hours of testing, 100 errors were corrected. At this time, MTTF = 0.4 hours;
After another 160-hour test, the operator corrected 300 errors in total. At this time, MTTF = 2 hours;
(1) estimate the total number of errors inherent in the program;
(2) How long does it take to test and debug the program for MTTF to reach 10 hours?
(3) provides the function relationship between MTTF and test time t.
(8) design the least test cases to implement conditional coverage based on the following program snippets
If (A> 1) AND (B = 0) Then X = x/
If (A = 2) or (x> 1) Then X = x + 1
Printf ("x = % d
", X)
(9) Do you need to draw the most reasonable defect handling flowchart?
XXX company _ technical center_test_interview questions for junior test engineers
(10) What do you think should be tested for C/S and B/S software?

Let's write the answer !!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.