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/4574/38277928512_917d19_192sq.jpg)
Mike
Helping people with their computer problems is a good Hobby of mine.
PayPal 1099k Question?
Hi, I know the reporting limit for the 1099k is $20,000 AND 200 transactions. If you transfer money from your bank account to your PayPal balance to have some money in your account does that count to the 1099k?
4 AnswersUnited States7 years agoMassive Delays and Missing Emails?
For the past week or two I have been getting massive delays with emails that arrive hours than they normally should and some do not arrive at all. I have critical emails that have not arrived to me because of this problem. I talked to several people and that emails are not getting delivered because the yahoo mail server is undeliverable. Sometimes I will get half of my emails and the other half is lost forever because it's undeliverable. I checked my settings and made sure I have nothing blocked nor any filtering enabled. Your engineering needs to get this fixed now, I don't mind the delayed emails but the emails not arriving to me makes me furious. Now I have to worry about what critical mails I have not received this past week because of this issue.
1 AnswerSending and Receiving Messages8 years agoSDES Algorithm For Decrypting Ciphertext?
I am working with the SDES encryption algorithm which is like DES but more simplified. It uses a 8-bit plaintext and a 10 bit key.
In your opinion whats is a statistics on the average time needed to decrypt a message of the length of 8 bits that uses a 10-bit key to decrypt ?
In your opinion the total number of times needed in theory for exhaustive search ?
1 AnswerProgramming & Design9 years agoSix Flags Platinum Flash Pass?
I need an answer from a person who used a Platinum Flash Pass. How does the re ride work with this flash pass? How do the ride attendants know that you can get a re ride? Do you need to change seats once your done and going for your second ride? and what was your average waiting time with this Platinum flash pass?
1 AnswerAmusement Parks1 decade agoPowerPoint Sound Insertion?
I know how to insert sound into power point but how do you make it so it is completely inserted and does not rely on the file you inserted on your desktop. For example I insert a music file from my desktop to power point and save it but if I take my presentation to another computer the sound file does not work anymore because it relies on the file on the desktop. How to you make it so it is saved inside the power point file?
4 AnswersSoftware1 decade agoCollege Dormitories What are they called now?
My teacher told the class that college housing is not called Dorms anymore, What do they call them now ? and the reason
2 AnswersHigher Education (University +)1 decade agoBasic Java Programming Assignment?
Need some help completing this program
Write a program using java scanner class and if else statements to calculate the interest due, total amount due, and the minimum payment for a revolving credit account. Your program will ask the user to enter his/her name as well as the account balance. It will then add the interest to get the total amount due. The interest rate is 2% on the first $1,000 and 1.5% on any amount over that. The minimum payment is the total amount due if that is $15 or less; otherwise the minimum payment is either $15 or 5% of the total amount owed, whichever is larger. Your program will output user’s name, total amount due, and minimum payment.
After output of the user name, total amount due, and minimum payment, your program ask the user to enter the amount he/she will pay, then calculate again and output the total amount due, minimum payment of next billing cycle. If the user pays off the balance, then your program will output a “Thank you for your payment” message. If the user overpay, your program will indicate the fact and output how much over paid. Note that if the user did not pay the minimum payment, the interest rate will change from (2% and 1.5%) above to (3% and 2.5%) for amount under $1000 and over $1000 and a penalty of $10 will be added to the balance .
So far I made it here
import java.util.*;
public class Credit
{
public static void main(String[] args)
{
Scanner reader = new Scanner(System.in);
int balance;
int pay;
int minimum;
String name;
System.out.println("Welcome to the program");
System.out.println("Please enter your name, then hit enter");
name = reader.next();
System.out.println("Please enter your current account balance");
balance = reader.nextInt();
if (balance > 1000)
{
System.out.println("Hi" + name + " your total amount due is " + balance + " your minimum payment is " + (balance * 0.015));
}
if (balance <= 1000)
{
System.out.println("Hi" + name + " your total amount due is " + balance + " your minimum payment is " + (balance * 0.015));
}
system.out.println("Hi" + name + "Please enter the amount that you will pay");
pay = reader.next();
system.out.println("Your new total amount due is " + (pay - balance));
}
if (balance > 1000);
{
System.out.println(" your minimum payment is " + (balance * 0.015));
}
if (balance <= 1000)
{
System.out.println(" your minimum payment is " + (balance * 0.015));
1 AnswerProgramming & Design1 decade agoBlueJ Calculator Program?
Hello I am doing a program using java.util.Scanner
that asks user to enter three integers, call them firstNumber, SecondNumber, and thirdNumber. assuming user will always enter integers. , no input error checking required in you program.
program will compute the following, and output the results
(1) firstNumber + secondNumber + thirdNumber
(2) firstNumber - secondNumber - thirdNumber
(3) firstNumber * secondNumber * thirdNumber (* means multiply)
(4) firstNumber / secondNumber (/ means divide)
(5) firstNumber % secondNumber
(% means result of remainder of (firstNumber / secondNumber; e.g. 7 % 3 is 1)
Program flow
(I) It will first output a welcome message of at least three lines of text
(II) It will ask user to enter their first name.
(III) It will ask user to enter three integers
(IV) It will output "Hi XXXXX, the computation results are"
(V) It will output five lines of results using the format
Here is what I got
import java.util.Scanner;
public class Calculator
{
public static void main(String[] args)
{
Scanner reader = new Scanner(System.in);
System.out.print("Input a number: ");
System.out.print("Input a number: ");
System.out.print("Input a number: ");
int number = reader.nextInt();
System.out.println(number + number +
(number));
}
}
Anyone know how to do this,I have this all wrong, can someone please me show how it looks I have been trying for a long time and have no clue what to do. Program has to use java.util.Scanner
1 AnswerProgramming & Design1 decade agoBranding Materialism?
What are some brands today that have a advertising campaign that provides cultural implications of its marketing also please tell How and what is the most significant message or stereotype perpetuated or subverted by [your advertising campaign]
1 AnswerHomework Help1 decade agoIf you earn $42,000 Annually for 40 hours a week and are paid every two weeks I need to see the math step?
Show me how to find out the pay doing math step by step not just giving answer I need to see how to do the math.
11 AnswersPersonal Finance1 decade agoFahrenheit to Celsius?
I have to make a program that converts Fahrenheit to celsius or Celsius to Fahrenheit in the program "Just Basic" Using FUNCTIONS I followed all steps and wrote the correct formulas for conversion but the problem is that it does not correctly convert here is the code I been working on not finished still testing.
PRINT "PLEASE ENTER THE CONVERSION YOU WANT TO OCCUR ? "
PRINT "PLEASE PRESS 1 TO CONVERT FAHRENHEIT TO CELCIUS OR PRESS 2 TO CONVERT CELCIUS TO FAHRENHEIT"
INPUT NUMBER
INPUT "PLEASE ENTER THE DEGREE TO CONVERT ";DEGREE
IF NUMBER = 1 THEN GOTO [FC]
IF NUMBER = 2 THEN GOTO [CF]
[FC]
LET CONVERTFC = CONVERT1(DEGREE)
PRINT "YOUR CONVERTED NUMBER FROM FAHRENHEIT TO CELCIUS IS " ;CONVERTFC;
[CF]
LET CONVERTCF = CONVERT2(DEGREE)
PRINT "YOUR CONVERTED NUMBER FORM CELCIUS TO FAHRENHEIT IS " ;CONVERTCF;
FUNCTION CONVERT1(n)
CONVERT1 = 5/9 * (DEGREE - 32)
END FUNCTION
FUNCTION CONVERT2(m)
CONVERT2 = 9/5 * DEGREE + 32
END FUNCTION
3 AnswersProgramming & Design1 decade ago