Answer Posted / suyog
This classes are support to use Primitive data type as object to take input from user in java
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
1.what is the vesition managment.
How to set fixed width in particular in html? if i type more character in this it will not push near . this is my question. can u tell me the answer...
diffrence between oracle apps , .NET , SAP
Given an array of size n, containing every element from 1 to n+1, except one. Find the missing element.
how to fin top two miximum values in sql? not 2nd both max value of 1st and 2nd both have to find out
what is session state?
What is ur porject Architecture? If anyone ask what i have to specify here..
what is diff bet ref variable & instance of class
which book we learned this mantis? how many version are realsed this mantis upto now?
Given an array of size n. It contains numbers in the range 1 to n. Find the numbers which aren?t present.
Given a Binary Search Tree, write a program to print the kth smallest element without using any static/global variable. You can?t pass the value k to any function also.
How to connect to ms word wit VB ojective is to prepare s/w to generate question paper , selects questions randomly from the ms access , database
what is the difference between read the data from table and infotype
define profiler???
what is the main usage of an abstract keyword?please follow the program class A { void display() { System.out.println("hai"); } void print() { } } class B extends A { void print() { System.out.println("Hello"); } } In this program i was gives the implementation of print() according to my requirements in subclass.And there is no definition in superclass then why we can use abstract keyword before a method that i want to gives definition in other classes,is any mistakes in the above usage of method?