Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 31,179 points

Krithika

Favorite Answers11%
Answers465
  • How to reduce the spiciness of chicken biriyani once it is cooked?

    once the food is cooked how to reduce the spiciness,i made chicken biriyani which is too spicy

    3 AnswersCooking & Recipes7 years ago
  • Need Suggestions about job?

    Hai i just need to know whether there are options of making career in BPO?Can we avoid night shifts once we gain experience for year or two? i got a job in a very reputed MNC.but im thinking to join.I just need the hierarchy of BPO jobs

    2 AnswersOther - Careers & Employment8 years ago
  • Pls help in programming with strings in java?

    write a java program that should change the case of every second character to the upper case and print them

    for instance:input:hello world

    output should be:hElLo WoRlD

    thanks in advance

    4 AnswersProgramming & Design9 years ago
  • MIcromax Q1 Auto refreshing?

    Hai im using Micromax Q1 mobile.Today it started auto refreshing..first it Displayed Refresh Text and then It automatically got Restarting..Donno wats th problem?

    1 AnswerPDAs & Handhelds9 years ago
  • Average problem pls Help !!!!?

    The average weight of 10 oarsmen in a boat increases by 1.8 kg. when one of the crew who weighs 53 kg is replaced by a new man. Find the weight of the new man.explain with steps

    8 AnswersMathematics9 years ago
  • Difference between runtime exception and error!!!!!!!!!?

    difference between runtime exception and error..I know both cums under unchecked exceptions and errors are not mandatory to be handled..but im in search of the some more differences between these two.

    5 AnswersProgramming & Design9 years ago
  • what are Varargs in java!?

    what are varargs and what is the use of varargs

    1 AnswerProgramming & Design9 years ago
  • Time and Distance problem!!?

    A thief is noticed by a policeman from a distance of 200 m. The thief starts runing the policeman chases him. The thief and the policeman run at the rate of 10 and 11 km per hour respectively. What is the distance between them after 6 minu:tes[/b].

    (a) 100 m

    (b) 150 m

    (c) 190 m

    d) 200 m

    the ans is a)100

    pls provide the steps

    5 AnswersMathematics9 years ago
  • Confused with Java Hash Set!!!!!!!!!!?

    2. public class WrappedString {

    3. private String s;

    4. public WrappedString(String s) { this.s = s; }

    5. public static void main(String[] args) {

    6. HashSet<Object> hs = new HashSet<Object>();

    7. WrappedString ws1 = new WrappedString("aardvark");

    8. WrappedString ws2 = new WrappedString("aardvark");

    9. String s1 = new String("aardvark");

    10. String s2 = new String("aardvark");

    11. hs.add(ws1); hs.add(ws2); hs.add(s1); hs.add(s2);

    12. System.out.println(hs.size());

    }

    }

    What is the result?

    A. 0

    B. 1

    C. 2

    D. 3

    E. 4

    F. Compilation fails.

    G. An exception is thrown at runtime

    we say that Hash set stores the unique values..

    so i thought the size would be 1

    but the size is 3.

    how is this possible??

    can nyne xplain in detail??

    2 AnswersProgramming & Design9 years ago
  • Java Help pls!!!!!!!!!!?

    String csv = "Sue,5,true,3";

    Scanner scanner = new Scanner( csv );

    scanner.useDelimiter(",");

    int age = scanner.nextInt();

    What is the result?

    A. Compilation fails.

    B. After line 15, the value of age is 5.

    C. After line 15, the value of age is 3.

    D. An exception is thrown at runtime.

    the given answer is D?? why..

    I thought it throws exception coz ther is no main() method in this code..

    Am I right..if wrong pls correct me....

    thanks in advance

    3 AnswersProgramming & Design9 years ago
  • Regarding Garbage Collection?

    1.class Snoochy {

    2.Boochy booch;

    3.public Snoochy() { booch = new Boochy(this); }

    4.}

    5.class Boochy {

    6.Snoochy snooch;

    7.public Boochy(Snoochy s) { snooch = s; }

    8.} And the statements

    9.public static void main(String[] args) {

    10.Snoochy snoog = new Snoochy();

    11.snoog = null;

    // more code here

    }

    Which statement is true about the objects referenced by snoog, snooch, and booch immediately after line 23 executes?

    A. None of these objects are eligible for garbage collection.

    B. Only the object referenced by booch is eligible for garbage collection.

    C. Only the object referenced by snoog is eligible for garbage collection.

    D. Only the object referenced by snooch is eligible for garbage collection.

    E. The objects referenced by snooch and booch are eligible for garbage collection.

    i thought the answer is C but the answer is E.can anyone explain hw is it possible ??

    coz in line 11 we have assigned snoog=null.then it should be ready for garbage collection but why its not counted??

    pls explain in detail

    2 AnswersProgramming & Design9 years ago
  • java Exception Help!!!?

    11. static class A {

    12. void process() throws Exception { throw new Exception(); }

    13. }

    14. static class B extends A {

    15. void process() { System.out.println("B"); }

    16. }

    17. public static void main(String[] args) {

    18. new B().process();

    19. } What is the result?

    A. B

    B. The code runs with no output.

    C. Compilation fails because of an error in line 12.

    D. Compilation fails because of an error in line 15.

    E. Compilation fails because of an error in line 18.

    the Answer given is A

    How is it possible as the thrown exception in line12 is not caught anywhere.the how can it run without any exception??

    3 AnswersProgramming & Design9 years ago
  • Java Help pls!!!!!!!!!!?

    interface Animal

    {

    void makeNoise();

    }

    4. class Horse implements Animal{

    5. Long weight = 1200L;

    6. public void makeNoise() { System.out.println("whinny"); }

    7. }

    8. public class Icelandic extends Horse {

    9. public void makeNoise() {

    System.out.println("vinny"); }

    10. public static void main(String[] args) {

    11. Icelandic i1 = new Icelandic();

    12. Icelandic i2 = new Icelandic();

    13. Icelandic i3 = new Icelandic();

    14. i3 = i1; i1 = i2; i2 = null; i3 = i1;

    15. }

    16. }

    in this program what are all the objects that are eligible for garbage collection

    pls explain in detail

    thanks in advance

    4 AnswersProgramming & Design9 years ago
  • what does uni polar world mean?

    what is the exact meaning of uni polar world

    4 AnswersCurrent Events9 years ago
  • This a GD topic..pls help me by giving ur views!!!!!!!!?

    albeit HOCKEY being the national game,why it is not Supported in India?Who is responsible Government or People?????

    1 AnswerCurrent Events9 years ago
  • What is V and A test?

    what is V and A test in IT sector..I thought it as Verbal and Analytical but i was wrong..can anyone tell me what is V and A test

    1 AnswerCurrent Events9 years ago
  • Govt contribution to IT comments pls?

    "Govt contribution to IT"..can anyone help me by providing for and against comments for this topic

    thanks in advance

    2 AnswersCurrent Events9 years ago
  • Java Doubt Help Pls!!!!!!!!!!?

    difference between public static void main(String args[]) and private static void main(String args[]) in java??

    3 AnswersProgramming & Design9 years ago
  • pls help me in solving this!!?

    an array T[50][20] is stord in d memory along d colmn wit each element occupyng 4 bytes.Find out d base address nd address of element T[30][15],

    if an element T[25][10] is stord at memory locatn 9800..

    how to find the memory location the answer is 10,0820..

    1 AnswerProgramming & Design9 years ago
  • how to track the Current location of the train?

    hi how to trace the current location of a train?i tried indianrailinfo but its showing according to the scedule and not showing the current location.could anyone suggest m some websites for tracking the currennt location of a train.thanks in advance

    4 AnswersRail9 years ago