Write a Python function that takes a dictionary and a list of keys as parameters. The function should return True if all keys in the list are present in the dictionary, otherwise, return False.
Example 1:
Input: {"a": 1, "b": 2, "c": 3}, ["a", "b"]
Output: True
Example 2:
Input: {"a": 1, "b": 2, "c": 3}, ["a", "d"]
Output: False