Final Answer:
1. Huffman Code:

2. Average Codeword Length (L):

3. Efficiency of the Code:

Step-by-step explanation:
To design a Huffman code, we start by constructing a binary tree where each leaf node represents a symbol from the alphabet \(x\) with the probabilities given. The basic idea is to assign shorter codewords to more probable symbols. After constructing the tree, the codewords are assigned by traversing the tree, with left branches representing '0' and right branches representing '1'. The resulting Huffman code for the given source is provided in the first part.
To find the average codeword length L, we use the formula:
![\[ L = \sum_(i=1)^(n) p_i \cdot l_i \]](https://img.qammunity.org/2024/formulas/mathematics/college/v5o18m3794hoh77rqjwxpn4flchbgzu1kf.png)

The efficiency of the code Efficiency is calculated as the ratio of the entropy of the source H(x) to the average codeword length L. In this case,
, so
. The efficiency value close to 1 indicates an effective Huffman code for the given source.