Questions: 1 835

Answers by our Experts: 1 539

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

suppose you have an account that earns 5% interest that is credited to your account at the end of each year. write a c# program to calculate the number of years it wll take before the account balance is at least $2000 if the initial account balance is $1000.
The function will return true if and only if a passport holder satisfies following conditions-

1.A passport holder should not be a criminal.
2.A passport holder must have only one nationality and it should be "Indian".
3.A passport holder must be living at current address for more than 12 months.
4.A valid passport holder must hold at least two degrees from the list: "High School". "Intermediate", "Graduate", "Professional"
Write a method:


boolean isValidIndianPassportHolder(boolean isCriminal, String[] nationalities, float livingMonths, String[] qualifications);


isCriminal Value of this variable will be true, if passport holder is criminal otherwise false
nationalities A string array of nationalities which cannot be null
livingMonths This variable defines the number of months the passport holder was living at the given address
qualifications This variable defines a string array which defines qualifications (e.g. �High School�, �Intermediate�, �Graduat
calculate pi using the series
pi /4 =1-1/3+1/5-1/7+1/9- ... and so on.
output the estimate of pi after computing 100,1000,10,000 and 100,000 terms of the series.
write a c# program that inputs the prices ofa box of cereal and a quart of milk at store A and prices of the samems at store B. Te program should output the total cost of three boxes of cereal and two quarts of milk at whichever store has the lower cost. Either store is acceptable if the cost is same at both.
Total cost of X boxes of cereal and y quarts of milk (x,y are subject to input, along the prices)
include the store number in output
A phone is considered a good phone if all of the following conditions are satisfied:-

1.The manufacturer must be one of Nokia, Samsung, Motorola, Sony or HTC.
2.The model name of the phone must be a single word. For example, "Razr", "Omnia" or "N8" will count, but "C6 01", "EVO 3D" or "Xperia Arc S" won't.
3.It must have either 'Android' or 'Windows' as its operating system.
4.If the CPU is of type "ARMv11" then the cpu speed must be atleast 1024 MHz.
5.If the CPU speed is less then 1024 MHz, then it must have a GPU and "Android" os only.
6.There should be atleast 30 carriers selling this phone and "Vodafone" must be one of them.
Write a method:


boolean isGoodPhone(String model, String manufacturer, String os, int CPUSpeed, String CPUType, boolean hasGPU, String[] carriers)
write a static method with one integer parameter and let it return the remainder of that integer when divided by 7. for example,findremainder(19)should return 5.in the main method, initilalize two variables, x and ,with values 73 and 16.call the find remainder method three times,with the argument x,y and x+y,each time displaying the result returned by findremainder.
Additionally, illustrate how the unary operators ++ and -- work, each being placed before and after the variable name. Apply those operators to the variables x and y described in the exercise (you will need to make additional FindRemainder calls).
explain logical and syntax error with simple example program
write a program that reads three integers from the keyboard and outputs their sum and product
i have a database on a host in web
and now i want connect to this database with c#
i cant
please help me
thanks
Why is it not a good idea to do a system call for disk i/o inside an interrupt service routine?
LATEST TUTORIALS
APPROVED BY CLIENTS