Hello @Bharti, I was using the same and I figured out that the drop down is almost similar to text box if you know what you want to push in.
see this example where i used facebook's DOB section
driver.get("https://www.facebook.com");
driver.findElement(By.id("day")).sendKeys("6");
driver.findElement(By.id("month")).sendKeys("Nov");
Select year = new Select(driver.findElement(By.id("year")));
year.selectByVisibleText("2000");