Module 1: D1: Yash Jain

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 6

Module 1 : D1

Presented By –
Yash Jain
Parallel Programming in Scala
 Parallel Programming - It is a type of computation where
different computations can be performed at the same time.
Code standards and Style Guide
 Naming conventions for local variables, global
variables, constants and functions.
 Standard headers for different modules
 Indentation.
 Avoid using a coding style that is too difficult to
understand
 Length of functions should not be very large.
 Try not to use GOTO statement.
Git and Github
 Git is a version control system.
 It is used for tracking changes in computer files
and coordinating work on those files among
multiple people.
 Basically Git commands helps to handle the git
files and repository.
• git init
• Git clone
• Git add
• Git commit
• Git status
 Git branching a series of code changes.
 Github is the cloud based management platform
which helps to manage git repository.
How to write clean and
maintainable code
 Be expressive, write code as you speak and be
optimally verbose
 Use Meaningful Names
 Avoid Writing Unnecessary Comments
 Be Careful With Dependencies
 Make Your Project Well Organized

You might also like