It's uncomfortable, 158 days to prepare for ByteDance, a negligence made me waste all my previous efforts...

The interview is the way of internal referral, because the pass rate of the resume of internal referral is much higher than other methods; my internal referral method is: contact a university senior who I work in ByteDance.

For online interviews, there is an online text editor, similar to leetcode, which can be programmed online. However, I was a little nervous, video interview website, video conferencing tools, please do not prepare to confirm that your network environment is good before the interview (the laptop ran out of power in the middle and I didn’t notice it), maybe it’s psychological factors that affect the quality of my interview. As a result, many simple questions were not answered well, and we still need to accumulate more at ordinary times so that we will not show timidity in the interview. Share the question with everyone.

interview questions

  • The idea of ​​the written test questions and what is the black box and white box.
  • Data structure questions, here is a question about a double-linked list.
  • TCP three-way handshake and how to look at it.
  • Stress tests, stability tests, databases.
  • The number of occurrences of a character in a string.
  • Given a linked list, delete the last nth node.
  • Deleting a node is nothing more than traversing the linked list to find the node in front of that node, and then changing the next point.
  • First traverse it to get its length, then subtract n from the length to get the position of the node to be deleted, and then traverse to the previous position of the node.
  • The process of testing.
     

Summary of your interview

The preparation is not enough, whether it is because of the nervousness of the video or the preparation of strength, the performance is not complete enough.
In the process of answering, I was too low self-esteem, which led to a vicious circle of incoherence.
If the individual takes the initiative to be humble, it will also trouble the interviewer.

How to Prepare for a Software Testing Interview

1. Prepare resumes (stepping stones, programmers who can't package resumes can only go to outsource)

Programmers must put more effort into their resumes, especially some words must be carefully considered, such as the difference between "proficient, familiar, and understanding" must be clearly distinguished, otherwise you will be digging a hole for yourself.

2. Understand the interview company, do your homework, and know what to ask

I also made the following summary of the interview points of the first-tier Internet companies:

Alibaba, Baidu, Tencent

img

 Bytedance, Meituan, JD.com

img

 3. Sort out the knowledge system and learn to infer other cases from one instance

In fact, sorting out the knowledge system is the easiest thing, but many development noobs are always at a loss. In fact, from the second point of the big factory interview point, we can summarize and sort out what we should learn and master. My method is "dachang interview points" + "working years" to sort out my next learning and development roadmap.

After that, you need to carry out targeted learning according to the key points on the road map. During the learning process, learn to draw inferences, learn to write notes, and make summaries.

Here I share some of my personal notes:

This article is limited to space, so only some screenshots of the document are shown. I have already organized the complete software testing learning document for you. Friends who need it have a way to get it at the end of the article!

  •  Test theory (test basis + requirements analysis + test model + test plan + test strategy + test case, etc.)
  •  Linux (Linux basics + Linux exercises)
  •  MySQL (basic knowledge + query practice + summary of classic interview questions for Wannian student table + real questions for database enterprises)
  •  web testing
  •  API testing
  •  app testing
  •  management tools
  •  Python basics (Python basics + programming questions + collections + functions + Python features, etc.)
  •  Selenium related
  •  Performance Testing
  •  LordRunnerRelated
  •  computer network
  •  composition principle
  •  Data Structures and Algorithms
  •  logic problem
  •  human Resources

1. Fundamentals of software testing

  • What are the steps of software testing?
  • How to record test script?
  • Test methods that should be considered for how to test
  • How to estimate the testing effort?
  • The problem with test design
  • When an error occurs during the testing process, what are the solutions?
  • Problems with test execution
  • Goals of Test Evaluation
  • How to improve the test?
  • Advantages and disadvantages of C/S mode
  • Advantages and disadvantages of B/S mode

insert image description here

 Two, Linux

  • What is the difference between grep and find? What are the uses of grep?
  • View IP address?
  • Create and delete a multilevel directory?
  • Find the haha.txt file in the current user's home directory?
  • How to query the tomcat process and kill the process, and write linux commands?
  • View log files dynamically?
  • Command to view system hard disk space?
  • View all ports of the current machine listen?

insert image description here

 3. Python

  • Count the number of lines of code in the python source code file, remove comments, blank lines, and output?
  • Python calls cmd and returns the result?
  • Bubble Sort
  • How many different and non-repeating three-digit numbers can be composed of the four numbers 1, 2, 3, and 4?
  • Please use python to print out symmetric numbers within 10000 (symmetry number characteristics: numbers are symmetrical left and right, such as: 1, 2, 11, 121, 1221, etc.)
  • Given an integer N and a number K of 0-9, it is required to return the number of occurrences of the number K in 0-N
  • Determine how many prime numbers there are between 101-200, and output all prime numbers
  • A function that inputs a triangle, whether the output can form a triangle after input, and the type of triangle, please use the equivalence class-partition method to design a test case

insert image description here

  4. MySQL

  • Which Mysql engine do you use, and what are the differences between each engine?
  • How to optimize the query command?
  • Database optimization?
  • How does Sql injection occur and how to prevent it?
  • What is the difference between NoSQL and relational databases?
  • What is the most basic difference between the essence of MySQL and MongoDB
  • How to implement paging in Mysql database?
  • Operation of Mysql database?
  • Optimizing the database? Improving the performance of the database?
  • What is data integrity?

insert image description here

  5. Web

  • What is the difference between web testing and app testing?
  • WEB test environment construction and test method
  • WEB Testing Tutorial
  • Key points and basic methods of WEB testing
  • Web test page summary

insert image description here

6. Interface Test

  • what is an interface
  • If the module requests http to https, how should the test plan be formulated and modified?
  • What does the commonly used HTTP protocol debugging agent I have? Explain in detail the setting process of capturing the HTTPS protocol?
  • Describe the hierarchical structure of the TCP/IP protocol and the important protocols in each layer
  • jmeter, the response result of an interface is as follows:
  • How to clean up the garbage data generated by the interface
  • How to deal with reliance on third-party interfaces
  • Where do you put the test data?
  • What is data-driven and how to parameterize it?

insert image description here

7. Performance test

  • What do you think is the purpose of performance testing? What is the key to doing a good job in performance testing?
  • From what angles are server-side performance analysis performed?
  • How to understand stress testing, negative testing and performance testing?
  • How to judge whether there is a memory leak and the indicators of concern?
  • Describe the causes of memory leaks in the software and how to check them. (It can be described in combination with a development language)
  • Briefly describe what is value transfer, what is address transfer, and what is the difference between the two?
  • What is a system bottleneck?

insert image description here

 Eight, selenium

  • How to build an automated testing framework?
  • How to design automated test cases:
  • How does webdriver open and exit a browser?
  • What is an automated testing framework?
  • What is Selenium and what are the popular versions?
  • How do you start Selenium RC from the command line?
  • On my machine port 4444 is not free. How can I use another port?
  • What is Selenium Server and how is it different from Selenium Hub?
  • How do you connect to the database from Selenium?
  • How do you verify that an object exists on multiple pages?
  • What is the difference between using single and double slashes in XPath?
  • How to write user extensions for SeleniumIDE/RC?
  • How to verify the existence of an element after the page loads successfully?
  • What do you know about Selenium Grid? What features does it provide?
  • How to start Selenium server from your Java Class?
  • What are the verification points in Selenium?
  • What is XPath? When should I use XPath in Selenium?

insert image description here

  9. Computer and Network

  • A computer with IP 192.168.10.71 subnet mask 255.255.255.64 with 192.168.10.201...
  • Please briefly describe the concepts of DNS, active directory, and domain.
  • What does 10M broadband mean? What is the theoretical download speed?
  • What is an IP address?
  • What are the seven layers of the OSI network model?
  • What is the difference between TCP and UDP?
  • Which protocol layer does HTTP belong to?
  • What is the difference between HTTP and HTTPS?
  • What is the difference between cookies and sessions?
  • What is the difference between an HTTP get request and a post request?
  • What is the difference between HTTP1.0 and HTTP1.1
  • TCP connection establishment process, and disconnection process?
  • The process of the client using DHCP to obtain an IP?
  • Write down the network address and broadcast address of a network segment?

insert image description here

insert image description here

 10. Human resources

  • What is your testing career progression? What do you think are the advantages of doing testing?
  • When you are looking for a job, what is the most important consideration?
  • Why should we admit you?
  • Please tell us about your personal best feature.
  • What qualities and skills should a test engineer possess?
  • Also, how do you ensure the quality of the software, that is to say, how do you think the quality of the software can be guaranteed to the greatest extent?
  • Why did you choose to test this line?
  • If I hire you, what contribution can you bring to the department?

insert image description here

Document acquisition method:
This document and video material should be the most comprehensive and complete preparation warehouse for friends who want to engage in [software testing]. This warehouse also accompanied me through the most difficult journey, and I hope it can also help you! All of the above can be shared, just click below to enter the group to receive it yourself, thank you for taking it away.
 

Supongo que te gusta

Origin blog.csdn.net/nhb687095/article/details/130485402
Recomendado
Clasificación