Java Add On

Java Add On

what is java and how to install of java?​

Daftar Isi

1. what is java and how to install of java?​


Explanation:

Java is a class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. ... Java was originally developed by James Gosling at Sun Microsystems (which has since been acquired by Oracle) and released in 1995 as a core component of Sun Microsystems' Java platform.

How to install?

Open Internet Explorer icon and go to Java.com.

Select the Free Java Download button, and then select Agree and Start Free Download. ...

On the notification bar, select Run. ...

Select Install > Close.

If you're having problems installing or using Java, look for answers in the Java Help Center.


2. What is the difference between java and polymorphism in java?


[tex]\large\pink{\boxed{Answer:}}[/tex]

•Inheritance vs polymorphism JavaInheritance is one in which a new class is created (derived class) that inherits the features from the already existing class(Base class). Whereas polymorphism is that which can be defined in multiple forms. ... Inheritance supports the concept of reusability and reduces code length in object-oriented

programming.

Answer:

Polymorphism in Java is a concept by which we can perform a single action in different ways. ... So polymorphism means many forms. There are two types of polymorphism in Java: compile-time polymorphism and runtime polymorphism. We can perform polymorphism in java by method overloading and method overriding.


3. what is the function of java. Util in java programing?​


function. Provides classes that are fundamental to the design of the Java programming language. Defines interfaces and classes for the Java virtual machine to access files, file attributes, and file systems.

4. The Java man is an example of a:


Answer:

Homo erectus

Explanation:

I hope this helps.


5. What Java career platforms are you planning to take if you becamw java developer ​


First, you will need to learn how to code with Java. There are many great ways to learn Java, including podcasts, short courses, books. Java is one of the most used programming languages currently and the career options that it provides is surely lucrative

6. True or False: Identifiers in Java are, in simple words, name that you give to Java class, variables and methods.


True.................................................................

7. What is the file extension for Java Source Code?A .javaB .classC .exeD .obj​


Answer:

A po

Explanation:

Basta yan yung sagot


8. summarize the history of java and also the java versions


Answer:

Java is a high level, object-oriented, platform independent language. Java, unlike some languages before it allows for the use of words and commands instead of just symbols and numbers. Java is very flexible - it can be used to develop software as well as applets (small programs that run on webpages). ...


9. It is a computer program that performs when you utilize the java command to open the Java Virtual Machine​.


Answer:

Java Virtual Machine, or JVM, loads, verifies and executes Java bytecode. It is known as the interpreter or the core of Java programming language because it executes Java programming.

Explanation:

#carry on learning

10. In your opinion explain what is Java Programming Language? What are your expectations of the Java Programming Language?​


Answer:

Java is an object-oriented programming language that produces software for multiple platforms.

software's interface and how to read complex data, create applications and graphic user interfaces.


11. It is a platform that uses object oriented paradigm to develop applications for general purpose used to desktop PCs a.Java Card b. Java ME c. Java SE d. Java EE


Answer:

a.Java Card

Explanation:

hope it's help brainliest me if you want thank you❤


12. Isa pang tawag sa Homo Erectus o Taong Java na nakita sa Java, Indonesia *


Answer:

Homo erectus erectus,formely also anthropopithecus erectus pithecanthropus erectus

13. who created java?when was it launched?what is the original name?why it was called java?what are devices that run java?​


Explanation:

James Gosling

23 January 1996

Oak

The language was initially called Oak after an oak tree that stood outside Gosling's office. Later the project went by the name Green and was finally renamed Java, from Java coffee, the coffee from Indonesia.

Java powers set-top boxes, printers, Web cams, games, car navigation systems, lottery terminals, medical devices, parking payment stations, and more.


14. What is a parameter in java?


Answer:

Parameters are the variables that are listed as part of a method declaration. Each parameter must have a unique name and a defined data type.

Explanation:

Hope it helps

#BRAINLYFAST

#CarryOnLearning


15. How java keywords differ from java identifiers?​


Answer:

A keyword is a reserved word from the Java keyword list provide the compiler with instructions. As keywords are reserved, they cannot be used by the programmer for variable or method names. Identifiers are the names of variables, methods, classes, packages and interfaces. ... A keyword cannot be used as an identifier.

Explanation:

Hope it helps

#CarryOnLearning

#KeepOnLearning

16. What are the importance of rules or guidelines in using Java identifiers? How is Java keywords differ from Java identifiers?patulong po kahit maikling sagot lang salamat ​


Answer:

java is a key word that we know how to use

Explanation:


17. why so javascript and java have similar name?A.Javascript is a tripped-down version of javaB.Javascript's syntax is loosely based on Java'sC.They both originated on the island of javaD.None of the above​


Answer:

c

Explanation:

c they both originated on the islanf of javs


18. what is java programming?


Answer:

kinda Programming Language

Explanation:

Java is kind of programming language which can we use to build some programs, like Windows/Android software or mathematic calculation and visualization.

Another kind of programming language are Python, Scala, Ruby, C, C++, etc.


19. it is the puppeteer of java


Answer:

The dalang, sometimes referred to as dhalang or kawi dalang, is the puppeteer behind the performance. It is he who sits behind the screen, sings and narrates the dialogues of different characters of the story


20. What are the importance of rules or guidelines in using Java identifiers? How is Java keywords differ from Java identifiers?Pa help po ty​


Java Key.words vs. Identifiers

Java is a high-level, object-oriented programming language that was developed by James Gosling and his team of Sun Microsystems (1991). I remember that it was initially made with the purpose of designing a language for programs that could be embedded in consumer electric devices such as refrigerators. The name "Java" was inspired by the popular coffee beans of Java Island (Indonesia) that Gosling's team enjoyed drinking. No wonder Java has a logo of a coffee mug.

Java Key.words

These are words in Java that have a special purpose. They are predefined identifiers that you can use to identify the variables, classes, etc. you put in your code. You can't use them to represent the names of your variables, etc. Some of these key.words are the following:

[tex]\tt{public,\ class,\ char,\ int,\ boolean,\ float,\ long,\ double}[/tex]

Java Identifiers

These are words you use to represent your variables, methods, classes, etc. You decide on what identifier you want to use. However, you must take note that these tokens are case-sensitive. Meaning, the identifier "Hello" is not the same as "hello".

For example,

[tex]\text{\tt{//for those who already have basic knowledge of java}}[/tex]

[tex]\text{\tt{//java file na.me}}[/tex]

[tex]\text{\tt{Hello.java}}[/tex]

[tex]\text{\tt{//your code inside Hello.java}}[/tex]

[tex]\text{\tt{public class hello}}[/tex]

[tex]\text{\tt{\{}}[/tex]

[tex]\text{\tt{//statements}}[/tex]

[tex]\text{\tt{\}}}[/tex]

The code above will result in an error because your identifier "hello" is not the same as your file name "Hello". Instead, it must be like this:

[tex]\text{\tt{//your code inside Hello.java}}[/tex]

[tex]\text{\tt{public class Hello}}[/tex]

[tex]\text{\tt{\{}}[/tex]

[tex]\text{\tt{//statements}}[/tex]

[tex]\text{\tt{\}}}[/tex]

Rules for Java Identifiers

You already know that it is case-sensitive so you have to be careful in writing it. It must begin with a letter (either an upper case or lower case) or an underscore (_), or a dollar sign ($). You may also use numbers from 0-9.

However, you must not use underscore before the start of words read or write. Example: _read, _write. They mean something in java.

Personally, I write identifiers in lower cases such as [tex]\text{\tt{totalsum}}[/tex], [tex]\text{\tt{num}}[/tex], and [tex]\text{\tt{main}}[/tex]. There are also times when my identifiers are composed of two or more words combined, I write the first letter of the first word in a small case and the first letter of the second word and so on in upper cases. Examples, [tex]\text{\tt{greatestNum}}[/tex] and [tex]\text{\tt{daysLeft}}[/tex].

Why are rules or guidelines important in using Java identifiers?

These help in making your Java code clear and easy to read and understand. These could lead you to better collaboration and more efficient code reviews.

They reduce the possibility of errors or bugs during the compilation of your code.

They allow the coders to understand the functionality of a specific identifier and could aid them in debugging, optimizing, and maintaining the code over time.

Learn Morehttps://brainly.ph/question/24241777https://brainly.ph/question/24806187


21. True or False Java program is not always run in Java runtime environment with almost null interaction with system OS.


Answer:

true

yan lang hehheheeheereehehee


22. 2. Java mainly focuses on objects rather than processes. 4. widely used programming language 6. Java Kit Machine 10. Write Once, Run Anywhere 1. Java code can be executed on all the major platforms 3. Strong memory management 5. founder of Java (Lastname) 7. Java Environment 9. the compiler 8. Java___machine​


Answer:

VERTICAL

2.OBJECT-ORIENTED

4.JAVA

6DEVELOPMENT

8.VIRTUAL

10.WORA

HORIZONTAL

1.PORTABLE

3.ROBUST

5.GOSLING

7.RUNTIME

9.JAVAC

Explanation:

THANKS ME LATER I'm not sure if that's the correct answer to number 6 ^^


23. True or False: JDK or Java Design Kit is required to compile and run Java apps and applets. Answer:  ​


Answer:

True

Explanation:

Because it is required to compile to run Java apps and applets


24. Identify the following and answer on the space provided.____________1. The meaning of the acronym WORA.____________2. The intermediate codes which is written in hexadecimal byte by byte.____________3. The person who headed the development of Java.____________4. The meaning of the acronym OOP.____________5. A feature of Java that allows program to run in different types of operating system.____________6. Company that released the Java 1.0____________7. Inspiration of the name Java.____________8. Most popular Java platform.____________9. A java platform that is used in developing web applications.____________10. It is one of the name used before Java that was inspired by the treepasagot po please ​


Answer:

write once, run anywhereHexadecimal (not sure)James Gosling Object-oriented programmingbytecodeSun MicrosystemsThe name 'Java' originated in a meeting where about a dozen people got together to brainstorm," IntelliJ IDEA. (not sure)Java EEOak

Explanation:

ung sa 7 po its either yan po or from island po ung name


25. what are the importance of rules or guidelines in using java identifiers ? How is Java Keywords differ from java identifiers?​


Answer:

To importance of rules or guidelines in using java identifiers is...

keywords are standard identifiers and their functions is predefined by the compiler. We cannot use keywords as variable names, class names, or method names, or as any other identifier. Keywords in java are case sensitive, all characters being lower case.

Explanation:

To how is Java Keywords differ from java identifiers is...

A keyword is a reserved word from the Java keyword list provide the compiler with instructions. As keywords are reserved, they cannot be used by the programmer for variable or method names. Identifiers are the names of variables, methods, classes, packages and interfaces.A keyword cannot be used as an identifier.

26. Multiple ChoiceIt is consist of variables, operators,literals, and methodsO Java ExpressionsO Java StatementsOJava BlocksONone​


Answer:

java program

Explanation:

based on researched but it is not on the multile choice, so none


27. what is java stand for


Java is a set of computer software and specifications developed by Sun Microsystems. JAVA also means a large island in the Malay Archipelago that forms part of Indonesia.

Java is also a type of coffee.

its name come from java coffee which is coffee bean produced in the java islands of indonesia.......

28. what are the capabilities of java virtual machine and creating a java program​


Answer:

Java virtual machine (JVM) is a virtual machine that enables a computer to run Java programs as well as programs written in other languages that are also compiled to Java bytecode. The JVM is detailed by a specification that formally describes what is required in a JVM implementation

Explanation:

wala pong.


29. What is the role of Java Virtual Machine (JVM) in executing Java Programs? *​


Answer:

The JVM has two primary functions: to allow Java programs to run on any device or operating system (known as the "Write once, run anywhere" principle), and to manage and optimize program memory.

Explanation:

pa. braneliest nalang po tnx


30. 1. What is the old name for Java Programming?a. Java 2b. Javac. Oakd. C++​


Answer:

C. oak

Explanation:

Since 1991 created by James gosling


Video Terkait

Kategori english