


An efficient learning method for top scorers in the college entrance examination. An introductory learning method for PHP novices.
I often see some friends in some forums and QQ groups asking "how to learn PHP well, how to learn xxx language well", but the most common answer from others is: the "simplest" start. This simplicity may not be simple at all, haha. Now I would like to share the study methods for the top scorers in the college entrance examination. It is for reference only. Don’t blindly use other people’s study methods.
In addition to being smart, those top scorers in the college entrance examination must also have their own unique and efficient learning methods. Below, the New College Entrance Examination Network summarizes 5 efficient learning methods.
1. Develop a good habit of previewing
To develop the habit of previewing, when previewing, first read through the textbook in chapter units to understand the general content, such as illustrations, titles or explanations under the illustrations, footnotes at the bottom of each page, etc. omission. Use a pencil to mark the parts you cannot understand. Listen to the teacher's explanation during class or discuss with your classmates before class. For chapters with complicated knowledge points, you can make a chart on paper and list the knowledge points hierarchically. It is best to develop the habit of studying ahead of time: usually at the beginning of a semester, or even during the winter and summer vacations before the start of the semester, borrow textbooks and preview them.
2. You must keep up with the teacher’s pace when listening to classes
You must keep up with the teacher’s pace when listening to classes. Actively answering questions in class is a very good way to exercise. The original passive listening to lectures has become an active and interactive activity. Two-way communication is conducive to the absorption of knowledge. It is very useful to ask a few "whys" during class and use active dialectical thinking to learn. You should also reflect on your own problems after class.
3. Review knowledge in a planned way
Wait until your knowledge is relatively complete before reviewing. Focus on what you don’t know. Don’t memorize all the knowledge by rote, but grasp each knowledge point. The essence of the problem, but don’t forget to consolidate the knowledge you already know.
"Three times review method": review the things of the day after doing homework every night; review the things learned this week on the weekend; and arrange more time to review the subjects in which you are weak before the exam. The four-step review method of "Table of Contents - Content - Association - Table of Contents".
4. Good at summarizing and summarizing
Usually speaking, summarizing includes two aspects: one is classroom summarization, and the other is wrong question summarization. When summarizing, you can do it by chapters and knowledge blocks.
Each subject has a notebook specifically for summarizing. For Chinese, it mainly summarizes famous poems, idioms and sayings, content words in classical Chinese, function words, types of wrong sentences, composition writing methods, etc. Mathematics, physics and chemistry can summarize the entire knowledge structure diagram and clearly remember the formulas learned. English can be classified according to grammar, vocabulary and other questions.
5. Learn flexible memory methods
Set the time for memorization at night, and do it alone without interference. It is best to recall what you have memorized before going to bed, because no new information is input to the brain during sleep, so the things you just memorized will not be disturbed.
You can’t eat until you become fat at one time, memorize quantitatively every day; cross-change subjects to memorize, the effect is good. You can also use different methods to memorize: repetition memory method, contrastive memory method, inductive memory method, associative memory method, etc. Choose different methods according to different subjects.
Article from: https://www.hfplg.com/book/1442.html

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.
