Switch statement in c++ Multiple- selection construct that is used in multi decision making in an efficient way and is easy to read and understand. Structure of Switch Statement switch (expression) { case constant1: group of statements 1; …
If Else statement /conditional structure In everyday life, we are often making decision. “if the age of the person is above 60, then discount the ticket price to 40%” The above statement have element of decision making. E.g only if …
Data Types in C++ Unsigned Integers Signed Integers Floating point numbers Characters Logical values Standard Data Types in C++ Following are examples of predefined data types used in C++ int an integer number (e.g. 10, -5). float a …
Introduction to Programming Language Problem Solving Problem solving is a process of identifying a problem and finding the best solution for it. Problem solving is a skill that can be developed by following a well organized approach. We solve different …
Type Of Memories in computer Cache Memory The cache is a small amount of high-speed memory, usually with a memory cycle time comparable to the time required by the CPU to fetch one instruction. The most frequently used instructions are …
Fundamentals Computer Concepts What is Computer ? A computer is a programmable, multiuse machine that accepts data, ( raw facts and figures) and process ,or manipulates, it into information. Information: “processed data on a computer is called information” Parts of …
Introduction To Computer Programing Overview and Course Outline Course Objective Programming fundamentals” aims to familiarize the students with the fundamental concepts of computer and computer programming. The students will learn basic concept of IT, fundamental concepts of programming by developing and …