Microsoft Visual Studio 6 6.0 Professional Basic 3544 C Foxpro Pro Overnight Logo
R
Retage ali Posted on Feb 06, 2015
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

How to write a program to translate english text to binary string and write a program to do inverse 27 = . , 28 = , 29= ? 30 = . 31=

I don't know how to start writing program

1 Answer

Mishan Kasiparsad

Level 2:

An expert who has achieved level 2 by getting 100 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Sergeant:

An expert that has over 500 points.

  • Expert 175 Answers
  • Posted on Nov 03, 2015
Mishan Kasiparsad
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Sergeant:

An expert that has over 500 points.

Joined: Sep 05, 2011
Answers
175
Questions
1
Helped
46212
Points
548

To convert from text to binary, you would do something along the following lines..
1. have the user enter a string.
2. loop through the string (for each char in stringEntered..)
3. convert the character to binary using the methods provided to you by your language of choice

For the reverse (binary to text):
you must take 8 bits of data (which would be a single character), and convert it to text using the methods provided by your language of choice..

here's some links that might be of interest to you.
Visual FoxPro VFP CTOBIN and BINTOC Functions Equivalent In Net The Most Accurate and Reliable Source Code Converters

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer
0helpful
1answer

English Instructions

You can extract the texts & translate it with google translate. or scan the text via Google Translate app & it'll translate it for you :)
0helpful
1answer

I need this french translated to english, Please, Thank you!!! Selon les descriptions bibliques, ou se trouvait le jardin d'eden?

You could try visiting https://translate.google.com/ and enter the french text and it will give you an english translation.

Hope that helps!
0helpful
1answer

Hi ,,,,,,,how can i change my galaxy s2 i 1900 slim bean phone languane from chinese to english,and i was i alreay change into english ,but i didnt get homescreen in english and didnt change nova.....how...

You have to change the software (programming) that runs on your phone (hardware - physical electronics). That is done by loading the software into the memory of the phone. If you load software that includes English text strings - it puts up English text strings on the screen of the phone.

There is, for example, a 'stable' release of Cyanogen Mod 10.1.3 available for that phone (with English text) at... http://download.cyanogenmod.org/?type=stable&device=i9100. That would run an open version of Android "Jelly Bean".

If you have never programmed software into a device before, this may not be the best choice for something to learn on. Resetting that phone to load the software, if done incorrectly, can cause it to 'brick' - become frozen. But if you are patient, thoughtful, strong - you will need a cable and a computer and you can follow the instructions on the Cyanogen Wiki.
0helpful
1answer

Dictionary malay to english

If you're trying to translate a passage of text, you could do worse than use the google translator:- http://translate.google.com/

Here's the malay to english page:-

http://translate.google.com/#ms'en'


Alternatively, here's a malay/english dictionary page:-

http://www.stars21.com/dictionary/English-Malay_dictionary.html
0helpful
1answer

My Cell phone only text in Espanol I need it to text in English Please. LGIP-400V

Use Google Translate to type in the words on the screen to translate them into English so you can Find the Settings Menu and then the Language Setting.
Mar 02, 2011 • Cell Phones
0helpful
1answer

I need a manual for this key board

A quick fix would be to use a program like google translator to translate the text.
I googled korg x50 spanish instructions and found this
http://www.taringa.net/posts/ebooks-tutoriales/1386272/Manual-Korg-x50-y-Micro-X-en-espa%C3%B1ol.html
0helpful
1answer

Java code for adding octal, hexadecimal subtracting binary,

Hello desireejane,


One method is to do the following

  1. Convert the octal, hexadecimal or binary to decimal.
  2. Add or Subtract the decimal normally
  3. Convert the result back to octal, hexadecimal or binary.

  • Convert the octal to decimal:

public static long octalToDecimal(String octal) throws NumberFormatException {
// Initialize result to 0
long res = 0;

// Do not continue on an empty string
if (octal.isEmpty()) {
throw new NumberFormatException("Empty string is not an octal number");
}

// Consider each digit in the string
for (int i = 0; i < octal.length(); i++) {
// Get the nth char from the right (first = 0)
char n = octal.charAt(octal.length() - (i+1));

int f = (int) n - 48;
// Check if it's a valid bit
if (f < 0 || f > 7) {
// And if not, die horribly
throw new NumberFormatException("Not an octal number");
} else {
// Only add the value if it's a 1
res
+= f*Math.round(Math.pow(2.0, (3*i)));
}
}

return res;
}



0helpful
1answer

User manual for JVC GZ-MG57

Hi, this is a tough order, but try this:

An English manual in PDF format is available from JVC
(Japanese Victor Company, named after the old RCA Victor):

===========================================
http://books.jvcservice.com/booklist.asp?Model=GZ-MG57
===========================================

1) Download the English version first.

2) Next...

Process the PDF file using and OCR program like ABBYY
SOFT to recover the original text and graphics into a more
user-friendly format such as the "Word for Windows"
document file format (.DOC), or even plain text.

===========================================
"http://www.abbyy.com/products/"
===========================================

OCR = "Optical Character Recognition".

ABBYY Soft makes a good program for doing this, and
you can download and try it for free.

Other more expensive OCR applications are also available
from people like ADOBE, but I prefer ABBYY Soft.

A free (limited) version of ABBYY Soft also comes free
with the purchase of a $100 Epson document scanner,
like my "Perfection V200 Photo".

3) Once you have extracted the English text from the user's
manual, you can feed it into an on-line translation machine,
or download a demo translation program:

http://translator.imtranslator.net/ (free online)
http://www.etranslator.ro/english.html (download trial)

4) Once you have it translated, you can print it back into
PDF using "acrobat" or "foxit"

Good luck.
Please rate my answers,
Martn

file:///P:/Documents%20and%20Settings/N_Lfg_Martin/Desktop/JVC/LYT1639-001A.pdf
Martin





Not finding what you are looking for?

471 views

Ask a Question

Usually answered in minutes!

Top Microsoft Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

k24674

Level 3 Expert

8093 Answers

Brad Brown

Level 3 Expert

19187 Answers

Are you a Microsoft Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...