Auto saved by Logseq
This commit is contained in:
parent
d025a287c4
commit
23d3c50ecb
File diff suppressed because it is too large
Load diff
|
@ -769,7 +769,9 @@
|
|||
- Integer
|
||||
- Digits
|
||||
- If calculating integer part, from up to down :-> LSB to MSB
|
||||
id:: 648890c8-1e5d-4b62-a3f5-0976b8d04aad
|
||||
- fractional part is the reverse, :-> from MSB to LSB, since we are multiplying.
|
||||
id:: 648890dc-9ad9-4f36-913b-1884e5f77df7
|
||||
- DONE LSB, MSB
|
||||
- DONE ==2's complement==
|
||||
:LOGBOOK:
|
||||
|
@ -874,7 +876,7 @@
|
|||
- Transforming bit, byte, kb, mb, gb
|
||||
- LATER 看数据库 {{renderer :todomaster}}
|
||||
id:: 647bf024-fa40-4786-9770-e16da8b57f0f
|
||||
deck:: 2023t1/db
|
||||
deck:: 2023t1/database
|
||||
- DONE 课件
|
||||
collapsed:: true
|
||||
:LOGBOOK:
|
||||
|
@ -893,27 +895,46 @@
|
|||
- LATER Block 1
|
||||
- DONE DBMS
|
||||
- Database is :-> a shared collection of logically related data (and a description of this data), designed to meet the information needs of an organization.
|
||||
id:: 648954b0-3c6a-4656-a481-ce7d4a34396f
|
||||
- Table :-> A collection of related data organized into rows (also called records) and columns (also called fields).
|
||||
id:: 6483f465-1724-4794-880d-c69316865a35
|
||||
- Row/Record :-> A single set of data in a table, representing a specific instance or entity.
|
||||
id:: 6483f465-858c-434d-b887-28ebde0add8a
|
||||
- Column/Field :-> A specific attribute or data element within a table.
|
||||
id:: 6483f465-ef00-452c-ba43-42e476efb4a4
|
||||
- Primary Key :-> A unique identifier for each row/record in a table. It ensures the integrity and uniqueness of the data.
|
||||
id:: 648954e4-a846-41d7-9104-1a98090ba1a5
|
||||
- Foreign Key :-> A field in one table that refers to the primary key in another table, establishing a relationship between the two tables.
|
||||
id:: 648954fa-c2ed-4545-8fb5-5acf313ffeb3
|
||||
- Relationship :-> The connection between tables based on common data values, such as primary and foreign keys.
|
||||
id:: 648954fa-919c-4d42-9713-d4029563427a
|
||||
- Normalization :-> The process of organizing and structuring a database design to eliminate redundancy and improve data integrity.
|
||||
id:: 648954fa-ca27-46a4-95cd-ce40ba478e28
|
||||
- Index :-> A data structure that improves the retrieval speed of data from a database table by creating a quick reference to the location of the data.
|
||||
id:: 648954fa-1d1e-41a4-a3a8-a2006331e755
|
||||
- Query :-> A request for data or information from a database, usually written using Structured Query Language (SQL).
|
||||
id:: 648954fa-bd10-406c-91f5-acf7059e1ea8
|
||||
- SQL (Structured Query Language) :-> A programming language used to manage and manipulate relational databases. It allows you to create, modify, and retrieve data from databases.
|
||||
id:: 648954fa-f3b3-477f-80b5-1edb23aeac28
|
||||
- CRUD Operations :-> An acronym for Create, Read, Update, and Delete operations, which are the basic operations used to manage data in a database.
|
||||
id:: 648954fa-a542-42aa-9af5-ad488de89bc0
|
||||
- ACID (Atomicity, Consistency, Isolation, Durability) :-> A set of properties that guarantee the reliability and integrity of database transactions.
|
||||
id:: 648954fa-8546-4953-ad25-152704b36367
|
||||
- Data Integrity :-> The accuracy, consistency, and reliability of data stored in a database.
|
||||
id:: 648954fa-1e52-4783-b27a-084996c3c17a
|
||||
- Database Schema :-> The structure or blueprint of a database, defining the tables, fields, relationships, and constraints.
|
||||
id:: 648954fa-dd95-4899-9e2b-04d0095fe076
|
||||
- Database Management System (DBMS) :-> Software that provides an interface to interact with databases, managing their creation, modification, and retrieval.
|
||||
id:: 648954fa-fe5a-4d6d-82fd-81f87a3f1541
|
||||
- DONE basic concepts of Relational model
|
||||
- A data model :- > a graphical description of the
|
||||
components of database.
|
||||
- A relation, is :-> a two-dimensional table arranged in columns and rows.
|
||||
id:: 64895598-3ee8-42a3-a04d-4346fee53d5c
|
||||
- A relational database is :-> a collection of relations.
|
||||
id:: 648955a6-e6b3-48ce-9255-db49a7453c03
|
||||
- Candidate Key #flashcard
|
||||
id:: 64895751-ef8c-409c-90bb-330e738b5580
|
||||
- A set of attributes that uniquely identifies a tuple within a
|
||||
relation.
|
||||
- Uniqueness : In each tuple, candidate key uniquely identify
|
||||
|
@ -921,29 +942,37 @@
|
|||
- Irreducibility: No proper subset of the candidate key has the
|
||||
uniqueness property.
|
||||
- Primary Key #flashcard
|
||||
id:: 64895751-2a2e-42d9-a609-731983fd7cd8
|
||||
- Candidate key selected to identify tuples uniquely within
|
||||
relation.
|
||||
- Foreign Key #flashcard
|
||||
id:: 64895751-fe0f-47a0-9bb9-de150be41761
|
||||
- Attribute, or set of attributes, within one relation that
|
||||
matches candidate key of some (possibly same) relation.
|
||||
- Composite Key #flashcard
|
||||
id:: 64895751-cce6-4198-b70b-c1957c4f1ed1
|
||||
- A candidate key that consists of two or more attributes.
|
||||
- Recursive Relationship #flashcard
|
||||
id:: 64895902-2b94-43ca-9c0c-7a865b9d536c
|
||||
- Relationship type where same entity type participates
|
||||
more than once in different roles.
|
||||
- Multiplicity :-> number (or range) of possible
|
||||
id:: 64895b3d-8797-4145-b8eb-1f4185ff8acd
|
||||
occurrences of an entity type that may relate to a
|
||||
single occurrence of an associated entity type
|
||||
through a particular relationship.
|
||||
- Cardinality
|
||||
- Describes maximum number of possible relationship
|
||||
occurrences for an entity participating in a given
|
||||
relationship type.
|
||||
- Participation
|
||||
- Determines whether all or only some entity
|
||||
occurrences participate in a relationship.
|
||||
- Gives the minimum number for an entity occurrences
|
||||
participating in a given relationship type.
|
||||
![image.png](../assets/image_1686723218703_0.png)
|
||||
- Cardinality #flashcard
|
||||
id:: 648959dd-c537-43a4-8d7e-edfacb4008fc
|
||||
- Describes {{c1 maximum}} number of possible relationship occurrences for an entity participating in a given relationship type.
|
||||
id:: 648959c4-159e-45bf-9aa9-f574ed05f20f
|
||||
- Participation #flashcard
|
||||
id:: 648959dd-bd36-4fa2-8578-6c390c280a79
|
||||
- Determines whether all or only some entity occurrences participate in a relationship.
|
||||
- Gives the minimum number for an entity occurrences participating in a given relationship type.
|
||||
- Ternary relationship #flashcard
|
||||
id:: 64895b10-62f4-4712-912f-f8c8cdb5a7e8
|
||||
- a ternary relationship is not the same as three binary relationships!
|
||||
- LATER basic concepts associated with Entity-Relationship(ER) model.
|
||||
- LATER Forming sql queries
|
||||
collapsed:: true
|
1197
logseq/bak/pages/总复习2023t1/2023-06-14T06_31_28.182Z.Desktop.md
Normal file
1197
logseq/bak/pages/总复习2023t1/2023-06-14T06_31_28.182Z.Desktop.md
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,4 @@
|
|||
- [[总复习2023t1]] {{renderer :todomaster}}
|
||||
id:: 6482caf8-b133-4277-8030-38423ed98206
|
||||
- DONE [[Java]] {{renderer :todomaster}}
|
||||
collapsed:: true
|
||||
SCHEDULED: <2023-06-12 Mon>
|
||||
|
@ -155,85 +154,70 @@
|
|||
- DONE 整理错题
|
||||
deck:: 2023t1/Mao
|
||||
- 在 1978 年的关于真理标准问题的⼤讨论中,邓⼩平指出,关于真理标准问题的讨论实质就在于( {{c1 b}} ). #flashcard
|
||||
id:: 6486eb88-490a-45f2-b393-89192dd5ea52
|
||||
A.是否坚持⻢列主义、⽑泽东思想
|
||||
B.是否坚持实践是==检验真理==的唯⼀标准
|
||||
C.是否坚持解放思想、实事求是
|
||||
D.是否坚持中国共产党的领导
|
||||
- 创新包括各⽅⾯的创新,如理论创新、技术创新、制度创新等,其中在各项创新中处于先导地位的是 ( {{c1 b}})#flashcard
|
||||
extra:: 社会主义主打一个空想
|
||||
id:: 6486eba2-9d71-4e27-a8f8-96947c0beda6
|
||||
A.科技创新
|
||||
B.理论创新
|
||||
C.⽂化创新
|
||||
D.⽣产关系创新
|
||||
- id:: 6486ebb8-4319-4e33-a901-221546ac6b28 4. 党的思想路线的实质和核⼼是( {{c1 c}} )#flashcard
|
||||
A.⽣产关系适合⽣产⼒ B.理论联系实际
|
||||
C.实事求是 D.在实践中检验真理和发展真理
|
||||
- extra:: 三个有利于:改革得失
|
||||
id:: 6486ebbd-9c15-48d3-a273-aad64d4fadb2 5. 实事求是思想路线的根本体现是 ( {{c1 a}} )#flashcard
|
||||
A.尊重群众、尊重实践
|
||||
B.⼀切从群众中来
|
||||
C.解放思想
|
||||
D.“三个有利于”
|
||||
- 4.中国共产党在新⺠主主义⾰命领导权问题上有着深刻认识,党认为实现对⾰命的领导权的根本
|
||||
id:: 6486ebe6-ea17-4b3d-a855-1a992863e0e2
|
||||
保证是( {{c1 c}} )。 #flashcard
|
||||
A.动员全⺠开展武装⽃争 B.建⽴最⼴泛的⼈⺠统⼀战线
|
||||
C.加强中国共产党的建设 D.扩⼤⾰命的影响⼒和控制⼒
|
||||
- extra:: a: 抢国民党
|
||||
id:: 6486ebf2-991b-43fa-9baf-c2e94eec3230
|
||||
1. 建国初期我国社会主义国营经济建⽴的主要途径是( {{c1 a}} )#flashcard
|
||||
A. 没收官僚资本 B. 没收帝国主义在华企业
|
||||
C. 剥夺封建地主阶级的财产 D. 赎买⺠族资产阶级的财产
|
||||
- extra:: 学苏联
|
||||
id:: 6486ebf5-ecb6-49f4-a22e-156de99c617c 2. 20 世纪 50 年代,⽑泽东提出,中国⼯业化道路的问题主要是指 ( {{c1 c}} ) #flashcard
|
||||
A.优先发展重⼯业的问题
|
||||
B.将落后的农业国建设成为先进的⼯业国的问题
|
||||
C.重⼯业、轻⼯业和农业的发展关系问题
|
||||
D.建⽴独⽴的⽐较完整的⼯业体系问题
|
||||
- extra:: b 反右运动 c 文革 d 从来没有
|
||||
id:: 6486ec08-5315-4ddc-ad39-f87b1acf36ec 3. 社会主义改造基本完成后,我国国家政治⽣活的主题是 ( {{c1 b}} ) #flashcard
|
||||
A.集中⼒量发展社会⽣产⼒
|
||||
B.正确处理⼈⺠内部⽭盾
|
||||
C.进⾏思想战线上的社会主义⾰命
|
||||
D.加强社会主义⺠主与法制建设
|
||||
- extra:: 创新性方法:学苏联自由派
|
||||
id:: 6486ec0b-b934-4f4a-b0ff-31c39c44e74d 4. 我国在资本主义⼯商业进⾏社会主义改造实践中⼀个创新性办法是对⺠族资产阶级( {{c1 a}} ) #flashcard
|
||||
A.和平赎买
|
||||
B.剥夺⽣产资料 C.公私合营
|
||||
D.⽣活上给出路
|
||||
- extra:: 十大关系指出要多快好省建设社会主义基本思想
|
||||
id:: 6486ec0e-3678-4e3c-95cc-a1eae493c278 5. ⽑泽东在《论⼗⼤关系》中提出我国社会主义建设必须围绕的⼀个基本⽅针是 ( {{c1 c}} ) #flashcard
|
||||
A.发展⽣产⼒,把我国尽快地从落后的农业国变为先进的⼯业国
|
||||
B.正确处理⽆产阶级同资产阶级的⽭盾
|
||||
C.调动⼀切积极因素,为社会主义事业服务
|
||||
D.彻底消灭剥削制度,继续肃清反⾰命残余势⼒
|
||||
- 1.社会主义的**根本**原则是( {{c1 a}} ) #flashcard
|
||||
extra:: 根本原则
|
||||
id:: 6486f101-7de3-4d01-81fa-f33ca1ce5395
|
||||
A. 坚持以公有制为主体,实现共同富裕 B.扩⼤改⾰开放,增强综合国⼒
|
||||
C.实⾏按劳分配,改善⼈⺠⽣活 D. 不断发展⽣产,增加社会财富
|
||||
- id:: 6486f11d-fd1f-4050-b693-1d9e61525db2 3. 新时期的解放思想,关键就是对建设中国特⾊社会主义的⾸要的基本理论问题的重新认识,这就
|
||||
是( {{c1 d}} ) #flashcard
|
||||
A.什么是实事求是
|
||||
B. 怎样建设党
|
||||
C.什么是⻢克思主义
|
||||
D. 什么是社会主义
|
||||
- 5.坚持四项基本原则的核⼼是 ( {{c1 c}} ) #flashcard
|
||||
id:: 6486f139-1b96-4fa2-801d-e6af909be90c
|
||||
extra:: 共产党要独裁,别人都不行
|
||||
A.坚持社会主义道路 B.坚持⼈⺠⺠主专政
|
||||
C.坚持共产党的领导 D.坚持⻢列主义、⽑泽东思想
|
||||
- 3.社会主义初级阶段与新⺠主主义社会在经济基础⽅⾯的本质区别在于( {{c1 a}} )#flashcard
|
||||
extra:: d: 不谈这些
|
||||
id:: 6486f1db-f09d-45d5-982e-8a6d36c88ec0
|
||||
A. 是否存在多种所有制经济
|
||||
B. ⾮公有制经济是否成为社会主义经济的必要补充
|
||||
C. 国有经济是否起主导作⽤
|
||||
D. 公有制经济是否成为社会经济的主体
|
||||
- 2.正确处理改⾰、发展、稳定三者关系的重要结合点是( {{c1 b}} )#flashcard
|
||||
id:: 6486f20e-62ee-4487-855d-9fbfe95e4d8f
|
||||
A.把改⾰的⼒度、发展的速度和社会可以承受的程度统⼀结合起来
|
||||
B.不断改善⼈⺠⽣活
|
||||
C.在社会政治稳定中推进改⾰和发展
|
||||
|
@ -241,63 +225,52 @@
|
|||
- 5.经过 30 多年的对外开放,我国形成了全⽅位、多层次、宽领域的对外开放格局。所谓全⽅位就是
|
||||
指( {c1 a})#flashcard
|
||||
extra:: 全方位:a; 多层次:合作框架, 宽领域:跨越政治
|
||||
id:: 6486f242-b267-4c28-825a-62182abcfbfe
|
||||
A.不论对资本主义国家还是社会主义国家,对发达国家还是发展中国家都实⾏开放政策
|
||||
B. 根据各地区的实际和特点,通过经济特区、沿海开放城市、经济技术开发区等不同开放程度的
|
||||
各种形式,形成全国范围的对外开放
|
||||
C.⽴⾜我国国情,对国际商品市场、国际资本市场、国际技术市场和国际劳务市场的开放
|
||||
D. 坚持“引进来”和“⾛出去”相结合
|
||||
- 1.我国现阶段公有制的主要实现形式是( {{c1 a}} )#flashcard
|
||||
id:: 6486f2b8-2ef5-461f-a6da-6dcae1737aa8
|
||||
extra:: b: 农村银行
|
||||
A. 股份制
|
||||
B.股份合作制 C.租赁、承包制
|
||||
D.国家独资经济
|
||||
- id:: 6486fb7d-2914-45c7-99a3-81afc94e8c1a 3. 国有经济在国⺠经济中的主导作⽤主要表现在 ( {{c1 c}} ) #flashcard
|
||||
A.国有资产在社会总资产中占有量的优势
|
||||
B.国有经济能控制垄断性⾏业
|
||||
C.国有经济对国⺠经济的==控制⼒==
|
||||
D.国有经济在国⺠经济中占主体地位
|
||||
- extra:: 领导利益优先
|
||||
id:: 6486fb9c-3ec3-4817-a455-38bfcc043e24 4. 在收⼊分配过程中,⽆论是⿎励⼀部分地区、⼀部分⼈先富起来,还是注重社会公平,其实质都
|
||||
是( {{c1 b}} ) #flashcard
|
||||
extra:: 领导利益优先
|
||||
id:: 6486fb9c-3ec3-4817-a455-38bfcc043e24
|
||||
A.维护最⼴⼤⼈⺠的根本利益 B.如何妥善协调各⽅⾯的利益关系问题
|
||||
C.兼顾不同⽅⾯群众的利益 D.效率优先、兼顾公平
|
||||
- 1.新⺠主主义⾰命初期,⽑泽东⽐较了中外资产阶级⾰命的性质后,提出中国⾰命胜利后,应该建⽴的国家政权形式是 ( {{c1 b}} ). #flashcard
|
||||
extra:: 共产党约等于革命民众
|
||||
id:: 6486fbcf-fce9-47eb-9471-93bb3fdbca43
|
||||
A. ⼈⺠⺠主专政的国家
|
||||
B. 各⾰命⺠众合作统治的国家
|
||||
C. ⺠主联合政府的国家
|
||||
D. 以⼯农为主的⼯农⺠主政权
|
||||
- 2.中国共产党和各⺠主党派合作的政治基础是 ( {{c1 c}} ). #flashcard
|
||||
extra:: 四项基本原则不允许争议,指“社会主义”,“民主”,“共产党独裁”,“马列毛思想”不允许反对
|
||||
id:: 6486fc44-9b33-4eb1-bbc0-fc00aa42ed6c
|
||||
A. 中国共产党和各⺠主党派全作的政治基础是
|
||||
B. 遵循“⻓期共存,互相监督,肝胆相照,荣辱与共”的⽅针
|
||||
C. 坚持四项基本原则
|
||||
D. 中国共产党是执政党,⺠主党派是参政党
|
||||
- 5.社会主义⺠主政治的**本质**是 ( {{c1 a}} ). #flashcard
|
||||
id:: 6486fcfb-2262-48e4-96dc-24b0ca4087e3
|
||||
extra:: 红二代当家作主最重要
|
||||
A. ⼈⺠当家作主
|
||||
B. ⼈⺠⺠主专政
|
||||
C. ⼈⺠代表⼤会制度
|
||||
D. ⼈⺠参与国家管理
|
||||
- extra:: 共产党最爱吹的金句
|
||||
id:: 6486fe1f-1d2e-46de-8616-a9bb174c3ade 4. 社会主义道德建设的核⼼是( {{c1 d}} ). #flashcard
|
||||
A. 爱国主义
|
||||
B. 集体主义
|
||||
C. 社会主义
|
||||
D. 为⼈⺠服务
|
||||
- id:: 6486fe3b-fd24-4e3f-980d-d02c66e3fe18 5. 社会主义道德建设的核⼼是( {{c1 a}} ). #flashcard
|
||||
A. 为⼈⺠服务
|
||||
B. 集体主义
|
||||
C 诚实可信
|
||||
D 爱国主义
|
||||
- id:: 64870181-4942-41c3-9f04-54ccd35a73ad
|
||||
1. 社会主义和谐社会的核⼼价值是( {{c1 d}} ). #flashcard
|
||||
A. 以⼈为本
|
||||
B. 以⺠为本
|
||||
|
@ -305,80 +278,67 @@
|
|||
D 公平和正义
|
||||
- 2 我国社会保障制度的基本⽬标是( {{c1 a}} ). #flashcard
|
||||
extra:: 竟然是和其他所有国家一样
|
||||
id:: 648701b2-ad29-4bd5-9160-bcf973aaeb51
|
||||
A. 保证⼈们最基本的⽣活需要
|
||||
B. 使劳动者⽣活⽔平不断提⾼
|
||||
C. 保证劳动者充分就业
|
||||
D. 实现共同富裕
|
||||
- extra::
|
||||
id:: 648702a3-ce36-474c-8427-ba505b748de2 5. “⼗⼀五”规划根本⽬的是以⼈为本,执政为⺠,其含义( {{c1 c}} ). #flashcard
|
||||
A. 不断推进⼈的全⾯发展
|
||||
B. 不断推进共同富裕
|
||||
C. 不断满⾜⼈⺠的物质⽂化⽣活需要
|
||||
D. 不断创造共同富裕的物质基础
|
||||
- extra:: 因为是假想敌,所以想要统一
|
||||
id:: 648702cb-b4d4-470c-b1c3-187aa64ba582 2. 台湾问题的核⼼是( {{c1 a}} ). #flashcard
|
||||
A. 祖国统⼀
|
||||
B. ⼀国两制
|
||||
C. ⼀国两政府
|
||||
D. “三通”
|
||||
- id:: 6487034e-025b-4a2e-9bee-ba856180c7cd
|
||||
1. 和平与发展是时代的主题,和平与发展的核⼼问题是( {{c1 a}} ). #flashcard
|
||||
A. 南北问题
|
||||
B. .维护世界和平问题
|
||||
C. 反对霸权主义、强权政治问题
|
||||
D. 建⽴国际经济政治新秩序问题
|
||||
- id:: 648704bb-1b44-4b7a-9b56-4f8ee1e102f0 4. 中国外交政策的基本**⽬标**是( {{c1 b}} ). #flashcard
|
||||
A. 提⾼中国的国际地位
|
||||
B. 维护世界和平,促进⼈类共同繁荣和发展
|
||||
C. 反对霸权主义和强权政治
|
||||
D. 实现全⼈类的解放
|
||||
- extra:: 是全球的南北
|
||||
id:: 648704ff-5743-4233-9a16-3c196737e5aa
|
||||
1. 和平与发展是时代的主题,**和平与发展**的核⼼问题是( {{c1 a}} ). #flashcard
|
||||
A. 南北问题
|
||||
B. .维护世界和平问题
|
||||
C. 反对霸权主义、强权政治问题
|
||||
D. 建⽴国际经济政治新秩序问题
|
||||
- extra:: 美国=霸权主义,反对美国来维护世界和平
|
||||
id:: 64870507-34f9-422d-b543-727494bcc448 3. 当前维护世界和平的根本途径是( {{c1 c}} ). #flashcard
|
||||
A. 实⾏有效裁军和军控
|
||||
B. 发挥联合国的维和作⽤
|
||||
C. 反对霸权主义和强权政治
|
||||
D. 加强国际⼲预
|
||||
- extra:: 民族资产阶级最后被收购了
|
||||
id:: 64870715-f684-48d8-894c-ad2bddd5f912
|
||||
1. 中国新⺠主主义⾰命时期的统⼀战线包含着两个联盟。其中基本的、主要的联盟是( {{c1 b}} ). #flashcard
|
||||
A. ⼯⼈阶级同城市⼩资产阶级的联盟
|
||||
B. 以⼯农联盟为主体的⼯⼈阶级同农⺠、⼩资产阶级等其他劳动⼈⺠的联盟
|
||||
C. 以⼯农联盟为主体的⼯⼈阶级同农⺠、⼩资产阶级和⺠族资产阶级的联盟
|
||||
D. ⼯⼈阶级同可以合作的⾮劳动⼈⺠的联盟
|
||||
- extra:: 共产党你是会恶心人的
|
||||
id:: 64870745-dadb-467b-a90c-33a99cb70f54 3. 我国新时期爱国统⼀战线从根本上说,是( {{c1 b}} ). #flashcard
|
||||
A. 爱国主义性质的
|
||||
B. 政治联盟性质的
|
||||
C. 社会主义性质的
|
||||
D. ⼈⺠⺠主性质的
|
||||
- extra:: 硬背吧
|
||||
id:: 648707a6-6088-409d-a3d1-5666d23c5af7 4. 新时期我国爱国主义的主题是( {{c1 a}} ). #flashcard
|
||||
A. 建设有中国特⾊社会主义
|
||||
B. 实现国家统⼀
|
||||
C. 加强⺠族团结
|
||||
D. 增强⼈⺠凝聚⼒
|
||||
- extra:: 重点是体制
|
||||
id:: 648707f5-4cc3-43f4-9709-34f99e05481e
|
||||
1. ⼗六届四中全会指出,提⾼党的执政能⼒的核⼼是( {{c1 d}} ). #flashcard
|
||||
A. 加强党的领导
|
||||
B. 改善党的领导体制
|
||||
C. 建设⾼素质的⼲部队伍
|
||||
D. 保持党和⼈⺠群众的⾎⾁关系
|
||||
- extra:: 共产党纯变态
|
||||
id:: 648708c8-b45f-48b3-bb42-4dff84cbea23 3. 政党区别于其他政治团体的根本标志是( {{c1 a}} ). #flashcard
|
||||
A. 政党是阶级⽃争发展到⼀定历史阶段的产物
|
||||
B. 政党同国家政权紧密联系
|
||||
C. 政党有⾃⼰的纲领
|
||||
D. 政党有⾃⼰的奋⽃⽬标
|
||||
- id:: 6487090c-61e8-44ed-81a4-f3e07e1a8731 4. ⼀个政党在社会历史进程中是否起促进作⽤,取决于该党是否( {{c1 b}} ). #flashcard
|
||||
A. 取得执政地位
|
||||
B. 代表先进⽣产⽅式
|
||||
C. 维护⽆产阶级利益
|
||||
|
@ -698,54 +658,41 @@
|
|||
- DONE 看 block4
|
||||
deck:: 2023t1/Circuits
|
||||
- Buses #flashcard what is it? connection types?
|
||||
id:: 6488641f-9ec8-4732-9f02-c4aeb2367d68
|
||||
- Set of two or more electrical conductors representing a
|
||||
binary value
|
||||
- Often more than just a one-to-one connection
|
||||
- Data Storage Devices
|
||||
- Random Access: #flashcard Access parallel? Access time? address length? two categories of random access?
|
||||
id:: dba98f43-3f8b-463d-81c5-c72ab1192ec8
|
||||
- All memory contents can be accessed in the same time as
|
||||
each other.
|
||||
- Equal time to access any location
|
||||
- n-bit address
|
||||
- Volatile #flashcard: content lost? also called? two types?
|
||||
id:: 64886486-510b-4bae-a96b-b3e1e2d7426a
|
||||
- Volatile memory loses its contents when the power is switched off
|
||||
- Volatile memory is commonly called {{c1 RAM(Random Access Memory)}}. Often used as “working
|
||||
id:: 648864bd-5553-4cb9-9b3b-95704702ec3a
|
||||
memory” #flashcard
|
||||
- Static RAM (SRAM): Uses {{c3 transistors}} to store a single bit
|
||||
id:: 6488656f-d6e7-471c-a576-918f2a9539cd
|
||||
of information and does not need to be refreshed
|
||||
periodically. #flashcard
|
||||
- more expensive and less dense
|
||||
- Dynamic RAM (DRAM)Uses a {{c2 capacitor}} to store the
|
||||
id:: 6488659c-99ea-4bf5-9f22-dabeea3f51d9
|
||||
data bit and needs to be periodically refreshed to maintain
|
||||
the charge in the capacitors. #flashcard
|
||||
- Because of the small cell size, DRAM can have very high
|
||||
densities.
|
||||
- It is the main memory in personal computers.
|
||||
- Non-volatile #flashcard data loss? abbrevation?
|
||||
id:: 535e9457-c460-4f39-af70-29f1451ec6bd
|
||||
- Non-volatile memory keeps its contents even if there is no
|
||||
power to the device.
|
||||
- Non-volatile memory is commonly called as {{c1 ROM}}
|
||||
id:: 648864c3-9852-48f3-8aac-21adaab99963
|
||||
- ROM
|
||||
- Definition :-> Read-Only Memory where the contents cannot be
|
||||
id:: 64886681-d990-45e3-afd3-e13d95459f58
|
||||
changed by normal CPU operations.
|
||||
- used to store fixed data or information.
|
||||
- Mask ROM :-> programmed in manufacture
|
||||
id:: 648866a8-81ed-435b-a946-d96ab208b17e
|
||||
- PROM :-> Programmable ROM
|
||||
id:: 648866ae-85e5-4241-a1f9-fc2d32df9cda
|
||||
- EPROM :-> Erasable PROM
|
||||
id:: 648866b2-2f28-4bc3-96ba-d05da9722b4f
|
||||
- EEPROM :-> Electrically Erasable PROM
|
||||
id:: 648866b5-0447-4faf-8535-258f4c28d7d2
|
||||
- Serial Access
|
||||
- Stores data bits in series
|
||||
Head must travel from current position to new address passing the
|
||||
|
@ -769,9 +716,7 @@
|
|||
- Integer
|
||||
- Digits
|
||||
- If calculating integer part, from up to down :-> LSB to MSB
|
||||
id:: 648890c8-1e5d-4b62-a3f5-0976b8d04aad
|
||||
- fractional part is the reverse, :-> from MSB to LSB, since we are multiplying.
|
||||
id:: 648890dc-9ad9-4f36-913b-1884e5f77df7
|
||||
- DONE LSB, MSB
|
||||
- DONE ==2's complement==
|
||||
:LOGBOOK:
|
||||
|
@ -875,7 +820,6 @@
|
|||
![image.png](../assets/image_1686665912325_0.png)
|
||||
- Transforming bit, byte, kb, mb, gb
|
||||
- LATER 看数据库 {{renderer :todomaster}}
|
||||
id:: 647bf024-fa40-4786-9770-e16da8b57f0f
|
||||
deck:: 2023t1/database
|
||||
- DONE 课件
|
||||
collapsed:: true
|
||||
|
@ -895,46 +839,27 @@
|
|||
- LATER Block 1
|
||||
- DONE DBMS
|
||||
- Database is :-> a shared collection of logically related data (and a description of this data), designed to meet the information needs of an organization.
|
||||
id:: 648954b0-3c6a-4656-a481-ce7d4a34396f
|
||||
- Table :-> A collection of related data organized into rows (also called records) and columns (also called fields).
|
||||
id:: 6483f465-1724-4794-880d-c69316865a35
|
||||
- Row/Record :-> A single set of data in a table, representing a specific instance or entity.
|
||||
id:: 6483f465-858c-434d-b887-28ebde0add8a
|
||||
- Column/Field :-> A specific attribute or data element within a table.
|
||||
id:: 6483f465-ef00-452c-ba43-42e476efb4a4
|
||||
- Primary Key :-> A unique identifier for each row/record in a table. It ensures the integrity and uniqueness of the data.
|
||||
id:: 648954e4-a846-41d7-9104-1a98090ba1a5
|
||||
- Foreign Key :-> A field in one table that refers to the primary key in another table, establishing a relationship between the two tables.
|
||||
id:: 648954fa-c2ed-4545-8fb5-5acf313ffeb3
|
||||
- Relationship :-> The connection between tables based on common data values, such as primary and foreign keys.
|
||||
id:: 648954fa-919c-4d42-9713-d4029563427a
|
||||
- Normalization :-> The process of organizing and structuring a database design to eliminate redundancy and improve data integrity.
|
||||
id:: 648954fa-ca27-46a4-95cd-ce40ba478e28
|
||||
- Index :-> A data structure that improves the retrieval speed of data from a database table by creating a quick reference to the location of the data.
|
||||
id:: 648954fa-1d1e-41a4-a3a8-a2006331e755
|
||||
- Query :-> A request for data or information from a database, usually written using Structured Query Language (SQL).
|
||||
id:: 648954fa-bd10-406c-91f5-acf7059e1ea8
|
||||
- SQL (Structured Query Language) :-> A programming language used to manage and manipulate relational databases. It allows you to create, modify, and retrieve data from databases.
|
||||
id:: 648954fa-f3b3-477f-80b5-1edb23aeac28
|
||||
- CRUD Operations :-> An acronym for Create, Read, Update, and Delete operations, which are the basic operations used to manage data in a database.
|
||||
id:: 648954fa-a542-42aa-9af5-ad488de89bc0
|
||||
- ACID (Atomicity, Consistency, Isolation, Durability) :-> A set of properties that guarantee the reliability and integrity of database transactions.
|
||||
id:: 648954fa-8546-4953-ad25-152704b36367
|
||||
- Data Integrity :-> The accuracy, consistency, and reliability of data stored in a database.
|
||||
id:: 648954fa-1e52-4783-b27a-084996c3c17a
|
||||
- Database Schema :-> The structure or blueprint of a database, defining the tables, fields, relationships, and constraints.
|
||||
id:: 648954fa-dd95-4899-9e2b-04d0095fe076
|
||||
- Database Management System (DBMS) :-> Software that provides an interface to interact with databases, managing their creation, modification, and retrieval.
|
||||
id:: 648954fa-fe5a-4d6d-82fd-81f87a3f1541
|
||||
- DONE basic concepts of Relational model
|
||||
- A data model :- > a graphical description of the
|
||||
components of database.
|
||||
- A relation, is :-> a two-dimensional table arranged in columns and rows.
|
||||
id:: 64895598-3ee8-42a3-a04d-4346fee53d5c
|
||||
- A relational database is :-> a collection of relations.
|
||||
id:: 648955a6-e6b3-48ce-9255-db49a7453c03
|
||||
- Candidate Key #flashcard
|
||||
id:: 64895751-ef8c-409c-90bb-330e738b5580
|
||||
- A set of attributes that uniquely identifies a tuple within a
|
||||
relation.
|
||||
- Uniqueness : In each tuple, candidate key uniquely identify
|
||||
|
@ -942,36 +867,27 @@
|
|||
- Irreducibility: No proper subset of the candidate key has the
|
||||
uniqueness property.
|
||||
- Primary Key #flashcard
|
||||
id:: 64895751-2a2e-42d9-a609-731983fd7cd8
|
||||
- Candidate key selected to identify tuples uniquely within
|
||||
relation.
|
||||
- Foreign Key #flashcard
|
||||
id:: 64895751-fe0f-47a0-9bb9-de150be41761
|
||||
- Attribute, or set of attributes, within one relation that
|
||||
matches candidate key of some (possibly same) relation.
|
||||
- Composite Key #flashcard
|
||||
id:: 64895751-cce6-4198-b70b-c1957c4f1ed1
|
||||
- A candidate key that consists of two or more attributes.
|
||||
- Recursive Relationship #flashcard
|
||||
id:: 64895902-2b94-43ca-9c0c-7a865b9d536c
|
||||
- Relationship type where same entity type participates
|
||||
more than once in different roles.
|
||||
- Multiplicity :-> number (or range) of possible
|
||||
id:: 64895b3d-8797-4145-b8eb-1f4185ff8acd
|
||||
occurrences of an entity type that may relate to a
|
||||
single occurrence of an associated entity type
|
||||
through a particular relationship.
|
||||
![image.png](../assets/image_1686723218703_0.png)
|
||||
- Cardinality #flashcard
|
||||
id:: 648959dd-c537-43a4-8d7e-edfacb4008fc
|
||||
- Describes {{c1 maximum}} number of possible relationship occurrences for an entity participating in a given relationship type.
|
||||
id:: 648959c4-159e-45bf-9aa9-f574ed05f20f
|
||||
- Participation #flashcard
|
||||
id:: 648959dd-bd36-4fa2-8578-6c390c280a79
|
||||
- Determines whether all or only some entity occurrences participate in a relationship.
|
||||
- Gives the minimum number for an entity occurrences participating in a given relationship type.
|
||||
- Ternary relationship #flashcard
|
||||
id:: 64895b10-62f4-4712-912f-f8c8cdb5a7e8
|
||||
- a ternary relationship is not the same as three binary relationships!
|
||||
- LATER basic concepts associated with Entity-Relationship(ER) model.
|
||||
- LATER Forming sql queries
|
||||
|
|
Loading…
Reference in a new issue