Posts

CL Algorithm and Programming, Wednesday, Nov 27th 2018 (Cloud Computing)

Cloud Computing Cloud   Cloud refers to a Network or Internet, which is present at a certain place and accessible from any  location. Cloud Computing refers to managing, configuring, and accessing the applications online. Cloud seperates infrastructure and business, "infrastructure" refer to hardware, networking, and software, managed as one entity, while "business" refers to procedural workflow, strategic enforcement, etc. Cloud Computing Separate IT infrastructure, managed seperately, and accessible anywhere via internet. Deploying Cloud means outsourcing "infrastructure" management and risks to third party, while the company focuses more on "business." Deployment Examples : Social Networking: Facebook, Instagram, LinkedIn, etc. Data Sharing/Colaboration: Email, Dropbox, etc. Education: Quipper, Smart Campus, E-Learning, etc. Business/Office Application: Google doc, Personal/Corporate Websites, etc. HPC for Limited Durat...

CL Algorithm and Programming, Wednesday, Oct 17th 2018

Pointers and Arrays Pointers: Pointer is a variable that is used to store the address of another variable. Syntax: <type> *ptr_name; Operators used in pointers: * = content of & = address of Example: int i; int *ptr; *ptr = &i; this means if i = 0, and then assign *ptr = 10, then i becomes i =10 Arrays: Characteristics: Homogen: similar data types for all elements. Random access: elements can be accessed randomly . Syntax: type array_val[val_dim]; Example:   int array[10]   int = data type array = indentifier / var_name [ ] = operator index 10 = dimensional value inside operator  

CL Algorithm and Programming, Wednesday, Oct 10th 2018

What I have learned during the class: Basics of Repetition/Looping in C Language of programming Basics of the following operations: for , while , and do - while