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.
![](https://s.yimg.com/ag/images/4545/37422959343_192d7f_192sq.jpg)
?
Christian who has put some serious thinking on prayer, need your idea.?
There is a 8 pages of articles about prayer here http://fitarika.weebly.com/3/post/2011/10/part-of-... , can you put what was revealed to you to add on it.
It was not too theological but can meet all christian reader's understanding
1 AnswerReligion & Spirituality10 years agoMormons, do you know that for Mormons God has not always been the Supreme Being of the universe?
The Church of Jesus Christ of Latter Day Saints (Mormons) teaches that God "has not always been the Supreme Being of the universe, but attained that status through righteous living and persistent effort. They believe God the Father has a "body of flesh and bones as tangible as man's."
Quoted from: http://www.forgottenword.org/onlytruegod.html
12 AnswersReligion & Spirituality1 decade agoWhat's wrong with this Java code please?
Let:
public class record {
String name;
public void show(){
System.out.println("Name: "+name);
}
}
This one works very well:
public class test {
static record rec;
public static void main(String[] args) {
rec = new record;
rec.name="Toky";
rec.show();
}
}
So what's wrong with this one ? (no error during the edition, but can't run with the message : Exception in thread "main" java.lang.NullPointerException
at BPlusTree.test.main(test.java:8))
public class test {
static record[] rec;
public static void main(String[] args) {
rec = new record[2];
rec[1].name="Toky";
rec[1].show();
}
}
THANKS A LOT.
1 AnswerProgramming & Design1 decade agoChristian: Stop with the Athe isn't better?
I think, how about using our time to give advice christian-christian, than spend it with them?
7 AnswersReligion & Spirituality1 decade agoWhy there is always memory write problem in C++, when I write in a pointer like : cin<<*xxx?
The main problem is: I'd like to write a huge integer (more than 50 digits) then, I'd like to use pointer to take one by one the elements and write it in an table.
Thank you.
French: pourquoi, il y a toujours de probleme d'ecriture quand j'essai d'ecrire dans une pointeur dans C++?
2 AnswersProgrammation1 decade ago1 year later, the question remain not resolved. Anybody can answer please for the novice developer?
what is the running time of the "while" loop?
3 AnswersProgramming & Design1 decade ago