# Self review: Dynamic events - React Basic

1. **In React, you are not allowed to code a separate function that should be run to handle a click event.**
    
    * True
        
    * <mark>False</mark>
        
2. **Event-handling attributes in React are named almost the same as in HTML. Syntactically, the only difference is in the capitalization.**
    
    * <mark>True</mark>
        
    * False
        
3. **What's wrong with this code?**
    
    ```xml
    <button onClick={handleClick()}>
      Click me
    </button>
    ```
    
    * This code should work.
        
    * <mark>You cannot invoke an event-handling function from a JSX expression.</mark>
        
    * The event-handling attribute should be all lowercased.
