• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

tip: mnemonic to remember Unicode order of Uppercase, LowerCase, Numbers: 7Up

 
Ranch Foreman
Posts: 226
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I devised this mnemonic to help remember Unicode order of Uppercase, LowerCase, Numbers.
The fizzy drink: 7Up
(7) Numbers, (U)ppercase, (p) LowerCase.
Sharing in case it helps others.
 
Marshal
Posts: 28009
94
Eclipse IDE Firefox Browser MySQL Database
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A good mnemonic for sure, but it isn't clear to me why you'd need to remember that.
 
Anil Philip
Ranch Foreman
Posts: 226
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Clapham wrote:A good mnemonic for sure, but it isn't clear to me why you'd need to remember that.



Have you not done the test questions from the appendix in the book? A few of them test that order.
 
Paul Clapham
Marshal
Posts: 28009
94
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Anil Philip wrote:Have you not done the test questions from the appendix in the book? A few of them test that order.



Hell no. That just confirms my bad opinion of those questions.
 
Saloon Keeper
Posts: 15276
350
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I just KNOW that I had to consult an ASCII table for just this thing not too long ago, even if I can't remember what it was for. I've also had to do this a handful of times over the years.

Love the mnemonic, I might even use it.
 
Saloon Keeper
Posts: 27494
195
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just remember that in Java, you don't use ASCII, you use Unicode. Fortunately, ASCII maps onto Unicode. Also, most OS's these days are using UTF, which is a special form of Unicode. Just for the record, I don't know if the extra characters in ASCIIZ map or not. Never really got into them.

Finally, just to round out the pedantry, if you run across IBM mainframe legacy files, the EBCDIC codes run "7Pu". And have holes between character sequences. Credit that to its various inheritances from 6-bit BCDID and 12-row card punch devices.
 
Enthuware Software Support
Posts: 4770
52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Anil Philip wrote:
The fizzy drink: 7Up


I remember this Indian drink from long ago. Havent heard of it recently. Is it still available?

Well, at least the Java cert exams do not expect you to know the order of ascii chars or even their integral values.

Knowing that char is an integral type and its consequences is required though.
 
Tim Holloway
Saloon Keeper
Posts: 27494
195
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Anilprem wrote:I remember this Indian drink from long ago. Havent heard of it recently. Is it still available?

Do you mean there was a specifically Indian drink named 7Up?

Because the 7Up sold in USA and much of the rest of the world is alive, well, and quite popular. Have several in my refrigerator, in fact. It's presently owned by Keurig/Dr. Pepper and distributed internationally by Pepsico.

Like many soft drinks, it was originally marketed as a patent medicine and indeed, it is widely used as a counter to nausea. In fact, I looked at a bottle of anti-nausea medicine at my local drugstore and the ingredients were virtually identical. It's basically lemon and lime juice in a syrup base with carbonation.

Similar products have included Upper10 (from RC Cola) and Sprite (Coca-Cola's equivalent).
 
Paul Anilprem
Enthuware Software Support
Posts: 4770
52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tim Holloway wrote:Do you mean there was a specifically Indian drink named 7Up?


Yes, I think it was called Leher 7Up. May be it was one of the several brands owned by Pepsi or Coca Cola, imns.

I stopped drinking colas long ago, so that could also be a reason why I haven't noticed its presence (if it still exists)  
 
Anil Philip
Ranch Foreman
Posts: 226
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Anilprem wrote:

Anil Philip wrote:
The fizzy drink: 7Up



Well, at least the Java cert exams do not expect you to know the order of ascii chars or even their integral values.



Sorry, I disagree. You need to know this information, for instance, while sorting.

Several of the questions in the Sybex 829 book - like this one:

tb864585.JaSE17SG.c09.08

 
Tim Holloway
Saloon Keeper
Posts: 27494
195
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Although, again, just to be pedantic, Java Strings are not ASCII, they're Unicode!
 
author & internet detective
Posts: 41775
887
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Fun way to remember it!
 
It wasn't my idea to go to some crazy nightclub in the middle of nowhere. I just wanted to stay home and cuddle with this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic