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.
Omar
hi i am Omar, i like heavy metal music my favorite band is shadows fall. My favorite NFL team is the Atlanta Falcons. i like action movies, sometimes i like to watch different kinds of movies. like to watch comedy shows, I some times like to go out at night if i have time. If you want to know more about me just add me and I will Reply you with a message
What are your top ten movies of 2019?
This are Mine
1. Once Upon A Time in Hollywood 2. The Farewell 3. Lighthouse
4. Ford Vs Ferrari
5. Avengers Endgame
6. Midsummer
7. Fighting with my family
8. Shazam
9. Us
10. The Irishman
What is your favorite movies of this year?
2 AnswersMovies1 year agowhat has been the most underrated movie to win best picture?
I go with gladiator, crash, or birdman
3 AnswersMovies3 years agosurvey what is your favorite from these?
2 AnswersPolls & Surveys3 years agoSurvey: weirdest teacher(s) you ever has?
my weirdest one has an obsession with spider man. another, one will be he was like Hyde from that 70s show it was weird for me
3 AnswersPolls & Surveys3 years agodid you ever go to your high school reunion if so how was it?
mine will be next year not sure if I want to go I kind of hated going to school
2 AnswersPolls & Surveys3 years agohave you met a compulsive liar and what kind of stories did they told you?
I know a lot of compulsive liars and here are some stories they told me
- one said he was involved with the cartel and has a golden AK 47
- one knows how to fix all types of cars although she works in a dollar store and walks put when they offer her help to fox a car
- another one says his dad works in a movie studio and later I find out his dad works in some bar.
Polls & Surveys3 years agowhat were you doing in June 17, 1994?
20 AnswersHistory3 years agocan the IRS call you because you owe them money?
yesterday someone called me saying that i owed almost 7,000 dollars and that i didn't register for the IRS and that they will call the cops on me or something like that if i didn't pay. I am not sure what to do next time if they call me back.
can you give me some advice on what to do?
14 AnswersUnited States5 years agoDId you ever had a crazy neighbor?
I just had a few in my life. In some apartment i lived in Boulder, Colorado there was this lady for some reason will tell lies about me to my mom. Another, one was that one of my neighbors first we got along well and later he will accuse me of stealing his stuff, a few months later i moved away.
do you have crazy neighors or stories to share?
3 AnswersPolls & Surveys5 years agowhat was the first album you ever had?
my first album i bought was Hypnotize by System of a Down. I still have the Album.
do you still have the album when you bought it?
7 AnswersPolls & Surveys5 years agoim currently stock in my java program?
this is what i have to do
Write a recursive method named extractNonVowels. This method shall
take a String s as a parameter and returns a String without any non-
vowel. For example: If the String s = ``Hello world", after calling
extractVowels, the String shall be ``eoo"
this is what i have
public class FIndVowels
{
public static void main(String [] args)
{
System.out.println(extracNontVowels("bananas")
}
public static String extractNonVowels(String s)
{
if(s.length() <= 0)
{
return s;
}
else
{
if(s.charAt(0)=='a'||s.charAt(0)=='A')
return extractNonVowels(s.substring(1)) + s.charAt(0);
if(s.charAt(0)=='o'||s.charAt(0)=='O')
return extractNonVowels(s.substring(1)) + s.charAt(0);
if(s.charAt(0)=='e'||s.charAt(0)=='E')
return extractNonVowels(s.substring(1))+ s.charAt(0);
if(s.charAt(0)=='i'||s.charAt(0)=='I')
return extractNonVowels(s.substring(1)) + s.charAt(0);
if(s.charAt(0)=='u'||s.charAt(0)=='U')
return extractNonVowels(s.substring(1)) + s.charAt(0);
}
return extractNonVowels(s.substring(1));
}
}
im currently stuck
2 AnswersProgramming & Design6 years agoim having problems with my java program?
this is what i have to do
Write a recursive method named extractNonVowels. This method shall
take a String s as a parameter and returns a String without any non-
vowel. For example: If the String s = ``Hello world", after calling
extractVowels, the String shall be ``eoo"
this is what i have
public class FIndVowels
{
public static void main(String [] args)
{
System.out.println(extracNontVowels("bananas"));
}
public static String extractNonVowels(String s)
{
if(s.length() <= 0)
{
return s;
}
else
{
if(s.charAt(0)=='a'||s.charAt(0)=='A')
return extractNonVowels(s.substring(1)) + s.charAt(0);
if(s.charAt(0)=='o'||s.charAt(0)=='O')
return extractNonVowels(s.substring(1)) + s.charAt(0);
if(s.charAt(0)=='e'||s.charAt(0)=='E')
return extractNonVowels(s.substring(1))+ s.charAt(0);
if(s.charAt(0)=='i'||s.charAt(0)=='I')
return extractNonVowels(s.substring(1)) + s.charAt(0);
if(s.charAt(0)=='u'||s.charAt(0)=='U')
return extractNonVowels(s.substring(1)) + s.charAt(0);
}
return extractNonVowels(s.substring(1));
}
}
im currently stucl
1 AnswerProgramming & Design6 years agowhat was the last album you bought?
the last album i bought was the Exodus fabulous disaster album last month
10 AnswersPolls & Surveys6 years agoim having probelms with my python program?
this is my program
def main():
# the names of the files
file1 = "preTestExam01.txt"
file2 = "preTestExam02.txt"
checkForWord(file1,file2)
def checkForWord(f1,f2):
theFile = open(f1,'r')
theFile2 = open(f2,'r')
counter = 0
for word in theFile.read().split():
for word in theFile2.read().split():
if word in theFile:
counter += 1
print(word,counter)
main()
this is what i have to do
write a script that for every word that is in preTestExam01.txt checks many of them are in the preTestExam02.txt. your program shall print the counters for all words fomr preTestExam01.txt found in preTestExam01.txt.
my problem is that it doesnt want to count how many times the word appears in the files.
2 AnswersProgramming & Design6 years agohow do i sum the first 100 even numbers on python?
this is my program
evenNumber = int(input("enter a number: "))
for i in range(2,evenNumber):
evenNumber += 2
print(evenNumber)
im not sure if its right can you help me with it
4 AnswersProgramming & Design6 years agohow do you create a script in cygwin?
its part of a homework assignment and i have no clue how to do it.
3 AnswersProgramming & Design6 years agocan you help me with my accounting homework?
im currently have problems with it
this is the problem:
The following data regarding its common stock were reported by a corporation:
Authorized shares 20,000
issued shares 12,000
outstanding shares 2,400
1 AnswerInvesting6 years agocan you help me with my accounting problem?
im having trouble with it
A company's board of directors votes to declare a cash dividend of $.75 per share. The company has 25,000 shares authorized, 21,000 issued, and 18,900 shares outstanding. The total amount of the cash dividend is:
1 AnswerOther - Business & Finance6 years agocan you help me with my java problem?
when i run it it come out "ABCDE"
i want it like this "AEDCB"
this is what i currently have
public class recursion2
{
public static void main(String [] args)
{
char a [] = {'A', 'B','C','D','E'};
System.out.println(a);
Switch(a, 2,4);
}
public static void Switch(char a [], int b1, int b2)
{
char tmp;
if (b1 <= b2)
return;
else
{
tmp = a[b1];
a[b1] = a[b2];
a[b2] = tmp;
b1++;
b2--;
Switch(a, b1, b2);
}
}
}
2 AnswersProgramming & Design7 years ago