---
title: "What is the default size of load factor in hashing based collection?"  
description: "What is the default size of load factor in hashing based collection?"  
author: "Anonymous User"  
published: 2015-05-14  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2529/what-is-the-default-size-of-load-factor-in-hashing-based-collection  
category: "java"  
tags: ["java", "collection"]  
reading_time: 1 minute  

---

# What is the default size of load factor in hashing based collection?

The default size of load factor is 0.75. The default capacity is computed as initial capacity * load factor. For example, 16 * 0.75 = 12. So, 12 is the default capacity of Map

## Answers

### Answer by Anonymous User

The default size of load factor is 0.75. The default capacity is computed as initial capacity * load factor. For example, 16 * 0.75 = 12. So, 12 is the default capacity of Map


---

Original Source: https://www.mindstick.com/interview/2529/what-is-the-default-size-of-load-factor-in-hashing-based-collection

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
