What is the Super Class of Exception in java?
Andesa Services, Benchmark, CitiGroup, CMC, Evergent, KOT Systems, Value Labs, Vijay infoart Solutions,
11 37947class A{ void me(){s.o.p("");} class B extends A{ void me() {s.o.p(" ");} class M{ A a=new B(); B b=new A(); a.me(); b.mne();} what is the output of this, how?
2 7920in a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or female?need steps to solve this?
TCS,
1 9499A, B and C are 8 bit nos. They are as follows: A 1 1 0 1 1 0 1 1 B 0 1 1 1 1 0 1 0 C 0 1 1 0 1 1 0 1 Find ( (A-B) u C )=? how to solve this need with steps
TCS,
5 23932While joining files if only two files are mentioned with jfile keyword, do we required to use join keyword????
2 4531Post New Programming Languages AllOther Questions
how to stop execution of step 3 in a job mainframe
Given an array all of whose elements are positive numbers, find the maximum sum of a subsequence with the constraint that no 2 numbers in the sequence should be adjacent in the array. So 3 2 7 10 should return 13 (sum of 3 and 10) or 3 2 5 10 7 should return 15 (sum of 3, 5 and 7)
Is class is a abstract datatype in java?
Write code to read the records from a file and load any array of size 99?make sure that you take care of all the error conditions?
what are the differences between CONS, LIST, and APPEND
Q1.Write a C program which asks the user for a number between 1 to 9 and shows the number. If the user inputs a number out of the specified range, the program should show an error and prompt the user for a valid input.
can any method return type may be constructor , or that method name allow
Definition of Singleton Class? what is the Purpose of it? what is the advantage?
suppose we have ten members of a physical file but we want the output of last 5 members only.how to achieve that?
I want to pass .pdf files as OlE Object to crystal report through VB6. Please any one guid me...
Tell me the jobs for the MCA Fresher in delhi, Noida..
how to generate dsnless connectivity in j2ee
differences between qtp10.0 and 11.0 ?
through which algorithm does the garbage collector works? how the garbage collector will understand that the object will going to be deleted?
One boy has to climb steps. He can climb 1 or 2 steps at a time. Write a function that will returns number of way a boy can climb the steps. Int WaytoSteps(int n) (eg:- suppose number of steps is n=4 ,the function will return 5 (one-one-one-one ,one-one-two, one-two-one-,two-one-one, two-two)