Tuesday, May 5, 2020

Conditional And Iterative Data Types Essay Example For Students

Conditional And Iterative Data Types Essay Matchmaker.com: Sign up now for a free trial. Date Smarter!ConditionalAnd Iterative Data TypesA programming language cannot bea programming language with out its conditional and iterative structures. Programming languages are built to accomplish the task of controlling computerinput and output. A programmer must use every tool available to completehis/her given tasks, and conditional as well as iterative statements arethe most basic items of programming which must be mastered. Manydifferent programming languages can demonstrate conditional and iterativestatements including C++, Java, Pascal, Qbasic, COBOL, and Scheme. Most of these languages implement conditional and iterative statementsin a similar fashion; however, there are a few differences. The conditional structure is easyto understand and self-defining. The whole statement is base on acondition and its veracity. When the statement or test is foundto be true, a statement is executed, and if it is false, another test isgiven or the program continues to the next block. Conditional structuresinclude the simple, two-alternative, multi-alternative, and non-deterministicconditional. The simple conditional is the easiest to understandbeing the IF-THEN statement. if Boolean expression thenblock of statementsIF a condition is met THEN execute a statement. The two-alternative conditional or IF-ELSE is also easy to understand. if Boolean expression thenblock of statementselseblock of statementsIF a condition is met execute a statement;ELSE the condition was not met so execute a different statement. The multi-alternative conditional is very close to the two-alternativeconditional. if condition-1 thenstatement-block-1elseif condition-2 thenstatement-block-2 elseif condition-n thenstatement-block-nend ifThe IF question is asked about a statement,and if it is not true, the next statement is examined. If statementnumber two is not true, the next statement is examined; then the next statementis examined and so forth until a condition is met, and the control is carriedout of the multi-alternative conditional. The non-deterministic conditionalis similar to the multi-alternative conditional, because it has multipleconditionals. if condition-1 #61614;statement-sequence-1when condition-2 #61614;statement-sequence-2 when condition-n #61614;statement-sequence-nend ifThe reason multi-alternative and non-deterministicconditionals are different, stems from the release of programs controlor flow. The non-deterministic conditional tests each statement tosee if its condition is met; whereas the multi-alternative conditionalonly tests statements until one of the conditions is met. After oneof the conditions is met, the multi-alternative conditional releases theprogram control and fails to check anymore statements. The iterative structure is a bitmore complicated than the conditional structure, but it is easy to understand. An iterative structure consists of a block of statements that are executedrepetitively. They might be executed once or a hundred times dependingon the controls placed on the structure. Iterative structures includenon-terminating, pretest, posttest, in-test, fixed-count, and non-deterministiciteration. The non-terminating iterative structure is not very common,because once it has program control, it does not release its control untilthe whole program is terminated. loop;sequence-of-statements;end loopOnce a non-terminating iterative structureis activated it continues to run forever. The pretest iterative structuretests a condition first, then if it is true, the following statements areexecuted repeatedly testing the statement each loop until thestatement is false. while ;condition; loop;sequence-of-statements;end loopOnce the statement is found to be false,control is returned to the program ending the pretest iterative statement. The posttest iterative statement is the same as the pretest statement exceptthe condition is tested after the sequence of statements. With theposttest iterative statement, the programmer is guaranteed to have thesequence of statements executed at least once. The statements areexecuted before the conditional statement has a chance to be tested. With the in-test iterative statement, the conditional statement is testedin the middle of the sequence of statements. It can be useful whenit is necessary to run a portion of the statement at least once regardlessof the outcome of the conditional. Fixed-count iteration is verypopular, because it allows a sequence of statements to be executed a finitenumber of times instead of relying on a condition to be true or false. The fixed-count iteration is simply do ;sequence-of-statements; x numberof times. The non-deterministic iterative statement is similar tothe non-deterministic conditional statement. dowhen ;condition-1; ;#61614;;statement-sequence-1;when ;condition-1; ;#61614;;statement-sequence-1; when ;condition-n; ;#61614;;statement-sequence-n;end doThe iterative statement executes untilnone of the conditions are found to be true. At that time, controlis release back to the program from the non-deterministic iterative statement. C++ has every type of control structurea programmer could ever need, and they are all easy to implement. The three types of condition statements include the if, if/else, and theswitch. The simple conditional is implemented through the if statement. The two-alternative conditional can be shown in C++ by using the if/elsestatements, and the multi-alternative can be demonstrated by using theswitch statement. When it come to iterative structures C++ uses thewhile, do while, and for statements. Pretest works closely with thewhile statement. Posttest uses C++s do while statement, and thefor statement is used in fixed count iteration. The code belowgives an example of each structure. if (x y)while (x y) {cout x;cout x;}if (x y)cout x;do {elsecout x;if (y x)} while (x y);cout y;for (int i=0; i 10; i++)switch (fruit)i = i + 1;case orange:cout yum;case banana:cout yummy;case apple:cout ooh yes;The simple conditional or if statementsimply asks if x is less than y and if it less than y x is printed to thescreen. The two-alternative/multi-alternative conditional using if/elseasks if x is less than y and if true prints x. If it is not lessthan y then it asks if y is less than x. If this is true y is printedto the screen. More statements can be added to this conditional tolengthen the multiple alternatives. Another multi-alternative conditionalinvolves the case statement. The variable fruit is measured againstorange. If fruit is orange the yum is printed. Next fruitis checked to see if it is banana. If so yummy is printed. Last apple is compared. Iterative statements start withthe while on the right. The pretest is initiated with the comparisonof x to y. If the statement is true the loop is started and lastsuntil x is greater than y. Post test is exemplified by the do while. It say print x then check to see if x is less than y. Next continuethe loop until x is greater than y. The for loop continues to addone to i until is not less than ten; the for loop demonstrates fixed countiteration. DRUG ABUSE in the United States of America, we, th EssayThe do/while loop is also a pretest iterative structure that checks theusers input before the loop starts. The do/until block is like ain-test iterative structure. It tests each line as it is processedto see if ans$ is equal to Y. When ans$ is equal to Y, theloop releases control back to the main program. Qbasic can be comparedto the previous three languages, but Qbasic seems to be less streamlinedbecause it has so many possible iterative structures. The same programscan be written in Java using only for or while loops. Now for the mighty programming languageCOBOL. COBOL is the older language with the ability to keep up withtodays fast paced programming tasks. COBOL is not very comparableto the previous four languages. Its is capable of performing thesame tasks with its conditional and iterative structures as C++, Java orany of the other languages, but COBOL has its own special way of performing. The syntax is quite different, but some of the key words are the same. Also, COBOL has considerably less iterative structures compared to Qbasic. COBOL has such conditional structures as if, if/else and evaluate/when. Iterative structures are best described in one word perform; the perform/untilis COBOLs definite solution to iteration. Exemplified by the followingcode , COBOLs conditional and iterative structures are easily understood. if operation = -subtract field-1 from field-2 givingresult-if operation = +add field-1 field-2 giving resultelseif operation = /divide field-1 by field-2 givingresult-evaluate taxable-wageswhen zero thru 200multiply taxable-wages by.15 giving federal-taxeswhen 200 thru 300multiply taxable-wages by.22 giving federal-taxesend-evaluate. performvarying power-value from 1 by 1until power-value field-2end-performThe example above lengthy for demonstratingonly four structures by COBOL is not designed to be easy to write; it isdesigned to crunch numbers. The if statement shows a simple conditional. If the question is evaluated to be true the subtraction is performed onthe two fields. The second block of code shows the use of if/elseor the two-alternative conditional. If the first condition is notmet the second condition is evaluated. If the second is found truedivision is performed on the two fields and an answer is given. Evaluateis the last conditional block of code; this is a non-deterministic conditionalstructure. Each case is evaluated line by line, and when (justlike in the code) a condition is met the applicable statements are executedsuch as finding an employees federal taxes for a company. The iterativestructures posttest, in-test, and fixed count can be performed using theperform keyword in COBOL. The example above displays the posttest. The loop is performed then power-value is tested against field-2; ifpower-value is greater than field-2 then the loop is broken. COBOLis a competitive language, but it is lengthy when writing. Then conditionaland iterative structures are easy to use but require much time during theplanning phase of writing a program. Scheme is the last and most unusualprogramming language of this paper. Scheme can implement both conditionaland iterative structures, but the syntax of scheme is totally differentfrom C++, Java, Pascal, Qbasic, or COBOL. The Scheme programminglanguage is designed in a recursive manner. All Scheme programs arerecursive and are actually iterative because the program iterates overand over again. The recursive nature of Scheme is not however aniterative structure. The conditional structures of Scheme us suchkeywords as if, else, case, and cond. The iterative structure ofScheme seems to only be seen with the keywords loop or do. Schemeconditional and iterative structures are seen below. (if ( n 0)(case (+ x y)(- 1 n))((1 3 5 7 9) odd)((02 4 6 8) even)-(cond (loop(eqv? msg empty?)(if (= n 0) (break ls))(eqv? msg push!) (set!ls (cons a ls))(else oops))(set! n (- n 1)))-(cond (do(( i 2 (+ i 1)))( x 0)((= i n))( x 0)The syntax of the if block looks very differentfrom any other languages in this paper, but it behaves in a similar fashionto other simple conditional structures. The if statement states thatif n is less than zero then subtract one from n. The cond withthe else is a multi-alternative conditional structure. The firstline asks if the variable msg contains the string empty?. Thesecond line asks if the variable msg contains the string push!, andthe else line says if neither of the previous two lines are true printoops. The cond block on the bottom is a two-alternative conditionalstructure. The first condition is if x is less than zero, and thesecond condition is if x is greater than zero. The case block isanother multi-alternative conditional structure. If x plus y is equalto and odd number then odd is printed, and if x plus y is equal to aneven number then even is printed. The loop code is a pretest iterativestructure. n is tested against zero for equality. If theyare equal then the loop is stopped. The do block corresponds to theposttest iterative structure. The first line is executed until iis greater than or equal to n, but the condition is not tested untilthe first line is executed at least once. Scheme is an odd language,but once it is mastered is can accomplish any programming task set forth. Comparatively, the conditional and iterativestructures in all the languages previously mentioned are very similar toone another. All of the simple conditional structures even use thesame key word if. The conditionals in the languages all accomplishthe same tasks only some languages use different methods. The iterativestructures allow similar tasks to be completed by all languages as well. For the most part the iterative structures of all the languages use atleast the keyword do or perhaps while. The key words may varybut the function is all the same. The structures are used for iteration. The blocks of statements in the iterative loop must be performed time andtime again. C++ and Java are the most similar languages when theconditional and iterative structures are compared. The two languagesthat are the most dissimilar are COBOL and Scheme. COBOL is lengthywith a few control structures. Scheme is compact with many controlstructures. When comparing the control structures of C++, Java, Pascal,Qbasic, COBOL, and Scheme, no one language can be said to be better thanany of the others.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.