answersLogoWhite

0

How do you write a java program for finding multiligual languages?

Updated: 8/21/2019
User Avatar

Sreenetha

Lvl 1
10y ago

Best Answer

You can use Java's built-in functions to write a code that will find multilingual languages.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you write a java program for finding multiligual languages?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Shell program for gcd of three given numbers?

write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? check bellow link http://bashscript.blogspot.com/2009/08/gcd-of-more-than-two-numbers.html


How do you write a pseudocode program for finding out x to the power of y?

X**y


Write a c program for false position method?

Write a simple program in finding roots x^3-6x^2+11x-6.1=0


What are robotics languages?

The popular programming languages which are generally used to write a robotic program may be developed in c, c++, java etc.., these languages are more flexible when compare to the other languages.


Which language is used to write a source program in computer?

There are so many programming languages that it is impossible to tell without actually seeing the source program in question.


How do you write a program using HTML?

You cant really write a program with HTML, you can make a webpage similar to this one. To make a program you would need to learn a coding language.Programming languages: C++, C#, Java, Python, FORTRANWeb languages: HTML, JavaScript, AJAX, MySQLWith web languages its easy to learn basic commands, and do simple things(Pictures, text, and alignment)With programming languages its a little harder(depending on the language) to do those things. But it is easier to do more complex things, again depending on the language.


What are high level programming languages how they differ from assembly languages?

High-level languages are easy to read and write. They are not machine dependent and portable from one computer to another. Assembly languages are machine dependent, easier to read than machine code but it's still not easy to read, and the assembler program translates the assembler program straight into machine code.


A program that allows users to write simple computer programs One of many computer programming languages?

try Just Basic or DEV-C++


How do you write maria in different languages?

Maria in different languages


Why is it important to understand computer languages?

It is not essential to understand computer languages as you can do a lot with a computer without knowing them, and most people that use computers do not understand any computer languages. However, if you want to write programs and get the computers to do more elaborate things then knowing some computer languages is important. If you can write programs then there are employment opportunities in it and if you are really good you could create a really good program and do very well out of it.


How do you write a Program of printing prime numbers between 1 to 100 in 1 statement only?

You really need some nested loops; but some programming languages might allow you to write this as one statement.


Write a program in c plus plus for finding the sum of first 10 even numbers?

int i, sum = 0; for (i=0; i<20; i+=2) sum+=i;