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.

rajavision108
Calc 3 Double Integration Help?
A question is asking me to double integrate cos(3x+4y)dA over R=[2,6] x [2,5]
How do I interpret [2,6] x [2,5] ??
3 AnswersMathematics1 decade agoCalculus Arc Length Help! Adding 1 to y'?
Why does 1+ [1/2((e^x)-(e^-x))]^2 equal [1/2((e^x)+(e^-x))]^2 ???
1 AnswerMathematics1 decade agohow do i add a friend on youtube if i know they have an account but can't find their channel?
i know my friend's user name, but i can't find her channel and i want to share videos with her!
2 AnswersYouTube1 decade agoInvalid Qualifier in Visual Basic?
Dim SourceRange As Range, DestRange As Range
Dim DestSheet As Worksheet, Lr As Long
Dim Number
Dim ccfid As String
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
'fill in the Source Sheet and range
Set SourceRange = Sheets("Verify").Range("A69:J69")
Number = Sheets("Verify").Range("F11")
ccfid = Sheets("Verify").Range("F7")
Dim length As Integer
length = ccfid.length
If length < 8 Then
GoTo IDError
ElseIf length > 8 Then
GoTo IDError
Else: GoTo NoErrors
End If
above is a snippet of my code.
i'm getting the error on the line length=ccfid.length
i'm using microsoft excel 2000
1 AnswerProgramming & Design1 decade agoCreating popups in Excel?
I want to write an Excel worksheet that when you open it, the first thing that happens is a popup window that asks the user to enter data into 3 or 4 fields. How would I do this?
2 AnswersSoftware1 decade agoSaving Java file as MS-DOS batch file?
I just finished creating a game and i wanted to create a batch file to run it with a simple double-click. I saved the game's runner file as .bat, but when i clicked on the icon, command prompt popped up, gave a bunch of errors and then closed automatically.
I know that my game works because i can run it from the java file. Why won't this work?
1 AnswerOther - Computers1 decade agoHelp with Java BufferedImage?
I have a picture that I want to convert into a BufferedImage so that I can check the colors of each individual pixel. How should I go about doing this in Java?
1 AnswerProgramming & Design1 decade agoCan anyone write a recursive solution to the Triangle Peg Puzzle in Java?
The object of the game is to have only one peg left standing.
You can move pegs only by jumping over other pegs and when you jump over a peg, it is removed from the board.
1 AnswerProgramming & Design1 decade agoWhat song did U2 sing at the Lincoln Memorial today?
I really loved that song!
1 AnswerOther - Music1 decade agoIf I use a proxy to bypass a filter that logs each site i visit, can it log the proxy as well?
My computer has Yahoo Parental Controls on it and it keeps track of every website I visit. However, if I use a proxy, will the proxy's website be logged?
6 AnswersSecurity1 decade agoHIGH SCHOOL MODEL UNITED NATIONS CONFERENCES (2009)?
I am an officer in the MUN club of my school and would like to know if anybody knows about any upcoming conferences in the Northeast United States that host high school teams?!?1
2 AnswersOther - Education1 decade agoHelp with java syntax? questions about "\"+other things?
I know that System.out.print("\n") makes a new line... \t does a tab..
are there any other \+character combos that do cool things? i know \7 makes the system beep! what does \b do? are there any more? list as many as you know that work.. whoever has the most gets best answer!
2 AnswersProgramming & Design1 decade agoMATH PEOPLE NEEDED! How can I find the total volume in liters of a lake given the info detailed below?
5280 ft= 1 mile
3.28 ft= 1 meter
1 cc = 1 mL
LENGTH=241 miles
BREADTH= 57 miles
AVERAGE DEPTH= 62.4 ft
MAXIMUM DEPTH= 210 ft
TOTAL DRAINAGE BASIN AREA= 30,140 sq miles
SHORELINE LENGTH (including islands) = 871 miles
ELEVATION= 569 ft./ 173 meters
OUTLET = Niagara River and Welland Canal
RETENTION/REPLACEMENT TIME= 2.6 years
This is Lake Erie by the way!
1 AnswerMathematics1 decade agoWhy are Russian and Georgia fighting?
I'm very interested in international affairs and all that but when this conflict started, i was on a plane back from india so i really didn't catch what started the whole conflict!
4 AnswersCurrent Events1 decade agoNested Loops in Java? How do I make this design?
my assignment was to make these two designs using the first initial of the user:
*****
****
***
**
*
and the second shape is a reflection of this over the y-axis, like below but without the -'s:
*****
-****
--***
---**
----*
my code for the first one was this:
{
int a=0;
System.out.print("Enter your first initial: ");
String shape2;
shape2= reader.next();
for (a=5;a>=1;a--)
{
for (int b=a;b>=1;b--)
{
System.out.print(shape2);
}
System.out.println();
}
}
how can i alter it to make the second pattern?
1 AnswerProgramming & Design1 decade agoJava Help please? What is the opposite of .equals()?
Ok, here's the thing.
I have a String that I named "grade"...without the quotes.
I'm making a while statement and i want it to only work while grade is not equal to "Z" or "z"
I know that if I wanted the while statements to run if it WAS equal to "z" or "Z" I would write:
while (grade.equals("Z")||grade.equals.("z")){
statements are here
}
but i don't how to do it the other way.
can you help?
3 AnswersProgramming & Design1 decade agoHelp with Java and Quadratic Equation?
import java.util.Scanner;
public class Krishna_Quadratic {
public static void main(String[] args) {
double a;
double b;
double c;
Scanner quad=new Scanner (System.in);
System.out.print("Enter the value for 'a': ");
a= quad.nextDouble();
System.out.print("Enter the value for 'b': ");
b= quad.nextDouble();
System.out.print("Enter the value for 'c': ");
c= quad.nextDouble();
double x1;
double x2;
double discrim;
discrim= Math.sqrt(b*b-4*a*c);
x1= (-b+discrim)/2*a;
x2= (-b-discrim)/2*a;
System.out.print("The values of 'x' are " + x1 + "and " + x2);
}
}
That's my code but I don't know how to deal with the square roots of negative numbers. How do I tell the program to display that instead of NaN?
2 AnswersProgramming & Design1 decade agowhat does "working out of poverty" mean?
5 AnswersEconomics1 decade agoHow many high schools are there in America?
1 AnswerOther - Education1 decade ago