Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Update Naming Convention.md | 562ba67f4338884279c312eddf7fd1688d314da3 | Poonam Veeral | 2020-04-09 16:16:01 |
Update Naming Convention.md | fa669e84e04edadb029e834caedf56223b897fe0 | Poonam Veeral | 2020-04-09 16:09:31 |
Update Naming Convention.md | 12eb5e6aea619c56222817878567db2e23aacc41 | Poonam Veeral | 2020-04-09 16:05:26 |
Update Naming Convention.md | d39a8ec969e2d9023dfa75e39aadd537ef3c79e3 | Poonam Veeral | 2020-04-09 16:02:16 |
Naming Convention Updated | 2ba945dc245814e8cc0641482b053c953e65e779 | Poonam Veeral | 2020-04-09 15:51:43 |
Update lectures_notes.md | d62f8789a67b025a618b2047c6bbaa912e617834 | Poonam Veeral | 2020-04-08 19:00:25 |
update | 6fd8bae9a3068318513bb261f79a0a07d3c87f17 | Poonam Veeral | 2020-04-08 15:37:39 |
Update lectures_notes.md | be9ca4670f042e27dfd60082cf0b081401dc072d | poonamveeral | 2020-04-08 14:29:08 |
Rename Print.tex to print.tex | 8a2253b100e8fb661c03e410e61c87e6e0dd768a | poonamveeral | 2020-04-08 13:45:56 |
Rename alt_Not_03.tex to alt_not_03.tex | ab653337fe4266a333d22178c33bd5d5c3ca3613 | poonamveeral | 2020-04-08 13:37:09 |
Rename alt_Not_02.tex to alt_not_02.tex | a79c527d3aa97f29fa835406eb2fd6bfca80e616 | poonamveeral | 2020-04-08 13:36:52 |
Rename alt_Not_01.tex to alt_not_01.tex | ce6ec02b5543682869d3dd782576e6a7c27cf5b5 | poonamveeral | 2020-04-08 13:36:36 |
Update lectures_notes.md | 3d3106fe10b24fcccedbdcc6c20c1d7a4c3e0801 | poonamveeral | 2020-04-08 13:31:56 |
Rename book_Exo.tex to book_exo.tex | 2fc98bb8f1b8dc8793fe1d9eaae4babeff760624 | poonamveeral | 2020-04-08 13:25:08 |
updated | a080901830e9ef778e099d2cbf06d37af41e880e | Poonam Veeral | 2020-04-08 13:15:26 |
er updated | 69bb6e5cfd8f31c5347d8b6b6e9e3a4e5ef6580c | Poonam Veeral | 2020-04-08 12:51:37 |
er deleted | 3543da66bdd8adff409cf79707fb11584b490f67 | Poonam Veeral | 2020-04-08 12:41:23 |
fd updated | 0a92b326fdc2fea4cd908c6ca4d14b2d635e1728 | Poonam Veeral | 2020-04-08 12:40:47 |
fd deleted | 8ba0a92ca38f25f6bb10b68d27e0cfb5b8719a3f | Poonam Veeral | 2020-04-08 12:36:42 |
misc updated | 37bac44c663e91e07d28a76031aef855907e097d | Poonam Veeral | 2020-04-08 12:36:01 |
File | Lines added | Lines deleted |
---|---|---|
Naming Convention.md | 16 | 0 |
File Naming Convention.md changed (mode: 100644) (index ee7b5e9..aefb89e) | |||
62 | 62 | | Example | public boolean isEquilateralTriangle(int b, int c, int d) { ... } | | | Example | public boolean isEquilateralTriangle(int b, int c, int d) { ... } | |
63 | 63 | | -------------------- | ------------------------------------------------ | | | -------------------- | ------------------------------------------------ | |
64 | 64 | ||
65 | * Variable Names | ||
66 | |||
67 | * Variable names generally start with a lowercase letter. | ||
68 | * Variable names should give the reader some hint about what the variable is used for. | ||
69 | * A well-chosen name, which gives a hint at the meaning of the variable, helps document a program, making it easier to understand. On the other hand, using the names of your friends or flowers that you like as variable names just annoys and makes the program harder to understand. Don't do that. | ||
70 | * Also, refrain from using vague names like counter or var or data; instead think about what the variable really is for and use a more concrete name. | ||
71 | * There is a tension between writing long descriptive names and very short names. | ||
72 | * We tend to use shorter names for parameters and local variables and longer names for fields and static variables. | ||
73 | |||
74 | * Parameter Names | ||
75 | * Parameter names may be short, even one letter long. | ||
76 | | Example | /** Return "lengths b, c, and d are the sides of an equilateral triangle" */ | ||
77 | public boolean isEquilateralTriangle(int b, int c, int d) { | ||
78 | return b == c && c == d; | ||
79 | } | | ||
80 | | -----------| --------------- | | ||
65 | 81 | ||
66 | 82 | #### SQL | #### SQL |
67 | 83 |