Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

dasari mahesh


{ City } hyd
< Country > india
* Profession * faculty
User No # 79167
Total Questions Posted # 1
Total Answers Posted # 6

Total Answers Posted for My Questions # 3
Total Views for My Questions # 5130

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 6
Questions / { dasari mahesh }
Questions Answers Category Views Company eMail

string is a class or data type in java?

3 OOPS 5130




Answers / { dasari mahesh }

Question { Advent Global Solutions, 100757 }

main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}


Answer

x=55
y=57

Is This Answer Correct ?    0 Yes 0 No

Question { Wipro, 6452 }

i heard that JVM internally contains pointers...is this true?


Answer

no

Is This Answer Correct ?    0 Yes 4 No


Question { 9430 }

what is meant by Encapsulation?Explain with an example?


Answer

combined together
ex:tablet

Is This Answer Correct ?    1 Yes 1 No

Question { Tech Mahindra, 11355 }

What is constructor


Answer

constructor is similar to a method.
*constructor name ,class name should be same
*constructor have a parameters
*does not return any value

*

Is This Answer Correct ?    1 Yes 0 No

Question { 3276 }

how can program polindrome using java


Answer

import java.lang.*;
class Plindrome
{
public static void main(String arg[])
{
int n=121,m;
int rev,rem;
rev=0;m=n;
while(n>0)
{
rem=n%10;
rev=rev*10+rem;
n=n/10;
}
if(m==rev)
{
System.out.println("palindrome",+rev);
}
else
{
System.out.println("not palindrome",+rev);
}
}
}

Is This Answer Correct ?    2 Yes 0 No

Question { 6065 }

What is Function Pointer? Explain with example?


Answer

pointer is a variable witch can strore address of another
variable

Is This Answer Correct ?    0 Yes 1 No