1.What exactly does 'agile' mean?

  1)Agile software development does not means a invariable mode of progeramming, rather, it plays a directing and guiding role during programming. There is a bunch of conceptions that is intimatedly realated to Agile software development. Such are Extreme progranmming, Pair programming, TDD, etc. Thus, i would regard ASD as a general target of progreamming instead of a concrete method. ASD has its own features from which derives different method of programming.

  2)ASD has two deeply rooted principle:

    a.Agile methods are adaptive rather than predictive

    b.Agile methods are people-oriented rather than process-oriented.

  Those are two very important principle of ASD .which yeilds huge advantages when compared to conventional programming idea. In conventional software developing, plans are made extremely detailed. Consequently, those constraints made the plan itself very hard to follow, and thus we need to revise the plan again and again. And so we don't make big blueprints, we use the WBS(work break-down structure), we make small plans, we holds the agility to revise it at anytime.

2.Recruiting new members in an already delayed projuct won't help anything but make the project even slower.

  Can't find idealize answer the internet:(. This statement generally holds true, but what if the new member is Bill Gate or David A. Patterson or some ingeneous guys from Starford University? Can't they help a little?

3.Why we don't need details in description files while doing WBS

  The answer is in question 1. Because the more detailed our plan is, the harder we are able to follow it, and the more possible we break the rules to rewrite the description file. We need to think in Agility.

4.Does there  exist a project that is motivated by Source?(There exist project that is motivated by time\function)

  I think yes. Source is the most fundamental factor in a project—you can't run a project without any recruit or without any money.Thus it can cast influence on the speed of a project, like time. While having only one member in the team cost you 2 years to finish the project, having 10 people may fasten your project to 3 months.

5.How can we perform a perfect encapsulation?

   First, minimize accessibility of classes and members, avoid friend class.Then, don't make assumptions about the class's users. I think this is useful to me because I often assume that I'm the user. Contemplate all features and functions of your class.

  

Individual Reading Assignment的更多相关文章

  1. Personal Reading Assignment 2 -读推荐文章有感以及项目开发目前总结

    在经过个人作业和结对作业的磨练和现在正在进行的团队作业的考验中,我对自己软件开发的一点得失有了些许感悟,同时读了老师推荐的文章后,自己也是有了一些感受. 首先在“No Silver Bullet”一文 ...

  2. last individual reading task 12061183叶露婷

    http://www.cnblogs.com/yltyy/p/4025426.html 1.Different people deserve different tasks; Once team ro ...

  3. individual reading task ---12061183 叶露婷

    Different people deserve different tasks; Once team roles are settled, there comes along a lot of ot ...

  4. Critical thinking and Thoughtful writing

    Critical thinkers are able to : Articulate their ideas clearly and persuasively in writing Understan ...

  5. 【硬件模块】RFIDSetting

    The Octane SDK includes the core library by acting as a wrapper for extraction, modifying, and the a ...

  6. the assignment of reading paper

    在 IEEE 上找到Increasing Dependability of Component-based Software Systems by Online Failure Prediction, ...

  7. PatentTips - Device virtualization and assignment of interconnect devices

    BACKGROUND Standard computer interconnects, particularly for personal computers or workstations, may ...

  8. COMP2521: Assignment

    COMP2521: Assignment 2Social Network AnalysisA notice on the class web page will be posted after eac ...

  9. [NLP] cs224n-2019 Assignment 1 Exploring Word Vectors

      CS224N Assignment 1: Exploring Word Vectors (25 Points)¶ Welcome to CS224n! Before you start, make ...

随机推荐

  1. windows7系统最大支持多少内存

      目前Windows 7 64位版仅能使用最大为192GB内存. 这是各个版本的具体数据:64位的Windows  7家庭普通版最高可支持8GB内存,家庭高级版最高可支持16GB内存,64位的Win ...

  2. Orcale日期函数to_date(),to_char()

    日期转换的两个函数分别是to_date()和to_char(),to_date() 作用将字符类型按一定格式转化为日期类型, to_char() 将日期转按一定格式换成字符类型 其中当时间需要精确的时 ...

  3. do-while语句及for语句(初学者)

    1.do-while语句的一般形式为: do 语句 while(表达式): 这个循环与while循环的不同在于:它先执行循环中的语句,然后再判断这个表达式是否为真,如果为真则继续循环:如果为假,则中止 ...

  4. VS code 修改主题设置代码对其齐线

    用VS Code 写代码的时候有时候缩进太多就不知道对应的是哪一个标签了,那么可不可以让它显示缩进参考线,这样就清楚的多了.答案是肯定的,方法如下: 找到 文件-->首选项——>设置→搜索 ...

  5. C/C++每日小练(七)——墓地雕塑

    墓地雕塑 题目描写叙述: 在一个周长为10000的圆上等距分布着n个雕塑. 如今又有m个新雕塑增加(位置能够任意放).希望全部n+m个雕塑在圆周上均匀分布.这就须要移动当中一些原有的雕塑.要求n个雕塑 ...

  6. 迭代器协议和for循环工作机制

    一.递归和迭代 举个例子 递归:假如我去问路,路人甲看我长得盛世容颜,但是他不知道,他就去帮我问路人乙去了,路人乙跟路人甲说我也不知道,但一看路人甲美若天仙,就说,我去帮你问问路人丙,...完了可能得 ...

  7. day10,11-Python 基本数据类型介绍之数字与字符串(看看就好)

    数字:int #字符串转换整型 a = "123" print(type(a),a) b = int(a) print(type(b),b) b = b + 1000 print( ...

  8. 素数判断-----埃氏筛法&欧拉筛法

    埃氏筛法 /* |埃式筛法| |快速筛选素数| |15-7-26| */ #include <iostream> #include <cstdio> using namespa ...

  9. EasyUI panel

    1.脚本生成panel 2.panel属性 3.panel事件 4.panel方法 一 脚本生成panel <div id="tt"></div> < ...

  10. 【USACO 2019 Feburary Contest】Gold

    模拟二月金组,三个半小时AK. USACO 2019 Feburary Contest, Gold T1 题意:给定一棵树,每个点有点权,每次可以进行以下操作之一: 更改一个点的点权 求某条路径上的点 ...