Advertisement
Guest User

Untitled

a guest
May 26th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. Java Basics (A)
  2. ============================
  3. Define the scope of variables
  4. Define the structure of a Java class
  5. Create executable Java applications with a main method; run a Java program from the command line; produce console output
  6. Import other Java packages to make them accessible in your code
  7. Compare and contrast the features and components of Java such as: platform independence, object orientation, encapsulation, etc.
  8.  
  9. Working With Java Data Types (B)
  10. =================================
  11. Declare and initialize variables (including casting of primitive data types)
  12. Differentiate between object reference variables and primitive variables
  13. Know how to read or write to object fields
  14. Explain an Object's Lifecycle (creation, "dereference by reassignment" and garbage collection)
  15. Develop code that uses wrapper classes such as Boolean, Double, and Integer
  16.  
  17. Using Operators and Decision Constructs (C)
  18. ===========================================
  19. Use Java operators; use parentheses to override operator precedence
  20. Test equality between Strings and other objects using == and equals ()
  21. Create if and if/else and ternary constructs
  22. Use a switch statement
  23.  
  24. Creating and Using Arrays (D)
  25. =============================
  26. Declare, instantiate, initialize and use a one-dimensional array
  27. Declare, instantiate, initialize and use multi-dimensional arrays
  28.  
  29. Using Loop Constructs (E)
  30. ==========================
  31. Create and use while loops
  32. Create and use for loops including the enhanced for loop
  33. Create and use do/while loops
  34. Compare loop constructs
  35. Use break and continue
  36.  
  37. Working with Methods and Encapsulation (F)
  38. =============================================
  39. Create methods with arguments and return values; including overloaded methods
  40. Apply the static keyword to methods and fields
  41. Create and overload constructors; differentiate between default and user defined constructors
  42. Apply access modifiers
  43. Apply encapsulation principles to a class
  44. Determine the effect upon object references and primitive values when they are passed into methods that change the values
  45.  
  46. Working with Inheritance (G)
  47. =============================
  48. Describe inheritance and its benefits
  49. Develop code that makes use of polymorphism; develop code that overrides methods; differentiate between the type of a reference and the type of an object
  50. Determine when casting is necessary
  51. Use super and this to access objects and constructors
  52. Use abstract classes and interfaces
  53.  
  54. Handling Exceptions (H)
  55. ========================
  56. Differentiate among checked exceptions, unchecked exceptions, and Errors
  57. Create a try-catch block and determine how exceptions alter normal program flow
  58. Describe the advantages of Exception handling
  59. Create and invoke a method that throws an exception
  60. Recognize common exception classes (such as NullPointerException, ArithmeticException, ArrayIndexOutOfBoundsException, ClassCastException)
  61.  
  62. Working with Selected classes from the Java API (I)
  63. ====================================================
  64. Manipulate data using the StringBuilder class and its methods
  65. Create and manipulate Strings
  66. Create and manipulate calendar data using classes from java.time.LocalDateTime, java.time.LocalDate, java.time.LocalTime, java.time.format.DateTimeFormatter, java.time.Period
  67. Declare and use an ArrayList of a given type
  68. Write a simple Lambda expression that consumes a Lambda Predicate expression
  69.  
  70.  
  71. Voluntario 1 : A , B, C de 9:00 a 10:00 am
  72.  
  73. Voluntario 2 : D E F de 10:00 a 11:00 am
  74.  
  75. Voluntario 3: G H de 11:00 a 12:00 pm
  76.  
  77. Voluntario 4: I de 12:00 a 13:00 pm
  78.  
  79. ALMUERZO de 13:00 a 14:30
  80.  
  81. Concurso por los 3 vouchers GRATUITOS para la certificación de 14:45 a 16:30 PM (Se necesita Voluntario 5, Voluntario 6 para que el concurso se de de la mejor manera)
  82.  
  83. Por favor, se ruega SERIEDAD y compromiso a los VOLUNTARIOS para que los asistentes reciban la teoría de los tópicos y puedan dar su mejor esfuerzo en el concurso.
  84. Entonces se asume que se sabe del tema, hará su material y ejercicios para que su explicación llegue a todos. Es la oportunidad para lucirse.
  85. Se espera su decisión estimado VOLUNTARIO hasta el 31 de Mayo, y si por X motivos no puede asistir avisenos el viernes hasta el mediodía para poder buscar reemplazo de emergencia.
  86.  
  87.  
  88. A los asistentes se les recomienda llegar temprano para repasar los tópicos y llevar laptop para el concurso, no hay PCs.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement