Company: Apple_MCQ
Difficulty: medium
Which command is used to remove a relation from an SQL?
For a given binary tree, what does the following function do? int fun(struct node *root) { if (root == NULL) return 0; if (root->left == NULL && root->right == NULL) return 0; return 1 + fun(root->left) + fun(root->right); }