Home »
MCQs »
Neo4j MCQs
Suppose you want to construct multiple nodes then which of the following syntax you will use?
30. Suppose you want to construct multiple nodes then which of the following syntax you will use?
- CREATE (node1);(node2)
- CREATE (node1)and (node2)
- CREATE (node1),(node2)
- CREATE (node1):(node2)
Answer: C) CREATE (node1),(node2)
Explanation:
CREATE (node1),(node2) is the correct syntax if you want to construct multiple nodes.