Difference between revisions of "OOP344 20131-OOP344geeks"
Divya Sharma (talk | contribs) (→Programming Style) |
Pankaj Sama (talk | contribs) (→Team Member's Information) |
||
Line 6: | Line 6: | ||
[mailto:psama@myseneca.ca;vrpatel3@myseneca.ca;dsharma37@myseneca.ca;knamasivayam1@myseneca.ca;?subject=oop344 Email to all members] | [mailto:psama@myseneca.ca;vrpatel3@myseneca.ca;dsharma37@myseneca.ca;knamasivayam1@myseneca.ca;?subject=oop344 Email to all members] | ||
{| class="wikitable sortable" border="1" cellpadding="5" | {| class="wikitable sortable" border="1" cellpadding="5" | ||
− | ! First Name !! Last Name !! Section !! Seneca ID !! Wiki ID !! IRC nick !! Github ID !! Blog URL | + | ! First Name !! Last Name !! Section !! Seneca ID !! Wiki ID !! IRC nick !! Github ID !! Blog URL !! Area |
|- | |- | ||
− | |Pankaj||Sama||B||[mailto:psama@myseneca.ca?subject=oop344 psama]||[[Special:Contributions/Pankaj Sama|Pankaj Sama]]||pankaj||pankajsama01|| [http://pankajsama01.blogspot.ca Pankaj's Blog] | + | |Pankaj||Sama||B||[mailto:psama@myseneca.ca?subject=oop344 psama]||[[Special:Contributions/Pankaj Sama|Pankaj Sama]]||pankaj||pankajsama01|| [http://pankajsama01.blogspot.ca Pankaj's Blog] ||CButton |
|- | |- | ||
− | |Vivek||Patel|||B||[mailto:vrpatel13@myseneca.ca?subject=oop344 vrpatel13]||[[Special:Contributions/Vivek Patel|Vivek Patel]]||vivek||vivek5255|| [http://vivek5255.blogspot.ca Vivek's Blog] | + | |Vivek||Patel|||B||[mailto:vrpatel13@myseneca.ca?subject=oop344 vrpatel13]||[[Special:Contributions/Vivek Patel|Vivek Patel]]||vivek||vivek5255|| [http://vivek5255.blogspot.ca Vivek's Blog] ||CDialog |
|- | |- | ||
− | |Divya||Sharma|||B||[mailto:dsharma37@myseneca.ca?subject=oop344 dsharma37]||[[Special:Contributions/Divya Sharma|Divya Sharma]]||Divya||divya5|| [http://divya522.blogspot.ca Divya's Blog] | + | |Divya||Sharma|||B||[mailto:dsharma37@myseneca.ca?subject=oop344 dsharma37]||[[Special:Contributions/Divya Sharma|Divya Sharma]]||Divya||divya5|| [http://divya522.blogspot.ca Divya's Blog] ||CLabel |
|- | |- | ||
− | |Koghulan||Namasivayam|||B||[mailto:knamasivayam1@myseneca.ca?subject=oop344 knamasivayam1]||[[Special:Contributions/Koghulan Namasivayam|Koghulan Namasivayam]]||koghulan_||kogu|| [http://koghulan.wordpress.com/ Koghulan's blog] | + | |Koghulan||Namasivayam|||B||[mailto:knamasivayam1@myseneca.ca?subject=oop344 knamasivayam1]||[[Special:Contributions/Koghulan Namasivayam|Koghulan Namasivayam]]||koghulan_||kogu|| [http://koghulan.wordpress.com/ Koghulan's blog] ||CLineEdit |
|- | |- | ||
|} | |} |
Revision as of 11:31, 4 March 2013
Contents
OOP344geeks (Team 6)
Team Member's Information
First Name | Last Name | Section | Seneca ID | Wiki ID | IRC nick | Github ID | Blog URL | Area |
---|---|---|---|---|---|---|---|---|
Pankaj | Sama | B | psama | Pankaj Sama | pankaj | pankajsama01 | Pankaj's Blog | CButton |
Vivek | Patel | B | vrpatel13 | Vivek Patel | vivek | vivek5255 | Vivek's Blog | CDialog |
Divya | Sharma | B | dsharma37 | Divya Sharma | Divya | divya5 | Divya's Blog | CLabel |
Koghulan | Namasivayam | B | knamasivayam1 | Koghulan Namasivayam | koghulan_ | kogu | Koghulan's blog | CLineEdit |
Programming Style
A. Indentation
- Using the 4 spaces(TAB) and inserting spaces
B. Blocks
int main()
{
int name;
int first;
if (name == first)
{
cout << "name matches" << endl;
}
}
C. Variable Naming
- Variable name start with: First letter uppercase and rest are lowercase
- For Example:
int Age;
int Sex;
Fardad's Rule
int a; // good
int b; // good
int a, b. c; //bad
int
a; // bad
Single line blocks must be surrounded by { and }
if(whatever)
{
do this:
} // good
if(whatever) do this; //bad
if(whatever)
do this; // bad