Function and Cloud computing

Module/Function

Function is a group of codes that run specific task to solve a problem.

Advantages of using function:
- it's easier to debug
- it's solve specific problem
- You can use over and over without writing back the codes

example:

int count(int a, int b){
  return a+b;
}

int main(){
  printf("%d", count(1,2));
  return 0;
}

Recursive
  recursive is a function, that function calling it self inside the function it self.

example:

int count(int number){
  if(number>0){
    return count(number-1);
  }else{
    return 0;
  }
}


CLOUD COMPUTING

Cloud refers to a network or internet, which is accesible from any location. over public network or private network.
Cloud Computing refers to manage, configuring, and accessing the applications online. Cloud offer you to online storage, compute, and access data, from the internet.

Cloud deployment examples:
- Social networking : Facebook, Instagram, etc
- Data Sharing / collaboration : email, Dropbox,etc
- Education : E-learning, E-library, etc

Type of access cloud:
- Public
- Private
- Hybrid

Service model
- Infrastucture as a Service(IaaS)
- Platform as a Service(PaaS)
- Software as a Service (SaaS)


CHANDRA TAN
2201762931
binus.ac.id
skyconnectiva.com

Comments

Popular posts from this blog

Sorting & Searching