answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What uses who and whom correcctly Who loves science The class whom has the best projects will go on a trip Who is this package for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the site for cbse 9th social science projects?

Its-exploringgeography.wikispaces.com/.../CLASS+IX+Social+Science+Projects.pdf


What could students expect from a grade 6 science class?

more projects and h.w


How do you make a Hindi project for 8 class science fair?

Dont Make Hindi Projects ........ ;)


List of projects in sst class 8?

you have to find social science project based on history


What is the package class name that Display inherits from?

A Display class in contained in this package as well... org.eclipse.swt.widgets


What is public class in java?

Generally to declare the class we use the public,abstract,final,strictfp and default modifiers. When ever we declare the class as public ,it mean public class A{} it is possible to access this class inside the same package and outside of the current package. ex: package name: pack This package contain the public class like package pack; public class A{} In this senario it is possible to access the in the same package "pack" like package pack; class Demo { public static void main(String args[]) { A a=new A(); } } And also it is posible to access the A class outside of the "pack" package like in anothe package like "pack1" package pack1; import pack.A; class Demo1 { public static void main(String args[]) { A a=new A(); } }


How do you prevent a class from being accessed from one package to another package?

put class name as private


How do you execute a package in java?

You don't execute a package; you execute a class. A package is just a grouping of classes.You don't execute a package; you execute a class. A package is just a grouping of classes.You don't execute a package; you execute a class. A package is just a grouping of classes.You don't execute a package; you execute a class. A package is just a grouping of classes.


Can you store one class in two packages at once in Java?

No, each class is assigned to a single package. There is really no need to have one class in more than one package, either; you can use the "import" command in one class to use classes from another package.


List of projects for class 9 history and political science?

Study the causes and impacts of major historical events such as World War I, World War II, or the French Revolution. Research the political systems and government structures of different countries around the world. Explore the role of important historical figures like Mahatma Gandhi, Nelson Mandela, or Abraham Lincoln in shaping history and politics. Analyze current events or recent political movements and their significance in global politics.


Which keyword can protect a class in a package from accessibility by the classes outside the package?

default


How do you complie package in java?

You use javac <filename> to compile a class or package.