FAU Model Questions
FAU Model Questions
10. Explain the difference between breadth-first search (BFS) and depth-first search (DFS).
Answer: BFS explores neighbors level by level; DFS explores as deep as possible before
backtracking.
28. Explain the difference between syntax and semantics in formal languages.
Answer: Syntax is the structure/rules of the language; semantics is the meaning.
54. Explain the difference between inner join and outer join.
Answer: Inner join returns matching rows; outer join returns matching plus unmatched
rows.
58. Explain the difference between horizontal and vertical scaling in databases.
Answer: Horizontal adds more servers; vertical adds more resources to one server.