List of commits:
Subject Hash Author Date (UTC)
Update Naming Convention.md f3c502f0fa100485bd1f11a8d9ed8623491a3c34 Poonam Veeral 2020-04-03 01:58:55
Update Naming Convention.md 2a3b48fc5b752742d041981c1ad2be174ac58e96 Poonam Veeral 2020-04-03 01:50:53
Update Naming Convention.md 665040b94bed7109a6b02295231b7f15be97c7f0 Poonam Veeral 2020-04-03 01:50:10
Naming Convention 5cb5c7b5a07de6f895f1cb3a3772cfb4e8e67991 Poonam Veeral 2020-04-03 01:46:47
Update Naming Convention cbca9889d3e206214940b44e0218ee1e09240e26 Poonam Veeral 2020-04-02 22:40:14
Naming Convention Rules 02edf2fd646925dcc35bc2d6b97fba65eaf66443 Poonam Veeral 2020-04-02 22:33:30
Naming Convention 8bc7d4604cc3ab870baa80cd5d7c28a31fbc7566 Poonam Veeral 2020-04-02 15:45:12
Add files via upload 3d581a3440db094f64bdb1ab6c50244ff331813f poonamveeral 2020-04-02 15:32:39
Add files via upload 2815d8378c75022915ea56963775c67cabf1231b poonamveeral 2020-04-02 15:24:17
Add files via upload 0724fefb4978a0d91e10a93db4e2cfa7c1780908 poonamveeral 2020-04-02 15:23:00
Add files via upload dd347084d37bd2ef37b7e3c77cdb6a009e572c8b poonamveeral 2020-04-02 15:20:48
Add files via upload 6ee2563c712fcaac7df1d6eb0b23ffc69f2ac4b9 poonamveeral 2020-04-02 15:20:33
Add files via upload cf59c5cfcd4f5ec14fbd2f44259c12eeb6807c25 poonamveeral 2020-04-02 15:20:07
Add files via upload 55bbdafca8c9203b5b29b3e1548e55e9b8e6299f poonamveeral 2020-04-02 15:19:35
Add files via upload 101413087f21fa91a122027b83935f567a154575 poonamveeral 2020-04-02 15:18:46
Add files via upload 4b23b55a1a74e30626ffb0908597a02b8c05c1ba poonamveeral 2020-04-02 15:17:53
Add files via upload 7de4d7172002df5784c6585a382de55f35d909a8 poonamveeral 2020-04-02 15:17:30
Add files via upload e7780bd581399dcc09a61771e79515b4e5eff1c2 poonamveeral 2020-04-02 15:16:37
Initial commit 19b3cf0fb56429d4c4b5aabb08367390540246d5 Poonam Veeral 2020-04-02 15:09:01
Commit f3c502f0fa100485bd1f11a8d9ed8623491a3c34 - Update Naming Convention.md
Author: Poonam Veeral
Author date (UTC): 2020-04-03 01:58
Committer name: Poonam Veeral
Committer date (UTC): 2020-04-03 01:58
Parent(s): 2a3b48fc5b752742d041981c1ad2be174ac58e96
Signer:
Signing key:
Signing status: N
Tree: 1ac78e74f8a4bbf913c7af0059b73613fd23ad31
File Lines added Lines deleted
Naming Convention.md 26 1
File Naming Convention.md changed (mode: 100644) (index 0c91111..f56119c)
17 17
18 18 | Example | class MountainBike | interface Sport | | Example | class MountainBike | interface Sport |
19 19 | ----------- | ----------- | ----------- | | ----------- | ----------- | ----------- |
20
21 * Variables : Variable names should be short yet meaningful.
22 * Should not start with underscore(‘_’) or dollar sign ‘$’ characters.
23 * Should be mnemonic i.e, designed to indicate to the casual observer the intent of its use.
24 * One-character variable names should be avoided except for temporary variables.
25 * Common names for temporary variables are i, j, k, m, and n for integers; c, d, and e for characters.
26
27 | Example | int speed = 0 | int gear = 1; |
28 | ----------- | ----------- | ----------- |
29
30 * Constant variables:
31 * Should be all uppercase with words separated by underscores (“_”).
32 * There are various constants used in predefined classes like Float, Long, String etc.
33
34 | Example | static final int MIN_WIDTH = 4; |
35 | ----------- | -------------------------------- |
36
37 * XML Files in Code Folder
38 *
39
40
41
42
20 43
21 44
22 45
 
42 65
43 66
44 67
45 * Rules are taken by https://www.geeksforgeeks.org/.
68 * Rules are taken by:
69 * https://www.geeksforgeeks.org/.
70 * https://docs.oracle.com/cd/E82085_01/150/funtional_artifacts_guide/or-fasg-standards.htm
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/caubert/CSCI_3410

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/caubert/CSCI_3410

Clone this repository using git:
git clone git://git.rocketgit.com/user/caubert/CSCI_3410

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main