Ask a Question | Answer a Question! |
Submitting your question...
ResFinder - Thousands of Practice Papers
What are object datatypes. |
|
asked by Abhishek Agrawal (agrek) 8 years ago |
1 |
+ 2 more questions by agrek
Difference between control statement and control variable. |
|
asked by Abhishek Agrawal (agrek) 8 years ago |
1 |
To find the index of spaces cant we just write s.indexOf(' '); ? |
|
asked by Abhishek Agrawal (agrek) 8 years ago |
1 |
should we write the outputs for the programs??? |
|
asked by Vijay Kr
(krvijay28) 8 years ago |
2 | + 1 more questions by krvijay28
program to count the number of digits in a number(3 digit or 4 digit...) |
|
asked by Vijay Kr
(krvijay28) 8 years ago |
1 |
|
Guys what u doing now?? Plz don't tell me playing etcetc.. I mean solving papers or reading tb or exactly what I'm confused now.. |
|
asked by Abhishek Shyam (abhibenne) 8 years ago |
1 |
WAP to accept n elements in an array and seprate the single digit numbers into 1 array and double digit numbers into another array
Pls help...and giv me the simplest program |
|
asked by Bhavana (mpc123) 8 years ago |
2 |
Prog. for :
6 6 6 6 6 6
5 5 5 5 5
4 4 4 4
3 3 3
2 2
1
Any1 ? Thanks |
|
asked by Aavesh Kumar (aavesh) 8 years ago |
4 |
can anyone say in simple language what valueOf()function does |
|
asked by Adithya Kannan (adiketh198) 8 years ago |
1 |
Guys to all those who have got a confusion in static variables and non-static(instance variables ) i found an interesting example which will easily make you understand the difference.....plz see to it patiently....Worthy...
NON-STATIC Variables (Instance variables) : These variables' values are unique to each object of a class
Example : the currentSpeed of one BICYCLE is different from the currentSpeed of another
STATIC Variables ( Class variables ) : There is exactly one copy of these variables in existence no matter how many objects have been created for a single class.....
Example : No.of Gears for a particular Bicycle can be marked as static since the same number of gears will apply to any other bicycle too ..( here bicycle refers to objects ...that means no matter what object it might be the value of static variable remains same) ...Keyword final can be attached to them if you want the variable's value to be constant througout....
#HopeItHELPED |
|
asked by MP Harsha (student58) 8 years ago |
2 |
code for automorphic number below
import java.io.*;
public class Automorphic
{
public static void main(String args[])throws IOException
{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter a no.");
int n=Integer.parseInt(br.readLine());
int s= n*n;
int c=0;
while(n>0)
{
int rem1=n%10;
int rem=s%10;
if(rem1!=rem)
{
c++;
}
n=n/10;
s=s/10;
}
if (c==0)
{ System.out.println("Automorphic");
}else
{System.out.println("not");
}
}
} |
|
asked by Bhavesh Choudhari (bhavesh988) 8 years ago |
0 |
|