Hi Shreeram, to determine whether a dropdown supports multiple options selection at a same time, you can use isMultiple() method. Following code snippet shows how isMultiple() verifies the functionality of the dropdown:
Select dropdown = new Select(driver.findElement(By.id("Country")));
dropdown.isMultiple();