Data Structure
Java
Python
HTML
Interview Preparation
Interview Prep
Tutorials
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.1K+ articles
Java
9.3K+ articles
Misc
7.7K+ articles
Java-Functions
4.2K+ articles
Node.js
3.0K+ articles
Java - util package
1.6K+ articles
Java-Collections
1.1K+ articles
Node.js-fs-module
181+ articles
TCS-coding-questions
136+ articles
Java-NavigableMap
19 posts
Recent Articles
Popular Articles
Node util.promisify() Method
Last Updated: 15 July 2025
`util.promisify()` in Node.js converts callback-based methods to promise-based, aiding in managing asynchronous code more cleanly. This alleviates callback nesting issues,...
read more
Node.js
C++-Virtual Functions
Java-NavigableMap
TCS-coding-questions
Node.js-util-module
Node fs.unlink() Method
Last Updated: 12 July 2025
`fs.unlink()` in Node.js removes files or symbolic links, while for directories, it's advisable to use `fs.rmdir()` since it doesn't support directory removal.Syntax:fs.un...
read more
Web Technologies
Node.js
Java-NavigableMap
TCS-coding-questions
Node.js-fs-module
NavigableMap put() Method in Java
Last Updated: 31 October 2018
The put() method of NavigableMap Interface is used to insert a mapping into a map. This means we can insert a specific key and the value it is mapping to into a particular...
read more
Misc
Java
Java-Functions
Java-NavigableMap
NavigableMap size() Method in Java
Last Updated: 31 October 2018
The size() method of NavigableMap interface is used to get the size of the map which refers to the number of the key-value pair or mappings in the Map.Syntax:NavigableMap....
read more
Misc
Java
Java-Functions
Java-NavigableMap
NavigableMap clear() Method in Java
Last Updated: 31 October 2018
The clear() method of NavigableMap interface in Java is used to clear and remove all of the elements or mappings from a specified Map.Syntax:NavigableMap.clear()Parameters...
read more
Misc
Java
Java-Functions
Java-NavigableMap
NavigableMap isEmpty() Method in Java
Last Updated: 11 July 2025
The isEmpty() method of the NavigableMap interface is used to check for the emptiness of the map. The method returns True if no key-value pair or mapping is present in the...
read more
Misc
Java
Java-Functions
Java-NavigableMap
NavigableMap higherKey() Method in Java
Last Updated: 15 November 2021
The higherKey() method of NavigableMap interface is used to return the least key strictly greater than the given key, or null if there is no such key.Syntax:public K highe...
read more
Misc
Java
Java-Collections
Java-Functions
Java-NavigableMap
NavigableMap lowerKey() Method in Java
Last Updated: 30 October 2018
The lowerKey() method of NavigableMap Interface is used to return the greatest key strictly less than to given key, passed as the parameter. In simpler words, this method ...
read more
Misc
Java
Java-Collections
Java-Functions
Java-NavigableMap
NavigableMap floorEntry() method in Java
Last Updated: 11 July 2025
The floorEntry() method of NavigableMap interface in Java is used to return a key-value mapping associated with the greatest key less than or equal to the given key, or nu...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-NavigableMap
NavigableMap floorKey() method in Java
Last Updated: 11 July 2025
The floorKey() method of NavigableMap interface in Java is used to return the greatest key less than or equal to the given key, or null if there is no such key.Syntax:K fl...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-NavigableMap
NavigableMap higherEntry() method in Java
Last Updated: 11 July 2025
The higherEntry() method of NavigableMap interface in Java is used to return a key-value mapping associated with the least key strictly greater than the given key, or null...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-NavigableMap
NavigableMap lowerEntry() method in Java
Last Updated: 11 July 2025
The lowerEntry() method of NavigableMap interface in Java is used to return a key-value mapping associated with the greatest key strictly less than the given key, or null ...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-NavigableMap
NavigableMap pollFirstEntry() method in Java
Last Updated: 11 July 2025
The pollFirstEntry() method of NavigableMap interface in Java is used to remove and return a key-value mapping associated with the least key in this map, or null if the ma...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-NavigableMap
NavigableMap pollLastEntry() method in Java
Last Updated: 11 July 2025
The pollLastEntry() method of NavigableMap interface in Java is used to remove and return a key-value mapping associated with the greatest key in this map, or null if the ...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-NavigableMap
NavigableMap headMap() in Java
Last Updated: 11 July 2025
The headMap() method of NavigableMap interface in Java is used to return a view of the portion of this map whose keys are less than (or equal to, if inclusive is true) toK...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-NavigableMap
1
2