1 / 35

440 Review 2012

440 Review 2012. Topics. Covers everything in slides from the very beginning. Language classification, history, and comparison How to describe a (programming) language Syntax (not covered) Semantics ( Axiomatic semantics) Programming paradigms

wardah
Download Presentation

440 Review 2012

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 440 Review 2012

  2. Topics • Covers everything • in slides • from the very beginning. • Language classification, history, and comparison • How to describe a (programming) language • Syntax (not covered) • Semantics ( Axiomatic semantics) • Programming paradigms • Structured programming vs. Unstructured programming • Imperative programming vs. Declarative programming • Functional programming (Scheme, lambda calculus, XSLT, Mapreduce) • Logic programming (Prolog, Horn Clause) • Object-oriented programming (polymorphism, persistence) • Aspect Oriented Programming (AspectJ) • Concepts and programming

  3. Types of questions • Multiple choices; true/false; filling in blanks. • Running results of programs; • Modify programs; • Short explanations; • Others.

  4. Which of the following is not an OO programming language? • Java • C++ • Smalltalk • Simula 67 • None of the above.

  5. The following figure is used to explain which language: • Prism language • Requirement language • Aspect oriented language • Persistent programming language • Business process language

  6. Which of the following language is not a declarative language? • Java • Prolog • SQL • Scheme • None of the above. • Imperative: a programming paradigm that describes computation in terms of a program state and statements that change the program state. • A program is "declarative" if it describes what something is, rather than how to create it. • Imperative programs make the algorithm explicit and leave the goal implicit; • Declarative programs make the goal explicit and leave the algorithm implicit. • Examples of declarative languages: • Functional programming languages, Logic programming languages, SQL.

  7. Which of the following is a script language? • Java • C# • PHP • Prolog • Scheme • None of the above. • Scripting: connecting diverse pre-existing components to accomplish a new related task. • Favor rapid development over efficiency of execution; • Often implemented with interpreters rather than compilers; • Strong at communication with program components written in other languages.

  8. BNF was first used to describe the syntax of which language: • C • Fortran • Algol • COBOL • LISP • None of the above

  9. ALGOL (ALGOrithmic Language) • de facto standard way to report algorithms in print • Designed to improve Fortran • John Backus developed the Backus Normal/Naur Form method of describing programming languages. • ALGOL 60 inspired many languages that followed it "ALGOL 60 was a great improvement on its successors.“ The full quote is "Here is a language so far ahead of its time, that it was not only an improvement on its predecessors, but also on nearly all its successors" --C. A. R Hoare procedure Absmax(a) Size:(n, m) Result:(y) Subscripts:(i, k); value n, m; array a; integer n, m, i, k; real y; comment The absolute greatest element of the matrix a, of size n by m is transferred to y, and the subscripts of this element to i and k; begininteger p, q; y := 0; i := k := 1; for p:=1 step 1 until n do for q:=1 step 1 until m do if abs(a[p, q]) > y then begin y := abs(a[p, q]); i := p; k := q end end Absmax

  10. Which of the following is not part of a compiler? • Scanner; • Parser; • Code generator; • Optimizer; • Interpreter; • None of the above.

  11. Compilation and execution Source program compiler Lexical Analysis(scanning) Syntactic Analysis(parsing) Token Sequence Symbol Table Parse Tree CodeOptimization Abstract Program(Intermediate code) SemanticAnalysis Abstract Program(Optimized) Classification by implementation methods Loader / Linker CodeGeneration Object Program(Native Code) Target Program Input Data Computer Output Data

  12. When you run the following Java program: public class Hello { public static void main(String [ ] a){ System.out.println("Hello"); } } • How many classes will be loaded into the system? • One • Two • Three • Hundreds

  13. Run java -verbose public class Hello { public static void main(String [] a){ System.out.println("Hello"); } } sol:~/440>java -verbose Hello [Opened /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Opened /usr/jdk/instances/jdk1.5.0/jre/lib/jsse.jar] [Opened /usr/jdk/instances/jdk1.5.0/jre/lib/jce.jar] [Opened /usr/jdk/instances/jdk1.5.0/jre/lib/charsets.jar] [Loaded java.lang.Object from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.io.Serializable from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.Comparable from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.CharSequence from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.String from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.reflect.GenericDeclaration from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.reflect.Type from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.reflect.AnnotatedElement from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.Class from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.Cloneable from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.ClassLoader from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.System from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] … (hundreds of related classes) [Loaded Hello from file:/global/fac2/jlu/440/] Hello [Loaded java.lang.Shutdown from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar] [Loaded java.lang.Shutdown$Lock from /usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar]

  14. A program written in an interpreted language is usually • slow to run; • slow to develop; • slow to compile; • None of the above.

  15. Interpreted language • Programs are executed from source form, by an interpreter. • many languages have both compilers and interpreters, including Lisp, BASIC, and Python. • Disadvantages: • Much slower • Real time translation; • Initially, interpreted languages were compiled line-by-line; each line was compiled as it was about to be executed, and if a loop or subroutine caused certain lines to be executed multiple times, they would be recompiled every time. • Require more space. • Source code, symbol table, … • Advantage of interpreted languages • Easy implementation of source-level debugging operations, because run-time errors can refer to source-level units • E.g., if an array index is out of range, the error message can easily indicate the source line and the name of the array. • It can take less time to interpret it than the total time required to compile and run it. This is especially important when prototyping and testing code when an edit-interpret-debug cycle can often be much shorter than an edit-compile-run-debug cycle. (e.g., csh) Classification by implementation methods

  16. Compared with declarative languages, which of the following is not true for imperative languages: • Can have side effects; • More efficient to run; • Closer to computer; • Harder to implement the language; • None of the above. • True or false: Declarative languages are more difficult to implement than imperative languages.

  17. Why is it difficult to implement declarative languages? • By definition, it specifies what the task is, not the way how to solve it. • Consider the following query: • customers(id, name, phone) • Orders(o-id, c-id, product, price, date) SELECT product, price, date FROM customers, orders WHERE customers.id = orders.c-id AND customers.name=“john” • It declares what we want. Does not specify how to implement it. • e.g. which condition to run first? • There are many different ways to implement. • A naïve one would be very expensive (construct the Cartesian product of the two tables, join two ids first) would be very expensive; • Query engine (compiler) will take care of these implementation issue. • Conclusions: • Declarative programming focus on higher level of abstraction; • It is more difficult to implement.

  18. machine • True or false: Imperative languages are very high level programming languages. Very high level Language High Level Language Assembly Language Machine Language thought Languages Closer to humans

  19. Which of the following is not a technology for distributed objects? • CORBA • Java RMI • EJB • AspectJ

  20. True or false: A compiler translates source code of one high level language to another high level language. • Compilation: translating high-level program (source language) into machine code (machine language) • Slow translation, fast execution • High level to high level language translation: programming language transformation

  21. Which of the following is the rule for if statement? None of above

  22. Which of the following is the rule for while statement?

  23. Given the following Hoare triple {true} f := 1; n:=10; while (n != 0) do ( f := n*f; n:=n-1; ) {f=10!} • Write its loop invariant. You don’t need to write the proof of the program.

  24. Solution: n f 10 1 9 10*1 8 9*10*1 7 8*9*10*1 … P is f=10!/n!

  25. Given the following Hoare triple {true} x := 0; f := 1; while ( x < n ) do (x := x + 1; f := f * x;) {f=n!} • Write its loop invariant. f=x! ∧ x<=n

  26. Prove that the following Hoare triple is true. You should write down the details of derivation. In each step please write the rule name that is used. {x=2  y=0} x:=y; y:=x; {x=0  y=0} Solution: {x=0  y=0 [x/y]} y:=x; {x=0  y=0}, by assignment Axiom {x=0  x=0} y:=x; {x=0  y=0}, by simplification • {x=0} y:=x; {x=0  y=0}, by simplification {x=0 [y/x]} x:=y; {x=0}, by assignment axiom • {y=0} x:=y; {x=0}, by simplification By sequential composition rule and a), b), c) {y=0} x:=y; y:=x; {x=0  y=0} • x=2  y=0  y=0 , by logic by Consequence rule and c), d), we can get • {x=2  y=0} x:=y; y:=x; {x=0  y=0}

  27. True or false: Modern high level programming languages removed GOTO statement, hence they can’t describe some computational tasks that could have been described using GOTO statement.

  28. Y N C Y N C S1 S2 S Structured programming • Any program can be goto-free (1966, Böhm and Jacopini, CACM) • any program with gotos could be transformed into a goto-free form involving only • Sequential composition • choice (IF THEN ELSE) and • loops (WHILE condition DO xxx), • possibly with duplicated code and/or the addition of Boolean variables (true/false flags). Classification by programming paradigms S1 S2

  29. If we can prove the Hoare triple {P} S {Q}, we can say that program S is totally correct for the pre-condition P and pos-condition Q. • {P} S {Q} means “if we assume that P holds before S starts executing, then Q holds at the end of the execution of S” • I.e., if we assume P before execution of S, Q is guaranteed after execution of S • To prove total correctness we also have to prove that the loop terminates

  30. List four different language paradigms and give at least one example language for each paradigm. • Aspect-oriented programming addresses the problem of crosscutting concerns. What are crosscutting concerns and what are the two main problems of crosscutting concerns?

  31. Given the following partial program, fill in the missing part so that it will print the following: Hello Harry, having fun? public class MessageCommunicator { public static void deliver(String person, String message) { System.out.print(person + ", " + message); }} public class Test { public static void main(String[] args) { MessageCommunicator.deliver("Harry", "having fun?"); }} public aspect HindiSalutationAspect { pointcutsayToPerson(String person) : call(voidMessageCommunicator.deliver(____________ )) && args(____________________________); void around(String person) : sayToPerson(person) {proceed(______________); }}

  32. //Listing 2.4 HindiSalutationAspect.java public aspect HindiSalutationAspect { pointcutsayToPerson(String person): call(void helloV3.MessageCommunicator.deliver(String, String)) && args(person, String); void around(String person) : sayToPerson(person) { proceed(person + " -ji"); } }

  33. For our Account example in this course, suppose the main method will run the following two statements in sequel. The initial account balance is zero. account.credit(100); account.debit(20); • What will be the account balance for the following advice? void around(): call(* *.credit(..)){ proceed();} • What will be the balance if we run the following advice instead? void around(float amount): call(* *.credit(float)) && args(amount) { proceed(amount+1000); } • What will be the balance for the following advice without including the previous two advices: • void around(): call(* *.debit(..)){ }

  34. Functional and logic programming (and everything else) will be tested again

More Related