Summary of self-examination in October 2020

table of Contents

Overview

Learning perception:


The exciting self-examination is over again,

This time I took the three subjects of C++ programming, introduction to data structure, and information system development and management. Let me give a general evaluation of these three subjects.

Overview

C++ is a programming language that has not been touched before. It is a compiled, general, case-sensitive programming language that fully supports the object-oriented development model. It is the inheritance of C language. Although most of the syntax of C language is kept in C++, the program structure of C++ is very different from that of C language (one is object-oriented and the other is process-oriented). There are many new knowledge points such as pointers, stream classes, class templates and function templates.

The introduction to data structure is generally not difficult, because the knowledge inside is related. The logical structure includes: set, linear structure, tree structure, graph structure, storage structure includes sequential storage, chain storage, etc., and the algorithm has Insertion sorting, exchange sorting, selection sorting, merge sorting, etc., you must carefully understand these algorithms because you can improve your programming level.

Information system development and management    this book mainly talks about project development to be standardized, process-oriented, and engineering. The specific content includes overall planning, system planning, system analysis, system design, system implementation, operation and maintenance, and system evaluation. It is necessary to deeply understand what is being done at each stage, what methods are used, results, and so on.

Learning perception:

Plan time reasonably

Find a like-minded learning partner

Reasonable allocation of time between reading and making papers

Be proactive in group discussions

Make a summary and review the textbook before the exam

 

Guess you like

Origin blog.csdn.net/promsing/article/details/109148423