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. 浅copy与深copy举例

     例1: #!/usr/bin/env python import copy d1 = {'x':1,'y':2,'z':[3,4.5]} d2 = d1 d3 = d1.copy() d4 = co ...

  2. Java-栈的学习(字符串的反转)

    StackX类 public class StackX{ private int maxSize; private char StackArray[]; private int top; public ...

  3. Lets encrypt安装及配置

    letsencrypt recommend that most people with shell access use the Certbot ACME client.It can automate ...

  4. vlookup函数应用

    筛选状态下的复制粘贴 第一步 原数据 第二步 筛选内容 第三步 使用vlookup '=VLOOKUP(A1,$A\(1:\)A$19,1,0)' 第四步 往下拖拉结果 最终结果

  5. 关于对浏览器发送POST请求的一点研究

    网上对与HTTP的Method,GET和POST的区别,说得毕竟详细.然后提到一点,说浏览器对两者的还有一个比较容易让人忽略的区别就是:POST会分2次发送,而GET只1次. GET发送1次,这个没什 ...

  6. 字典树模板题(统计难题 HDU - 1251)

    https://vjudge.net/problem/HDU-1251 标准的字典树模板题: 也注意一下输入方法: #include<iostream> #include<cstdi ...

  7. PLSQL Developer12连接远程Oracle xe 11g

    目标: .学习使用docker下载oracle xe 11g .使用PLSQL连上启动运行oracle xe 11g容器服务 1.准备工作 Linux 安装docker 下载PLSQL Develop ...

  8. 判断MS SQLSERVER临时表是否存在

    drop table  #tempcitys select * into #tempcitys from hy_citys 上面的语句第一次运行的时候就肯定出错了,但第二次就不会.因为select * ...

  9. Drool实战系列(一)之入门程序

    Drools官网地址为:https://www.drools.org/ maven环境 入门程序例子如下: 项目结构截图: 一.导入pom文件 <project xmlns="http ...

  10. Echarts中太阳图(Sunburst)的实例

    Echarts中太阳图(Sunburst)的实例 目前在项目中要实现一个Echars中的太阳图,但是Echars中的太阳图的数据格式是一个树形结构,如下代码格式如下: var mapData = [ ...