Questions

1.第3章中 ” 软件开发流程不光指团队流程,还包括个人开发流程,因为软件团队是由个人组成的.....因此,个人在团队中也有独立的流程”  —— IC在软件团队中的意义,需要遵守哪些流程,若不遵守会给团队带来怎样的影响?

2.第4章中,什么是好的代码规范和设计规范?

3.第5章中,“正如所有方法论那样,MVP有它的适用范围,和它对应的就是MBP的思路” ——  MVP 与 MBP有何联系,两者的区别又在哪?

4.第5章中,软件开发中的团队精神与平常的集体主义精神有什么相同和不同之处?

5.第6章中,“如果你的团队很弱,那么强行把敏捷(或其他高级方法)套在上面也没用,也许还会适得其反” ——什么时候才适合选择敏捷?什么样的团队适合用敏捷呢?怎样才能利用好敏捷?

6.如果软件有多个语言写成的不同模板,如何定义彼此的接口?

7.第9章中,PM在整个团队中起了重要枢纽作用,那么PM会给团队带来什么副作用?

时间: 2024-08-27 01:42:24

Questions的相关文章

工作笔记20170315-------关于FAQ(Frequently Asked Questions)列表的代码

源自于:http://www.17sucai.com/pins/3288.html (1)FAQ问答列表点击展开收缩文字列表 <ul>   <li class="clearfix">   <h5><b class="UI-ask"></b>什么是享赢棋牌联盟?</h5>   <div class="foldContent">   <p>享赢棋牌联盟是杭

Popular HashMap and ConcurrentHashMap Interview Questions

http://howtodoinjava.com/core-java/collections/popular-hashmap-and-concurrenthashmap-interview-questions/ Popular HashMap and ConcurrentHashMap Interview Questions June 14, 2013 by Lokesh Gupta In my previous post related to “How HashMap works in jav

UVa 1252 - Twenty Questions(记忆化搜索,状态压缩dp)

题目链接:uva 1252 题意: 有n个长度为m的二进制串,每个都是不同的. 为了把所有字符串区分开,你可以询问,每次可以问某位上是0还是1. 问最少提问次数,可以把所有字符串区分开来. 思路来源于:点击打开链接 思路: m很小,可以考虑状态压缩. dp[s1][s2]表示询问的状态为s1时,此时能猜到状态包含s2时最小需要的步数. 当询问的几位=s2的二进制串小于2时就能区分出来了,dp[s1][s2]=0: 不能区分则再询问一次,s1|=(1<<k),如果问某位为0,则s2不变,问某位为

How To Ask Questions The Smart Way

How To Ask Questions The Smart Way Eric Steven Raymond Thyrsus Enterprises <[email protected]> Rick Moen <[email protected]> Copyright ? 2001,2006,2014 Eric S. Raymond, Rick Moen Revision History Revision 3.10 21 May 2014 esr New section on St

Questions that are independent of programming language. These questions are typically more abstract than other categories.

Questions that are independent of programming language.  These questions are typically more abstract than other categories. Free Language Agnostic Programming Books 97 Things Every Programmer Should Know Algorithms and Data-Structures (PDF) Algorithm

JavaScript Interview Questions: Event Delegation and This

David Posin helps you land that next programming position by understanding important JavaScript fundamentals. JavaScript is a fun, powerful, and important language with a low barrier of entry. People from all kinds of backgrounds and careers find the

5 Easy questions on Ensemble Modeling everyone should know

5 Easy questions on Ensemble Modeling everyone should know Introduction If you’ve ever participated in a data science competitions, you must be aware of the pivotal role that ensemble modeling plays. In fact, it is being said that ensemble modeling o

Hadoop Interview Questions

Q1. Name the most common InputFormats defined in Hadoop? Which one is default? Following 2 are most common InputFormats defined in Hadoop - TextInputFormat - KeyValueInputFormat - SequenceFileInputFormat Q2. What is the difference between TextInputFo

Top 10 questions about Java Collections--reference

reference from:http://www.programcreek.com/2013/09/top-10-questions-for-java-collections/ The following are the most popular questions of Java collections asked and discussed on Stackoverflow. Before you look at those questions, it's a good idea to s

leetcode--Learn one iterative inorder traversal, apply it to multiple tree questions (Java Solution)

will show you all how to tackle various tree questions using iterative inorder traversal. First one is the standard iterative inorder traversal using stack. Hope everyone agrees with this solution. Question : Binary Tree Inorder Traversal public List