🎧 New: AI-Generated Podcasts Turn your study notes into engaging audio conversations. Learn more

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Transcript

Introduction to Programming in Python (Introduction to Computer Science, Algorithm, H/W and S/W) Computational Thinking and Programming with Python 1 Contents Introduction to Computer Science Algorithm Hardware Software Programming Languages...

Introduction to Programming in Python (Introduction to Computer Science, Algorithm, H/W and S/W) Computational Thinking and Programming with Python 1 Contents Introduction to Computer Science Algorithm Hardware Software Programming Languages PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 2 What is Computer Science Computer science is fundamentally about is computational problem solving. Solving problems by the use of computation Areas of study in computer science includes: Software engineering, database management, computer networks, data mining, information security, programming language design, computer architecture, human– computer interaction, robotics, and artificial intelligence, among others. What is computation? Characterization of computation can be given by the notion of an algorithm. Algorithm: Series of steps that can be systematically followed for producing the answer to a certain type of problem. 15-Nov-22 PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 3 Computational Problem Solving Two things are needed to solve a problem computationally: Representation: captures all the relevant aspects of the problem, Algorithm: solves the problem by use of the representation Example: Man, Cabbage, Goat, Wolf problem A man lives on the east side of a river. He wishes to bring a cabbage, a goat, and a wolf to a village on the west side of the river to sell. Constraints: Boat can only hold himself, and either the cabbage, goat, or wolf. Man cannot leave the goat/ wolf alone with Cabbage/goat, as the goat/wolf will eat the Cabbage /goat. Computational Thinking and Programming with Python 4 Man, Cabbage, Goat, Wolf problem: Solution Simple algorithmic approach for solving this problem is trying all possible combinations of items that may be rowed back (called brute force). Representation for this problem: Relevant aspects of problem need to be represented; all irrelevant details can be omitted. Relevant information is where each item is at each step, or what is state of each item at each step. The start state of the problem can be represented as follows: PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 5 Man, Cabbage, Goat, Wolf problem: Solution PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 6 Limits of Computational Problem Solving After the development of an algorithm for solving a given problem, an important question is, “Can a solution to the problem be found in a reasonable amount of time?” If not, then the particular algorithm is of limited practical use. Example: Traveling Salesman problem The problem is to find the shortest Route of travel for a salesman needing to visit a given set of cities. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 7 Limits of Computational Problem Solving Example: Traveling Salesman problem Brute force approach: The lengths of all possible routes would be calculated and compared to find the shortest one. For 10 cities, the number of possible routes is 10!, whereas for 20 cities, the number of possible routes is 20!. If a computer could compute the lengths of one million routes per second, it would take over 77,000 years to find the shortest route for twenty cities by this approach. Therefore, brute-force approach is impractical for this problem. Any algorithm that correctly solves a given problem must solve the problem in a reasonable amount of time, otherwise it is of limited practical use. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 8 What is an Algorithm ? An algorithm is a finite number of clearly described, unambiguous “feasible” steps that can be systematically followed to produce a desired result for given input in a finite amount of time. (that is, it eventually terminates). Computer algorithms are central to computer science. They provide step-by-step methods of computation that a machine can carry out. Example: Write an algorithm to check a given number is even or odd. Input N 1. Let N be the number to check whether it is even or odd. 2. Divides the N by 2 and check the remainder Is N%2 equal to 0 3. If N divided by 2 provides 0 remainder, then N is even, 4. Else N is odd. N is Odd N is Even PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 9 Computer Algorithms The computation that a given computer performs is only as good as the underlying algorithm used. Since computers can execute instructions very quickly and reliably without error, algorithms and computers are a perfect match. Exercises: 1. Write an Algorithm to check whether a given number is prime 2. Write an algorithm for determining the day of the week for any date between January 1, 1800 and December 31, 2099. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 10 Computer Hardware Computer hardware comprises the physical part of a computer system. It includes the all- important components of the central processing unit (CPU) and main memory. It basically includes following peripheral components: ❑ Input devices − keyboard, mouse, etc. ❑ Output devices − printer, monitor, etc. ❑ Secondary storage devices − Hard disk, CD, DVD, etc. ❑ Internal components − CPU, motherboard, RAM, etc. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 11 Fundamental Hardware Components PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 12 Bridging Hardware and Software The central processing unit (CPU) is the “brain” of a computer, containing digital logic circuitry able to interpret and execute instructions. Main memory is where currently executing programs reside, which the CPU can directly and very quickly access. Secondary memory is nonvolatile, and therefore, provides long-term storage of programs and data Input/output devices include anything that allows for input or output. Buses transfer data between components within a computer system, such as between the CPU and main memory. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 13 Bridging Hardware and Software Hardware and software are mutually dependent on each other. Both of them must work together to make a computer produce a useful output. An operating system is software that has the job of managing the hardware resources of a given computer and providing a particular user interface (interacting with the hardware resources). An operating system is intrinsic to the operation a computer, it is referred to as system software. Operating system acts as the “middle man” between the hardware and executing application programs Limits of Integrated Circuits Technology: Moore’s Law states that the number of transistors that can be placed on a single silicon chip doubles roughly every two years. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 14 Digital Computing: Information Representation In digital computing, all information is represented as a series of digits. We are used to representing numbers using base 10 with digits 0–9. Since in current electronic computing, each digit is represented by a different voltage level, the information can be represented within a computer system as given follows The more voltage levels (digits) that the hardware must utilize and distinguish, the more complex the hardware design becomes. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 15 Information Representation It is a fact of information theory, that any information can be represented using only two symbols. Therefore, all information within a computer system is represented using only two digits, 0 and 1, called binary representation. Computer hardware, therefore, is based on the use of simple electronic “on/off” switches called transistors that switch at very high speed. Integrated circuits (“chips”), the building blocks of computer hardware, are comprised of millions or even billions of transistors. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 16 Binary Number System For representing numbers, any base (radix) can be used. In base 10, there are ten possible digits (0, 1,..., 9), in which each column value is a power of ten, as shown below. Other radix systems work in a similar manner. Base 2has digits 0 and 1, with place values that are powers of two, as given below. The term bit stands for binary digit. Therefore, every bit has the value 0 or 1. A byte is a group of bits operated on as a single unit in a computer system, usually consisting of eight bits. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 17 Conversion Decimal (base 10) to Binary (base 2) The algorithm for the conversion from base 10 to base 2 is to successively divide a number by two until the remainder becomes 0. The remainder of each division provides the next higher-order (binary) digit The binary representation of 99 to be 1100011. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 18 Exercise: MCQs 1. All information in a computer system is in 6. The value of the binary representation 0110 is binary representation. a) 12 a) TRUE b) 3 b) FALSE c) 6 2. Computer hardware is based on the use of 7. The _______________ interprets and executes electronic switches called _______________. instructions in a computer system. 3. How many of these electronic switches can be 8. An OS manages the hardware resources of a placed on a single IC, or “chip”? computer system, as well as provides a particular a) Thousands user interface. b) Millions a) TRUE c) Billions b) FALSE 4. The term “bit” stands for _______________. 9. Moore’s Law predicts that the number of transistors 5. A bit is generally a group of eight bytes. that can fit on a chip doubles about every ten years. a) TRUE a) TRUE b) FALSE b) FALSE PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 19 MCQs: Answers 1. All information in a computer system is in 6. The value of the binary representation 0110 is binary representation. a) 12 a) TRUE b) 3 b) FALSE c) 6 2. Computer hardware is based on the use of 7. The CPU interprets and executes instructions in a electronic switches called transistors. computer system. 3. How many of these electronic switches can be 8. An OS manages the hardware resources of a placed on a single IC, or “chip”? computer system, as well as provides a particular a) Thousands user interface. b) Millions a) TRUE c) Billions b) FALSE 4. The term “bit” stands for binary digit. 9. Moore’s Law predicts that the number of transistors 5. A bit is generally a group of eight bytes. that can fit on a chip doubles about every ten years. a) TRUE a) TRUE b) FALSE b) FALSE PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 20 What Is Computer Software? Computer software is a set of program instructions, including related data and documentation, that can be executed by computer. Software can be in the form of instructions on paper, or in digital form. Types of Software: System Software: intrinsic to a computer system or platform for executing application software. Example: OS, Compiler, Interpreter, etc. Application software: Fulfills users’ needs, such as a photo-editing program, MS office, etc. Programming languages (called “artificial languages”) are languages just as “natural languages” such as English and Mandarin (Chinese). Syntax and semantics are important concepts that apply to all languages. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 21 Syntax, Semantics of a Language The syntax of a language is a set of characters and the acceptable sequences of those characters. The semantics of a language is the meaning associated with each syntactically correct sequence of characters. Example: “Hello there, how are you?” -- This is not syntactically correct, “Hello there, hao are you?” -- “hao” is not a word in the English language “Colorless green ideas sleep furiously.” -- Syntactically correct, but semantically incorrect (no meaning). PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 22 Program Translation A central processing unit (CPU) is designed to interpret and execute a specific set of instructions represented in binary form (i.e., 1s and 0s) called machine code. Only programs in machine code can be executed by a CPU. Writing programs at this “low level” is tedious and error-prone. Therefore, most programs are written in a “high-level” programming language such as Python. Since the instructions of such programs are not in machine code that a CPU can execute, a translator program must be used. There are two fundamental types of translators: compiler and interpreter. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 23 Program Translation A compiler is a translator program that translates programs directly into machine code to be executed by the CPU. An interpreter executes program instructions in place of (“running on top of”) the CPU. It can immediately execute instructions as they are entered. Python, as we shall see, is executed by an interpreter. Compiled programs generally execute faster than interpreted programs. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 24 Program Debugging: Syntax Errors vs. Semantic Errors Program debugging is the process of finding and correcting errors ( “bugs”) in a computer program. Syntax errors are caused by invalid syntax (for E.g., entering prnt instead of print) Since a translator cannot understand instructions containing syntax errors, translators terminate when encountering such errors indicating where the problem occurred in program. Semantic errors (generally called logic errors) are caused by errors in program logic. These errors cannot be automatically detected, as translators cannot understand the intent of a given computation. Example: if a program computed the average of three numbers as follows, (num1 + 1num2 + 1num3) / 2.0 A translator would have no means of determining that the divisor should be 3 and not 2. Computers do not understand what a program is meant to do, they only follow the instructions given. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 25 Procedural vs. Object-Oriented Programming Procedural programming and object-oriented programming are two major programming paradigms in use today. Each provides a different way of thinking about computation. While most programming languages only support one paradigm. Python supports both procedural and object-oriented programming PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 26 Exercise: MCQs 1. Two general types of software are system 5. The two types of translation programs for the software and _______________ software. execution of computer programs are _______________ and _______________. 2. The syntax of a given language is, a) the set of symbols in the language. 6. The process of finding and correcting errors in a b) the acceptable arrangement of symbols. computer program is called _______________. c) both of the above 7. Which kinds of errors can a translator program detect? 3. The semantics of a given language is the meaning associated with any arrangement of a) Syntax errors symbols in the language. b) Semantic errors a) TRUE c) Neither of the above b) FALSE 8. Two major programming paradigms in use today 4. CPUs can only execute instructions that are in are _______________ programming and binary form called _______________. _______________ programming. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 27 MCQs: Answers 1. Two general types of software are system 5. The two types of translation programs for the software and application software. execution of computer programs are 2. The syntax of a given language is, compilers and interpreters. a) the set of symbols in the language. 5. The process of finding and correcting errors in a b) the acceptable arrangement of symbols. computer program is called program debugging. c) both of the above 6. Which kinds of errors can a translator program 3. The semantics of a given language is the detect? meaning associated with any arrangement of a) Syntax errors symbols in the language. b) Semantic errors a) TRUE c) Neither of the above b) FALSE 4. CPUs can only execute instructions that are in 7. Two major programming paradigms in use today binary form called machine code. are procedural programming and object-oriented programming. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 28 What is computational thinking? PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 29 Example Scenario Complex problem: Goa trip Subcomplex 1: Convincing own parents Not eating properly, making sad face and sadly roaming inside house for no reason Lying to the parents that trip is about IT Industrial Visit ( in Goa ☺ ) Subcomplex 2: Getting money from Dad Being humble in front of dad Promising that you will not spend too much money for the trip Subcomplex 3: Convincing friend’s parents Promising that your friend will be safe during the trip (which never happens) Subcomplex 4: Planning and execution Booking travel and accommodation Going to go go goa… PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 30 What is Programming? A program is a list of instructions that is executed by a computer to accomplish a particular task. Creating those instructions is programming by a programmer. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 31 Top Programming Languages PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 32 Types of Programming Languages Source Code Translators Object Code (Assembly/High Level) (Compiler/Interpreter/Assembler) (Machine Code) Note: 1) Computer understand only machine language. 2) Different translators are used to convert the one source program into machine language. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 33 Languages Translators Compiler converts the whole high level language program to machine language at a time while Interpreter converts high level language program to machine language line by line and Assembler converts assembly language program to machine language. PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 34 Why Python? PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 35 Random Notes Python is not everything. It helps you to get started with programming. No need to memorize any programming keywords and syntax i.e. awareness > memorization Programming is a highly desired skill across engineering disciplines PDPM Indian Institute of Information Technology, Design and Manufacturing Jabalpur 36

Tags

algorithm computer science programming
Use Quizgecko on...
Browser
Browser