Selenium Java - Actions Class
What will be the effect of the following Selenium Java code snippet?
Actions actions = new Actions(driver);
actions.keyDown(Keys.CONTROL).sendKeys("a").keyUp(Keys.CONTROL).perform();