[PDF] Self-test Java concepts 30 août 2019 You





Previous PDF Next PDF



Conditional statement: if-then if-else

http://faculty.ksu.edu.sa/sites/default/files/tutorial06_1.pdf



Java If Else If Statement

Giving a java statements associated block. What are evaluated. The syntax is extremely similar reason If statement. If else it with java if else if 



If Statements and Booleans

The simplest and most common form of boolean expression is the use a < in an if- statement as shown above. However boolean is a full primitive type in Java 



INFO0062 - Object-Oriented Programming - Programming with Java

If you are reading this document this means you went through the "Programming with Java" tutorial and installed Java as a consequence. If this isn't the 



Linstruction if - Ecrivez votre premier programme avec Java

public class Patate { public static void main(String[] args){ double poids; double prixTotal;. System.out.println("Quel poids?"); poids = MOOC.readDouble();.



Java If Statement With String Variable

This is holding blank creates two tokens and dash crashes with minus sign! This statement if statements is rewritten using java strings in an error. To java 



LNCS 7850 - VeriFast for Java: A Tutorial

In particular if a Java program typechecks



Self-test Java concepts

30 août 2019 You can find the right answers and guidelines for the evaluation at the end of this docu- ment. Note: If you want to follow the Java programming ...



Example Of Nested If Statement In Java

Eshna is nested code example. Packages in java is grammatical if statement: build web technology and turn it. One dry to code this up simply.



Decisions in Java – IF Statements Boolean Values & Variables In

Decisions in Java – IF Statements. Boolean Values & Variables. In order to make decisions Java uses the concept of true and false



[PDF] if-else statement in java - Tutorialspoint

IF-ELSE STATEMENT IN JAVA An if statement can be followed by an optional else statement which executes when the Boolean expression is false Syntax:



[PDF] Conditional statement: if-then if-else switch Exercise 1

Exercise 2: 1 Write the java statement that assigns 1 to x if y is greater than 0 2 Suppose that score is a variable of type double



[PDF] Conditional statements

In Java there are two forms of conditional statements: • the if-else statement to choose between two alternatives; • the switch statement to choose between 



[PDF] control statements If Ifelse Statement in Java with Examples When

If statement consists a condition followed by statement or a set of statements as shown below: if(condition){ Statement(s); } The statements gets executed 



Java If-Else Statements PDF - Scribd

The Java if statement is used to test the condition It checks boolean condition: true or false There are various types of if statement in java o if 



[PDF] if and if/else Statements reading - Building Java Programs

// This program computes two people's body mass index (BMI) // and compares them The code uses parameters and returns import java util *; // so that I can 



[PDF] Decision Making in Java (if if-else switch break continue jump)

22 nov 2019 · A programming language uses control statements to control the flow of execution of program based on certain conditions These are used to cause



[PDF] Chapter 3: Java Control Statements

In java we use the if statement to test a condition and decide the execution of a block of statements based on that condition result The if statement



[PDF] Structures conditionnelles [if] Support de Cours - Unisciel

Java - Structures conditionnelles (Cours) 1 Page 2 Unisciel algoprog – if00cours-texte [if] May 14 2018 2 Mots-Clés Conditions Sélective Si 



Creating PDF Files in Java - Baeldung

il y a 7 jours · A quick and practical guide to creating PDF files in Java

:

Self-test Java concepts

Document: e0838test.fm

30 August 2019

ABIS Training & Consulting

Diestsevest 32 / 4bB

-3000 LeuvenBelgium

TRAINING & CONSULTINGTRAINING & CONSULTING

30/08/2019 Self-test Java concepts 2

INTRODUCTION TO THE SELF-TEST JAVA

CONCEPTS

In order to get a reasonable indication for the prerequisites of the Java programming course, the following questionnaire might help to check your personal knowledge of the various topics discussed in the Java concepts course. In this Java test, 20 questions are posed. For most questions, there is only one answer possible. If multiple answers are possible, it will be clearly indicated. The question is answered correctly, if and only if all correct answers are given. There are no real trick questions (at least not intentional) but read question and answer attentively. You must take into account that this test will take you about 10 minutes. You can find the right answers and guidelines for the evaluation at the end of this docu- ment.

Note: If you want to follow the Java programming

course, you should also be familiar with an object oriented language and/or environment. For a test on your OO knowledge we refer to the Self-test OO concepts and techniques

30/08/2019 Self-test Java concepts 3

QUESTIONS SELF-TEST JAVA CONCEPTS

1. The Java specifications describe (2 correct answers)

[_] [a] a programming language [_] [b] an internet browser [_] [c] a set of libraries [_] [d] an operating system.

2.Java claims to be a universal language. Which statements about the Java language are cor-

rect? (3 correct answers): [_] [a] Java is a portable language [_] [b] Java is a weakly-typed language [_] [c] Java is an object-oriented language. [_] [d] Java is a machine-dependent language [_] [e] Java is a secure language

3. A .class file is a file that contains

O (a) a collection of methods and objects

O (b) compiled Java code

O (c) a set of security definitions to be used by the Java Virtual Machine O (d) an organised collection of objects (e.g. alphabetically sorted).

4. Which is NOT a function of a Java Virtual Machine (JVM)?

O (a) loading and interpretation of the byte code class file O (b) cleaning up unused objects via the garbage collector O (c) checking the operating system properties, for accessing the user's private configuration

O (d) memory management of the stack and the heap

5. Which is true about the standard Java libraries from the SDK?

O (a) javax.* packages are only available in the Java EE O (b) Standard Java libraries are only delivered by Oracle O (c) Standard Java libraries are only delivered in source format O (d) Standard Java libraries are developed based on the Java Community Process

30/08/2019 Self-test Java concepts 4

6. Which API is NOT part of the Java SE

O (a) RMI (Remote Method Invocation)

O (b) JMS (Java Messaging Services)

O (c) JDBC (Java Data Base Connectivity)

O (d) JNDI (Java Naming and Directory Interface)

7.Data sources are part of the

O (a) Input/Output APIs (java.io and java.nio)

O (b) noSQL specification

O (c) JDBC API

O (d) EJB API

8. The Java API for XML (JAXP) does NOT provide

O (a) a parser to analyse the incoming XML document

O (b) a conversion from .java to .xml files

O (c) a binding tool to convert XML defined tags to Java objects

O (d) support for XSLT transformations.

9. The Java SE security is based on the Sandbox model. Important components of this sandbox

are (2 correct answers) [_] [a] class loader [_] [b] security guard [_] [c] keystore [_] [d] byte-code verifier

10. In order to deploy Java applications you need

O (a) a Java-enabled web server

O (b) a licensed copy of the Oracle Java Development Kit O (c) a Linux or UNIX workstation with a permanent link to the Internet O (d) to compile the application components into a .class format, optionally packaged into a

JAR file.

30/08/2019 Self-test Java concepts 5

11. JavaScript

O (a) is an extension of the standard Java libraries, to create web applications O (b) is a Java application activated via the Windows Start button

O (c) is not at all based on Java

O (d) is used to bypass the Java security model

12. A pluggable look and feel GUI for any OS platform can be created with the (2 correct answers)

[_] [a] Swing API [_] [b] Abstract Windowing Toolkit (AWT) API [_] [c] PnP (Plug and Play) API [_] [d] Standard Widget Toolkit (SWT) API

13. Java annotations can be used to (2 correct answers):

[_] [a] describe compiler directives [_] [b] prepare the integration with other non-Java languages [_] [c] generate additional class files [_] [d] generate performance reports

14. A visual application builder tool can analyze how Java beans work, by using

O (a) the event delegation mechanism

O (b) persistence

O (c) method customization

O (d) introspection

15. Java servlets are

O (a) service routines for database access

O (b) secure applications

O (c) server side programs, an alternative to CGI scripts O (d) special applications, used for calling operating system services.

30/08/2019 Self-test Java concepts 6

16. A Java Server Page (JSP) is compiled into

O (a) a server module

O (b) a Java application

O (c) a servlet

O (d) a scriptlet

17. The EJB specification architecture defines (2 correct answers)

[_] [a] Transactional components [_] [b] Client side security and encryption [_] [c] Distributed object components [_] [d] a MVC (model-view-controller) architecture

18. The Java Connector Architecture (JCA) is used to

O (a) connect a non-Java client with a servlet

O (b) define the standard naming conventions for peer to peer connections O (c) standardise the integration with Enterprise Information Systems O (d) monitor the performance for distributed applications

19. Applications in a Java EE architecture

O (a) are typically based on web components and Enterprise Java Beans

O (b) must be created via a Java IDE

O (c) can run on different machines, but only with the same Operating System

O (d) need no runtime environment

20. What is NOT true about the Java ME specification

O (a) Java ME defines a special K Virtual Machine in the reference implementation O (b) Java ME is limited to devices with less than 1 MB of memory

O (c) Java ME contains GUI support

O (d) Java ME supports remote access via RMI

30/08/2019 Self-test Java concepts 7

EVALUATION.

Here are the correct answers to all questions:

1. a c

2. a c e

3. b 4. c 5. d 6. b 7. c 8. b

9. a d

10. d

11. c

12. a d

13. a c

14. d

15. c

16. c

17. a c

18. c

19. a

20. b

Give yourself 1 point for each correctly answered question (for questions with multiple solutions, this means that every correct answer should have been indicated). If your score is more than 80%, than this course is probably not useful for you any more. If you also have the necessary OO background, you are ready to start the Java program- ming course. When you have a score between 50% and 80%, you already know some of the concepts, but you will still learn a lot in the Java concepts course. When your score is less than 50%, we strongly suggest you follow the Java concepts course.quotesdbs_dbs45.pdfusesText_45
[PDF] conditions java

[PDF] aide memoire java

[PDF] comparer chaine de caractere java

[PDF] operateur java

[PDF] java & operator

[PDF] javascool boucle for

[PDF] exemple situation probleme

[PDF] javascool string

[PDF] tableau javascool

[PDF] fonction javascool

[PDF] javascool random

[PDF] situation problème dans l'enseignement

[PDF] situation problème didactique

[PDF] caractéristiques démographique définition

[PDF] exercices de démographie