is it hard for students from other states to understand the language/ lecture? ive been admitted but it seems the class teacher doesnt speak English well. what should I do? I cant learn if it isnt English.
Hello.
This is something that can be solved if you communicate your problem with the Lecturer. You need to express your concern to your respective teacher/lecturer in a respectful way so that they can understand and help you with this problem. Another option that you can go for,is that you can take extra classes to understand the subject better. Either way,it is important that you give your studies priority and do the things necessary to make it easier for you and score better. Best of luck!!
what are applets in java language
An applet is a Java program that can be embedded into a web page. It runs inside the web browser and works at client side. An applet is embedded in an HTML page using the APPLET or OBJECT tag and hosted on a web server.
Applets are used to make the web site more dynamic and entertaining.
applets meaning in java language
An applet is a Java program that can be embedded into a web page. It runs inside the web browser and works at client side. An applet is embedded in an HTML page using the APPLET or OBJECT tag and hosted on a web server.
packages offered in java language
Packages are similar to folders, which are mainly used to organize classes and interfaces.
Packages help us to write better and manageable code by preventing naming conflicts. Java provides some built-in packages which we can use but we can also create our own (user-defined) packages.
package is a collection of similar types of Java entities such as classes, interfaces, subclasses, exceptions, errors, and enums. A package can also contain sub-packages.
avoid inheritance in java language
Hello,
You cannot restrict inheritance in Java. But to prevent inheritance, use the keyword "final" when creating the class. The designers of the String class realized that it was not a candidate for inheritance and have prevented it from being extended.
Hope this helps
Thank You
multiple inheritance in java language
Multiple Inheritance is a feature of an object-oriented concept, where a class can inherit properties of more than one parent class. The problem occurs when there exist methods with the same signature in both the superclasses and subclass. On calling the method, the compiler cannot determine which class method to be called and even on calling which class method gets the priority
meaning of void in java language
Void is a keyword and used to specify that a method doesn’t return anything. As method doesn’t return anything, its return type is void . As soon as the method terminates, the java program terminates too. Hence, it doesn’t make any sense to return from method as JVM can’t do anything with the return value of it.
static meaning in java language
Static is a keywordwhich is when associated with a method, makes it a class related method. The method is static so that JVM can invoke it without instantiating the class. This also saves the unnecessary wastage of memory which would have been used by the object declared only for calling the method by the JVM.
secure in java language keyword
Hello,
Because Java compiles as bytecode which then runs inside a Virtual machine, it cannot access the computer it runs on like a natively compiled program can. The general reason why Java is considered to be more secure than, say C, is because it handles memory management for you.
Thank you
method overloading in java language
Suppose you have to perform addition of the given numbers but there can be any number of arguments, if you write the method such as a(int,int) for two parameters, and b(int,int,int) for three parameters then it may be difficult for you as well as other programmers to understand the behavior of the method because its name differs.