GIVE ADVICE ON JOKES, POLLS & ANYTHING ELSE

Select the types of questions to add to your feed:

Topic:
All
Career
Dating
Diet & Health
Family & Parenting
Married Life
Sex & Intimacy
Friendship
Race, Religion & Politics
Jokes, Polls & Anything Else
Recipes & Entertaining
Pets
Style & Beauty
House & Home
Age:
All
College
20s
30s
40s +
Gender:
For Women and Men
For Women Only
For Men Only
Rating:
PG-rated Questions Only
R-rated Questions Only
All Questions

POP'd Questions:
Display
Hide







Sort Questions

Close
Jokes, Polls & Anything Else / 28 minutes ago Back To Top

Don't you hate prank calls!!! Someone keeps calling me FROM THIS LONG DISTANCE NUMBER: 501-786-4500

I am so irritated! I did a white pages trace, but nothing came back which means that it is a cell phone or an unlisted number. The idiot didn't call private one of the times, which is how I got the number.

If everyone can call that number at least two times today to give them a taste of their own medicine, I would greatly appreciate it.

- Asked by A Thinker, Female, 18-21
Jokes, Polls & Anything Else / 42 minutes ago Back To Top

Other than answerology, what is your favorite website?

do you like news sites, social networking sites, game sites? what are you into?

- Asked by darchie, A Thinker, Female, 29-35, Chicago, Other Profession
Jokes, Polls & Anything Else / 1 hour ago Back To Top

Who cleans the bath tub in your house?

Yourself? Your husband> Your wife?

hell its his house too!

this is the *clean quote* of the day!

later folks,
argie

- Asked by argie, A Creative, Female, Who Cares?, Who Cares?
Jokes, Polls & Anything Else / 1 hour ago Back To Top

C-staring.............. ..

Okay, so who is my C-star fairy for today??????

hehehe, thank you!!!!!

i love voting for the c-star myself.

- Asked by nationalguardwife04, A Married Girl, Female, 29-35, Medical / Dental
Jokes, Polls & Anything Else / 1 hour ago Back To Top

Is your laptop any good?

My laptop screen went crazy and now has red/blue lines going through it.

So is your laptop reliable? And what model is it?

- Asked by mantis, A Creative, Male, 18-21, London, Student
Jokes, Polls & Anything Else / 1 hour ago Back To Top

I really hate java programming.

Even if I asked the teacher for help he isn't going to tell me because other peo-ple said they have emailed him and he doesn't really help much or answer the questions they asked in the first place.
And I am really frusterated with googling like mad about it and being even more confused.
So I just do what I can, so I dont make myself crazy because if I do that it will piss me off and ruin my whole day. So screw it! I just thought I would share.

- Asked by ellekassia26, A Creative, Female, 26-28, Artist / Musician / Writer
Jokes, Polls & Anything Else / 1 hour ago Back To Top

Body Spray all over bedroom

My grandmother gave me daughters, 9 and 4, some body spray for their birthdays this past year.

They just love to spray it all over their room. And, in moderation it smells really nice, but NOT when they spray it all over their room!

What do your kids do that is annoying, but cute at the same time?

Update: November 07, 2009.
aahhhhh, i feel better, pizzatroll is awesome!!!! he got his star........okay, now my day can continue in a good mood!

Update: November 07, 2009.
I need to apologize to pizzatroll, I didn't see his smiley face after his response...I am sorry, he deserves a STAR!!!!!

Update: November 07, 2009.
someone here, of course was being rude, but gotta have them here, or AO isn't AO, said that what i said wasn't cute...... OKAY, your opinion, but i think it is cute cuz they want their room to smell nice....if you can't answer a post without being rude and an ass, why bother? sheesh!

- Asked by nationalguardwife04, A Married Girl, Female, 29-35, Medical / Dental
Jokes, Polls & Anything Else / 1 hour ago Back To Top

Isn't it funny when you pop a post and people respond to the Post and not your Pop?

- Asked by bellabyrdie, A Thinker, Female, 26-28, Who Cares?
Jokes, Polls & Anything Else / 1 hour ago Back To Top

I need help with a java assignment. I am very stuck!

This is what I have:



import javax.swing.JOptionPane ;
public class Exercise612 {
public static void main(String[] args) {
int[] myList = {1, 2, 3, 4, 5, 6, 7, 8};
reverse(myList);

for (int i = 0; i < myList.length; i++)
System.out.print(myLis t[i] + " ");

public static int[] reverse(int[] list) {
for (int i = 0, j = list.length - 1; i < list.length / 2; i++, j--) {
int temp = list[i];
list[i] = list[j];
ist[j] = temp;
System.out.println("A fter reversing the array:");
} // end of reverse

// Display the array contents
public static void arrayDisplay(int[] arrayTwo) {
for (int i = 0; i < arrayTwo.length; i++)
System.out.println(" myArray[" + i +"]= " + arrayTwo[i]);
} // end of arrayDisplay


// Get array size.
String numStr =
JOptionPane.showInp utDialog("How many random numbers?");
int numRandom = Integer.parseInt(n umStr);

// Create an integer array, myArray, with the size of numRandom.
int[] myArray = new int[10];
// Call method "arrayData" to fill the array
arrayData(myArray);
// Call method "arrayDisplay" to display the array
arrayDisplay(myArray);
// Call method reverse to determine how many numbers in the array
reverse(myArray);
} // end of main

// Fill the array with random integers between 1 and 100.
public static void arrayData(int[] arrayOne) {
for (int i = 0; i < arrayOne.length; i++)
arrayOne[i] = (int)(Math.random ()*100) + 1;
} // end of arrayOne

// Display the array contents
public static void arrayDisplay(int[] arrayTwo) {
for (int i = 0; i < arrayTwo.length; i++)
System.out.print ln("myArray[" + i +"]= " + arrayTwo[i]);
} // end of arrayDisplay

return list;

}

}

The errors I am getting are:
illegal start of an expression...
class expected...

I am trying do this for the assignment:
Reversing an array-rewrite method without creating new arrays
display the array before and after you call the method "reserve"
I was supposed to embed the method reverse in another program I did and that included:
an array of 10 randomly generated integers between 1 and 100
count the numbers that are equal to or larger than 60 and calculate the corresponding percentage

But for the assignment that I gave the program for I don't have to do the percentage.

It kind of is supposed to look like this when I run it:
myArray[0] =
myArray[1] =
etc on down to
myArray what even the user puts in the dialog box "How many random numbers?"
The its supposed to say
After reversing the array:
myArray[0]=
myArray[1]=
etc

Any thoughts?

- Asked by ellekassia26, A Creative, Female, 26-28, Artist / Musician / Writer
Jokes, Polls & Anything Else / 1 hour ago Back To Top

Can you get off somebodys facebook friends by accident or is that a lie?

I was on a couple of familys facebook friends list. Than the next day it said I need to be there friend to see there profile. Whats up with that? I questioned one of them and she said she never did anything and doesnt know what I am talking about.

Update: November 07, 2009.
I had a fewing this wasnt a easy thing to do. Because it never happened to me. My own family I cant believe it.

- Asked by twilightzone85, A Mr. Nice Guy, Male, 22-25, Milwaukee, Food Service