answersLogoWhite

0


Best Answer

2 x 1 are 1

2x2 are 4

2x3 are 6

2x4 are 8

here, ja refers to are.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In multipliation you pronounce 2x2 is equal to 4 as 2 2 ja 4 what is the meaning of jaas there is no such word as ja?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math
Related questions

What actors and actresses appeared in The Swan Princess Christmas - 2012?

The cast of The Swan Princess Christmas - 2012 includes: James Arrington as Chamberlain Elle Deets as Odette Summer Eguchi as Singing Princess Odette Gardner Jaas as Puffin Yuri Lowenthal as Derek Joseph Medrano as Lord Rogers Gabriela Miller as Orphan Girl Ashley Spain as Girl Joseph Van De Yacht as Boy Sean Wright as Rothbart


What actors and actresses appeared in 100 pages blanches - 2013?

The cast of 100 pages blanches - 2013 includes: Guillemette Barioz as Macha Alexei Batoussov as Le vieux russe Caroline Bourg as Julia Marius Colucci as Sacha Solenn Denis as Les baby sitters Armelle Deutsch as Louise Axel Fenouillet as Sacha enfant Lich Jaas as Les baby sitters Michel Jonasz as Vania Alexandre Laffargue as Malik adolescent Lamine Lezghad as Malik Claire Loiseau as Les baby sitters Rudy Mayoute as Le mari antillais Lilly Rose Debos as Charlotte


Explain the difference between jdk 1.4 and jdk 1.5?

J2SE 1.4- assert keyword- Regular expressions- Exception chaining (allows an exception to encapsulate original lower-level exception)- Internet protocol version 6 (IPV6) support- Non-blocking nio (new input/output)- Logging API- Image i/o api for reading and writing images in formats like jpeg and png- Integrated XML parser and XSLT processor (JAXP)- Integrated security and cryptography extensions (JCE, JSSE, JAAS)- Java web startJ2SE 5.0 tiger [originally numbered 1.5]- Generics: provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion).- Metadata: also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities.- Autoboxing/unboxing: automatic conversions between primitive types (such as int) and primitive wrapper classes (such as integer).- Enumerations: the enum keyword creates a typesafe, ordered list of values (such as day.monday, day.tuesday, etc.). Previously this could only be achieved by non-typesafe constant integers or manually constructed classes (typesafe enum pattern).- Swing: new skinnable look and feel, called synth.- Var args: the last parameter of a method can now be declared using a type name followed by three dots (e.g. Void drawtext(string... Lines)). In the calling code any number of parameters of that type can be used and they are then placed in an array to be passed to the method, or alternatively the calling code can pass an array of that type.- Enhanced for each loop: the for loop syntax is extended with special syntax for iterating over each member of either an array or any iterable, such as the standard collection classesfix the previously broken semantics of the java memory model, which defines how threads interact through memory.- Automatic stub generation for rmi objects.- Static imports concurrency utilities in package java.util.concurrent.- Scanner class for parsing data from various input streams and buffers.- Assertions- StringBuilder class (in java.lang package)- Annotations


What is the difference between java 1.4 and 1.5?

Java 1.5 has many new features, compare to Java 1.4. See the link for a complete explanation. Some of the features are: * Generics (e.g. typed collections, like Set<String>) * Enhanced for loop (for (String s : set) {...}) * Autoboxing/unboxing (automatically convert between types like Integer to int and vice versa) * Typesafe enums (enum is now a keyword, types can be created out of enums) * Varargs (for printf() function, allows variable number of arguments) * Static import (can now import static methods of a class, such as java.lang.Math) * Annotations