Binary Float Converter

Binary Float Converter icon

ASO Keyword Dashboard

Tracking 66 keywords for Binary Float Converter in Apple App Store

Developer: Roman Volinsky Category: education

Binary Float Converter tracks 66 keywords (no keywords rank yet; 66 need traction). Key metrics: opportunity 70.7, difficulty 38.2.

Tracked keywords

66

0  ranked •  66  not ranking yet

Top 10 coverage

Best rank — • Latest leader —

Avg opportunity

70.7

Top keyword: length

Avg difficulty

38.2

Lower scores indicate easier wins

Opportunity leaders

  • length

    Opportunity: 73.0 • Difficulty: 38.4 • Rank —

    Competitors: 78

    62.8
  • bit

    Opportunity: 73.0 • Difficulty: 39.9 • Rank —

    Competitors: 101

    63.0
  • positive

    Opportunity: 73.0 • Difficulty: 41.0 • Rank —

    Competitors: 117

    66.7
  • actual

    Opportunity: 73.0 • Difficulty: 42.6 • Rank —

    Competitors: 238

    66.6
  • scientific

    Opportunity: 73.0 • Difficulty: 38.7 • Rank —

    Competitors: 58

    62.3

Unranked opportunities

  • length

    Opportunity: 73.0 • Difficulty: 38.4 • Competitors: 78

  • bit

    Opportunity: 73.0 • Difficulty: 39.9 • Competitors: 101

  • positive

    Opportunity: 73.0 • Difficulty: 41.0 • Competitors: 117

  • actual

    Opportunity: 73.0 • Difficulty: 42.6 • Competitors: 238

  • scientific

    Opportunity: 73.0 • Difficulty: 38.7 • Competitors: 58

High competition keywords

  • right

    Total apps: 89,995 • Major competitors: 1,648

    Latest rank: — • Difficulty: 53.4

  • provides

    Total apps: 72,500 • Major competitors: 565

    Latest rank: — • Difficulty: 49.2

  • within

    Total apps: 67,116 • Major competitors: 1,298

    Latest rank: — • Difficulty: 50.4

  • first

    Total apps: 56,029 • Major competitors: 905

    Latest rank: — • Difficulty: 49.2

  • tool

    Total apps: 53,498 • Major competitors: 383

    Latest rank: — • Difficulty: 48.2

All tracked keywords

Includes opportunity, difficulty, rankings and competitor benchmarks

Major Competitors
right671005382

89,995 competing apps

Median installs: 500

Avg rating: 4.1

1,648

major competitor apps

range691004877

41,537 competing apps

Median installs: 450

Avg rating: 4.1

567

major competitor apps

within681005080

67,116 competing apps

Median installs: 550

Avg rating: 4.1

1,298

major competitor apps

digital691004978

52,257 competing apps

Median installs: 450

Avg rating: 4.1

718

major competitor apps

added711004571

19,831 competing apps

Median installs: 550

Avg rating: 4.1

401

major competitor apps

special691005078

48,128 competing apps

Median installs: 550

Avg rating: 4.1

1,058

major competitor apps

converter721003658

3,025 competing apps

Median installs: 457

Avg rating: 4.0

25

major competitor apps

complement711003455

1,992 competing apps

Median installs: 500

Avg rating: 4.1

29

major competitor apps

run711004673

24,008 competing apps

Median installs: 550

Avg rating: 4.1

502

major competitor apps

provides681004981

72,500 competing apps

Median installs: 300

Avg rating: 4.0

565

major competitor apps

tool691004879

53,498 competing apps

Median installs: 400

Avg rating: 4.0

383

major competitor apps

closest721003858

3,125 competing apps

Median installs: 750

Avg rating: 4.0

75

major competitor apps

output721003760

4,127 competing apps

Median installs: 450

Avg rating: 3.9

28

major competitor apps

threshold691002947

683 competing apps

Median installs: 250

Avg rating: 3.9

2

major competitor apps

length731003863

6,005 competing apps

Median installs: 500

Avg rating: 4.1

78

major competitor apps

required721004471

18,702 competing apps

Median installs: 400

Avg rating: 4.0

235

major competitor apps

bit731004063

6,128 competing apps

Median installs: 750

Avg rating: 4.1

101

major competitor apps

screen691005077

45,312 competing apps

Median installs: 550

Avg rating: 4.0

724

major competitor apps

main711004472

22,604 competing apps

Median installs: 450

Avg rating: 4.0

229

major competitor apps

field721004269

14,233 competing apps

Median installs: 300

Avg rating: 4.0

93

major competitor apps

calculated721003557

2,722 competing apps

Median installs: 350

Avg rating: 4.1

25

major competitor apps

positive731004167

10,222 competing apps

Median installs: 450

Avg rating: 4.3

117

major competitor apps

actual731004367

10,087 competing apps

Median installs: 700

Avg rating: 4.1

238

major competitor apps

form721004470

16,690 competing apps

Median installs: 450

Avg rating: 4.1

249

major competitor apps

scientific731003962

5,622 competing apps

Median installs: 450

Avg rating: 4.1

58

major competitor apps

66 keywords
1 of 3

App Description

Binary Float Converter is a tool for conversion of numeric digital representations. It converts decimal, hexadecimal, signed binary Integer (32bit), Float binary (32bit) and Double binary (64bit) two’s complement representations.
The main screen provides input and output of the the five numeric representations. Decimal field accepts integer, floating point and scientific representations. Each field has an associated run button, that converts the input to all other representations.

Hexadecimal value is calculated if the input value is within 64-bit Integer range of values.

Input in the form of hexadecimal exponential notation is supported. ( 1.Ep3 = 15.0 )

The input of binary integer field is fitted to 32 bit arithmetically, so the first digit of input is copied to the left side. If value starts from 0 – the number is positive and if from 1 is negative:

101 is converted to 1111 1111 1111 1111 1111 1111 1111 1101 = -3

0101 is converted to 0000 0000 0000 0000 0000 0000 0000 0101 = 5

Binary integer value is not shown if the value is not integer, there is an overflow. Otherwise, it can be presented if the difference between actual decimal and closest integer is below the recognition threshold for 32-bit system.

Application complies with IEEE 754. It distinguishes between sign, exponential and fractional parts of Float (32-bit) and Double (64-bit) binary representations.

Float (32-bit) comprises of 1 sign bit, 8-bit of exponent and 23-bit of significand.

Double (64-bit) comprises of 1 sign bit, 11-bit of exponent and 52-bit of significand.

If length of input is shorter than required number of bits, then zeroes are added to the right side of a number.

IEEE 754 notes:

Float and Double special values:

exp = 00…0, frac = 00…0 => Zero

exp = 11…1, frac = 00…0 => Infinity

exp = 11…1, frac != 00…0 => NaN