Open main menu

CDOT Wiki β

OOP344 20131-OOP344geeks

Revision as of 12:31, 4 March 2013 by Pankaj Sama (talk | contribs) (Team Member's Information)

OOP344geeks (Team 6)

Team Member's Information

Email to all members

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

Team Discussion

Issues and Working Tasks

Help Needed

Team's Meetings