Skip to main content

四门全过+考试体会

发信人: tanger (Sahara), 信区: Accounting
标  题: 四门全过+考试体会并转让资料
关键字: 考试体会,转让资料
发信站: BBS 未名空间站 (Sun Mar 11 16:36:09 2012, 美东)

四门全过了, 也来谈谈考CPA的一些个人体会。我是全职上班(基本上每天加班的那种)
,一开始我自己也不确信是否有足够时间和精力来学习,但是经过我朋友一番鼓励,我
决定也来试一试。结果每门成绩都比我预想的要高。除了REG 是90分,其他三门均90以
上(去年九月份开始复习到今年二月份结束)。首先声明我本身并不擅长考试。我个人
感觉CPA考试的战线不能拉的太长,最好控制在半年。那样的话效率会高一些,而且不
会觉得太累。仔细总结一下,对我来说,复习考试最总要的有两点: 一是尽量理解要考
的内容的原理;二是最好每门都要有个NOTES.

当然,大家都知道做题是很重要的环节,因为做题也是一个理解和学习概念的过程,但
有时候太注重做题的话,对知识点的掌握就不容易形成系统,零散的知识点非常容易忘
记。所以我觉得最好仔细的听一遍LECTURE(特别是从学校毕业好几年的)这样对总体要
考的东西有个大体了解。然后对LECTURE 讲到的不熟悉的内容在查看书本的讲
解(这时候不一定要通读全部章节,可以只看某一个你不清楚的TOPIC)这样在做
题之前,就会对那个章节整体有个特彻的理解。在做题的时候就会花少一点的时间。刚
开始做题的时候不用在意速度,最重要的是要了解每个题要考的知识点。我觉得当你考
虑的是题后的CONCEPT而是不题的表面描述的时候,再多的题也不觉得多了。我
自己感觉每完成章节部分的题的时候,接下来的题对我来说都是对相同概念再次重复的
询问(只不过是换个方式来问)。这样知识点就会更容易理解和记忆。所以我觉得关键
是要对每章的内容有透彻的理解,这样就不担心真实考场上遇到的题的形式了,因为就
像那句老话说的“万变不离其宗”

其次,我觉得NOTES 也是非常的重要。因为CPA考试的知识点非常广,没有个N
OTES 的话,之前学过的内容非常容易忘记。我感觉我本身的记忆力不是很好,加
上白天并没有时间学习。如果没有NOTES 的话,我可能要多花几倍的时间。就像
以前国内有的老师讲过的:“书要越读越薄“,意思就是说要把书里的内容有调理的进
行概括记忆,才能达到高效记忆和理解。我自己就是这样的,每个周末把所有章节的N
OTES 快速的过一遍,这样,在整个复习考试过程中,我的脑子里都有一个大的P
ICTURE(所有章节的重要知识点)。我的每次考试都预约在礼拜一,因为这样的
话我有两天的周末时间来准备。这个对我也很重要,一天时间用来做FIANAL R
EVIEW,再仔细的看NOTES.所以在考前基本上所有的知识点都比较系统而且
FREASH的在我脑子里。
不好意思,啰嗦了这么长,希望这些个人的考试体会也能给准备考试的朋友们有所帮助。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...