What are the names of Component subclasses that support
painting?
Answer / pradip mishra(b-tech it)
Assistive technologies — voice interfaces, screen readers,
alternate input devices, and so on — are useful not only
for people with disabilities, but also for people using
computers in non-office environments. For example, if
you're stuck in a traffic jam, you might use assistive
technologies to check your email, using only voice input
and output. The information that enables assistive
technologies can be used for other tools, as well, such as
automated GUI testers and input devices such as
touchscreens. Assistive technologies get information from
components using the Accessibility API,
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the difference between association, aggregation and inheritance relationships.
What is string value?
how many types of Inheritance?
What is java ceil?
public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?
How can we create a synchronized collection from given collection?
What is string syntax?
What is Java Annotations?
What are the important methods of java exception class?
Explain pass by reference and pass by value?
What is the best definition for data?
what models are available for event handling?