Langsung ke konten utama

Postingan

Menampilkan postingan dari November, 2018

Cloud Computing Services

Cloud Computing Services What is Cloud? Cloud refers to a network or internet, which is present at certain place which is accessible from any location over public network or private network Cloud Computing refers to manage, configuring, and accessing the applications online. It offer online data storage, compute, network infrastructure and application which delivered as a network services. Cloud computing tends to separate infrastructure with business, whereas terms "infrastructure" refer to hardware, networking, and software which managed as one entity. And terms "Business" refers to procedural workflow, strategic enforcement, etc Deployment Examples Social networking : Facebook, Instagram, LinkedIn, etc. Data sharing / collaboration : Email, Dropbox, etc. Education : Quipper, Smart Campus, E-Learning, E-Library, etc. Business : Office application : Online shop portal, Google doc, Personal / Corporate                  ...

Function and Recursion

FUNCTION AND RECURSION SUB TOPICS : Modular Programming Function Identifier Scooping Passing Parameter Recursion Definition Recursive Function Iterative vs Recursive Pointer Definition •        Program is divided into modules •        Module in C programming language is implemented using function •        Function is formed through grouping some statements to do a particular job •        Module is needed when a certain block of statement frequently used by other distinct code in a program •        Also called Sub-Program   •        Advantages of using Modules: 1.     Top-down design with sub goal, huge program divided into smaller modules 2.     Can be done by more than one developer/ programmer 3.     Easier to debug, a...