Skip to main content

Home/ EdTechTalk/ Group items tagged #java

Rss Feed Group items tagged

richardswayar

Java Programming And Its Popularity Among Learners - 0 views

  •  
    The world of Java and its functionalities have opened while a new dimension for programmers.
Ced Paine

yEd - Graph Editor - 0 views

  •  
    Very powerful graph editor that can be used to quickly and effectively generate drawings and to apply automatic layouts to a range of different diagrams and networks. yEd is available as a free download with unrestricted functionality!
Jack Park

openmark: Home - 0 views

  •  
    OpenMark is a computer-assisted assessment (CAA) system that has its foundations in computer-assisted learning. It was developed by The Open University, where it has been used by thousands of students, and is now released as open source software under the GNU General Public License
Fred Delventhal

Websites as graphs - Visualize your PLN - 24 views

  •  
    Interesting visual creator for the connectedness of a web site. Visualize your PLN
  •  
    Websites as Graphs
numentechnology

Best IT Training In Bangalore | Best IT Training Institute -Numentechnology - 0 views

  •  
    5. If you are an IT firm and need to sharpen up the IT/Software Skills of your employees, we Numen technology might be the perfect ones to partner with. Our Corporate Training will support your employees to expand their skill set in all IT niche technologies and thus help you in increasing your business return of investment while keeping a control on the training investment too
eyssant

Java.util.IdentityHashMap Class - AlphaCodingSkills - 0 views

  •  
    Java.util package provides an IdentityHashMap class which implements the Map interface with a hash table, using reference-equality in place of object-equality when comparing keys (and values). In other words, in an IdentityHashMap, two keys k1 and k2 are considered equal if and only if (k1==k2). (In normal Map implementations (like HashMap) two keys k1 and k2 are considered equal if and only if (k1==null ? k2==null : k1.equals(k2)).)
eyssant

Java.util.Calendar Class - 0 views

  •  
    Java.util package provides a Calendar class which represents a specific instant in time, with millisecond precision.
eyssant

Java.util.Random Class - 0 views

  •  
    Java.util package provides a Random class. An instance of this class is used to generate a stream of pseudorandom numbers. The class uses a 48-bit seed, which is modified using a linear congruential formula. The algorithms implemented by class Random use a protected utility method that on each invocation can supply up to 32 pseudorandomly generated bits.
eyssant

Java.util.TreeSet Class - AlphaCodingSkills - 0 views

  •  
    Java.util package provides a TreeSet class which is a NavigableSet implementation based on a TreeMap. The elements are ordered using their natural ordering, or by a Comparator provided at set creation time, depending on which constructor is used. The class guarantees that the Map will be in ascending key order and backed by a TreeMap.
eyssant

Java.util.EnumMap Class - 0 views

  •  
    Java.util package provides a EnumMap class which is a specialized Map implementation for use with enum type keys. All of the keys in an enum map must come from a single enum type that is specified, explicitly or implicitly, when the map is created.
eyssant

Java String Methods - 0 views

  •  
    The Java has a number of methods and functions that are available for use with strings. These methods and functions are listed in alphabetical order.
eyssant

Java.util.PriorityQueue Class - 0 views

  •  
    Java.util package provides a PriorityQueue class where an unbounded priority queue based on a priority heap. The elements of the priority queue are ordered according to their natural ordering, or by a Comparator provided at queue construction time, depending on which constructor is used. A priority queue does not permit null elements. A priority queue relying on natural ordering also does not permit insertion of non-comparable objects.
eyssant

Java.util.BitSet Class - 0 views

  •  
    Java.util package provides a BitSet class which implements a vector of bits that grows as needed. Each component of the bit set has a boolean value. The bits of a BitSet are indexed by nonnegative integers. By default, all bits in the set initially have the value false. One BitSet may be used to modify the contents of another BitSet through logical AND, logical inclusive OR, and logical exclusive OR operations.
eyssant

Java.util.Hashtable Class - AlphaCodingSkills - 0 views

  •  
    Java.util package provides a Hashtable class which implements hash table and maps keys to value. Any non-null object can be used as a key or as a value. To successfully store and retrieve objects from a hashtable, the objects used as keys must implement the hashCode method and the equals method.
ta7a33

Learn Python Programming FOR FREE for Absolute Beginners - 0 views

  •  
    This free course is totally independent. There are likewise no pre-necessities for this and all levels are welcome. The course additionally has intuitive activities and their answers remotely connected to it which will give you quick criticism so you can get the hang of everything too quick!
eyssant

Java.util.Dictionary Class - AlphaCodingSkills - 0 views

  •  
    Java.util package provides a Dictionary class which is the abstract parent of any class, such as Hashtable, which maps keys to values. Every key and every value is an object. In any one Dictionary object, every key is associated with at most one value. Given a Dictionary and a key, the associated element can be looked up. Any non-null object can be used as a key and as a value.
eyssant

Java.util.LinkedList Class - AlphaCodingSkills - 0 views

  •  
    Java.util package provides a LinkedList class which has Doubly-linked list implementation of the List and Deque interfaces. The class has all optional list operations, and permits all elements (including null). Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index.
eyssant

Java.util.Scanner Class - AlphaCodingSkills - 0 views

  •  
    Java.util package provides a Scanner class. A simple text scanner parse primitive types and strings using regular expressions. A Scanner breaks its input into tokens using a delimiter pattern, which by default matches whitespace. The resulting tokens may then be converted into values of different types using the various next methods.
1 - 20 of 26 Next ›
Showing 20 items per page