Questions tagged [rate]

A measure, quantity, or frequency, typically one measured against some other quantity or measure.

A certain quantity or amount of one thing considered in relation to a unit of another thing and used as a standard or measure (e.g at the rate of 60 miles an hour).

489 questions
-2
votes
4 answers

Javascript Growth Population Problem: Code Returning Wrong Answer

I have the following problem: In a small town the population is p0 = 1000 at the beginning of a year. The population regularly increases by 2 percent per year and moreover 50 new inhabitants per year come to live in the town. How many years does…
PineNuts0
  • 4,740
  • 21
  • 67
  • 112
-2
votes
1 answer

how to extract the number out of 'ui_bubble_rating bubble_50' using selenium

I am using selenium to scrape reviews from tripadvisor.com. I haven't found the right way to extract all the review rating made by users:"ui_bubble_rating bubble_50", 50 = 5 star.
Julie
  • 151
  • 1
  • 1
  • 8
-2
votes
1 answer

Computing and determining the convergence rate

Write a MATLAB code to compute and determine the convergence rate of : (exp(h)-(1+h+1/2*h^2))/h ‍‍‍‍‍‍ ‍‍‍‍‍‍ with h=1/2, 1/2^2,..., 1/2^10 My code was: h0=(0.5)^i; TOL=10^(-8); N=10; i=1; flag=0; table=zeros(30,1); table(1)=h0 while i < N …
LiLi
  • 1
-2
votes
2 answers

Objective C rateview not show half image

I am using rateview like this page: https://www.raywenderlich.com/1768/uiview-tutorial-for-ios-how-to-make-a-custom-uiview-in-ios-5-a-5-star-rating-view It runs normally, but I cannot see half image show, like 1.5- 1.5-3.5.. Can someone help me know…
kemdo
  • 1,429
  • 3
  • 15
  • 29
-2
votes
1 answer

Wordpress Ratings?

Thank you for viewing my post.. I am currently working on my blog, it is about writing reviews and rating books, and movies. I have searched for hours for a rating plugin for ME to rate movies and books posts, but all I found was plugins for…
-3
votes
1 answer

Locate exactly at Google play store, some app's screenshots field and "rate this app" field

I know how to locate at some app in Google Play, by Android program with hyper link, like: Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details?id="+ getPackageName().toString().trim())); …
Fisher
  • 488
  • 7
  • 24
-3
votes
1 answer

Calculating Acceptance Rate/Percentage

I have a summary of data talking about status of offers by applicants as follows: Status Count(status) accepted 2303 rejected 736 unresolved 75 I want to have an acceptance rate by no.of accepted/sum(no.of accepted+no.of…
-3
votes
2 answers

FloatingRateBond cashflow retrieval and printing

I am using the FloatingRateBond class to create a floating rate bond object, which I have already priced correctly. However, now I need to retrieve the cashflows and the dirty price to decompose the yield. I have been trying the following without…
-3
votes
1 answer

compound interest after 1, 3 and 5 years

i have this code that calculates the compound interest, but i need it to do it for after 1, 3, and 5 years. ive tried and cant seem to get it to work. can anyone help me? import java.util.Scanner; public class CompoundInterest { public static…
1 2 3
32
33