Image | ![]() |
EAN-13 | 9780764197567 ![]() |
Product Name | Barron's Real Estate Exam Flash Cards |
Category | Book / Magazine / Publication |
Short Description | Height:3.1 inches / Length:5 inches / Weight:2.02 pounds / Width:5.14 inches |
Amazon.com | ![]() |
SKU | ACAMP_BOOK_NEW_0764197568 |
Price New | 12.99 US Dollars (curriencies) |
Price Used | 8.58 US Dollars (curriencies) |
Width | 5 inches (convert) |
Height | 5.25 inches (convert) |
Length | 3 inches (convert) |
Weight | 32 ounces (convert) |
Author | Jack P. Friedman Ph.D. |
Page Count | 484 |
Binding | Cards |
Published | 08/01/2010 |
Long Description | This set of flash cards is designed to help prepare applicants for real estate salesperson, broker, and appraiser licensing exams in all 50 states. General concepts and terms with specific exaplantions on the reverse side of each flash card cover real estate, contracts, finance, and licensing. The cards, which measure 4 1/2" x 2 3/4", each have a punch hole in one corner that accommodates an enclosed metal key-ring-style card holder. The ring allows users to arrange flash cards in any sequence that suits their study needs. This set of flash cards may be used alone or in tandem with Barron's test preparation manual, Barron's Real Estate Licensing Exams. |
Similar Items | 9780764131240: How to Prepare for the California Real Estate Exam: Salesperson, Broker, Appraiser (Barron's How to Prepare for the California Real Estate Exam: Salespe) 9780752587257: Questions & Answers To Help You Pass The Real Estate Exam 9780681414761: Dictionary of Real Estate Terms (Barron's Business Dictionaries) 9780470036990: Cliffstestprep California Real Estate Salesperson Exam: 5 Practice Tests 9780324650952: Massachusetts Real Estate: Principles, Practices, and Law 9780324642162: Colorado Real Estate Preparation Guide (with CD-ROM) (Real Estate Exam Preparation Guide) 9780324143522: California Real Estate License Preparation 9780137641017: California Real Estate License Preparation 9780071481380: Real Estate Math Demystified 9780071480918: How to Prepare For and Pass the Real Estate Licensing Exam: And Have A Great Career (How to Prepare for and Pass the Real Estate Licensing Exam) View 39 more similar items |
Created | 11-22-2012 1:05:34pm |
Modified | 05-01-2020 1:09:23am |
MD5 | ec842170c858a6097c959cc9b74f3075 |
SHA256 | e2ab12fd1efbdeb5e3727dd701e64a79abcf0df3e59b086858daf9b661294f12 |
Search Google | by EAN or by Title |
Query Time | 0.0389929 |
Article of interest
The extra items are numerically indexed and provide extra text to go along with numeric values such as weights or distances or even currencies. The attributes that use these extra indexes are all numeric and take two fields. You can send the data in a single field as long as you use the same short or long text that we keep in our database.
Although the data feed API can deliver information as JSON or XML, we are using XML here because it is easier to read.
<attribute> <extra_group>Distance</extra_group> <field_name>depth</field_name> <extra> <id>501</id> <extra_short>in</extra_short> <extra_long>inches</extra_long> <seq>10</seq> </extra> <extra> <id>503</id> <extra_short>ft</extra_short> <extra_long>feet</extra_long> <seq>20</seq> </extra> <extra> <id>505</id> <extra_short>yrd</extra_short> <extra_long>yards</extra_long> <seq>30</seq> </extra> </attribute>
Looking at this example, you can see that the EXTRA portion is an array of values each with their own properties. Here is what each section means:
- extra_group - The text name representing the type of information the extra value represents. The extra elements are associated with this group.
- field_name - The field that this extra information is attached to. Multiple fields can be attached to the same extra_group.
- id - This is the unique id that identifies the specific extra element. It is unique across all extra groups.
- extra_short - The short text used to enhance the main data item.
- extra_long - The long text used to enhance the main data item.
- seq - The sequence that we use to display this element in a list. When two sequence numbers are the same we sort by the extra_long value.
This extra information is normally used in a drop down box next to the numeric data field that we want to enhance. Some examples might be:
- 12 pounds
- 15.25 US Dollars
- 354 grams
- 12.4 ounces
- 12 lbs
- 15.25 USD
- 354 g
- 12.4 oz
You see we can display the long or short version of the extra code by using the ID index.
Fields that make use of this extra information require it when pushing data back to us in the feed. You can either send the data in two fields (value and extra_id) or in a single field (value) as long as the text following the numeric portion matches the long or short version of the extra data we store for the field.
For example, if you wanted to update a field that represented distance with the value "100 yards", you could either send that data just like that in the value field value=100+yards or in two seperate fields value=100&extra_id=505 and you would get the same results. If you send an invalid extra_id or text after the number that doesn't match our accepted list, your update would be rejected.