Graph - Quiz

  • AA linear data structure in which elements are arranged in a sequence
  • BA non-linear data structure in which elements are arranged in a hierarchy
  • CA non-linear data structure in which elements are arranged in a network
  • DA data structure that represents a set of elements and their relationships
  • AA node that has no outgoing edges
  • BA node that has no incoming edges
  • CA node in a graph
  • DA node that is connected to another node by an edge
  • Aa) A node that has no outgoing edges
  • BA node that has no incoming edges
  • CA connection between two nodes in a graph
  • DA node that is connected to another node by an edge
  • AA graph in which every node is connected to every other node
  • BA graph in which every edge has a direction associated with it
  • CA graph in which every node has at most one outgoing edge
  • DA graph in which every edge has no direction associated with it
  • AA way to sort the vertices of a graph based on their degrees
  • BA way to sort the vertices of a graph based on their distances from a particular node
  • C A way to sort the vertices of a directed acyclic graph based on their dependencies
  • DA way to sort the edges of a graph based on their weights
  • AA sequence of nodes in a graph
  • BA sequence of edges in a graph
  • CA sequence of nodes and edges in a graph
  • DA cycle in a graph
  • ATo find the shortest path between two nodes in a weighted graph
  • BTo find the longest path between two nodes in a weighted graph
  • CTo find the minimum spanning tree of a graph
  • DTo find the maximum flow in a network
  • ATo find the shortest path between two nodes in a weighted graph
  • BTo find the longest path between two nodes in a weighted graph
  • CTo find the minimum spanning tree of a graph
  • DTo find the maximum flow in a network
  • ATo find the shortest path between two nodes in a weighted graph
  • BTo find the longest path between two nodes in a weighted graph
  • CTo find the minimum spanning tree of a graph
  • D To find the maximum flow in a network
  • AA directed graph has edges with directions, while an undirected graph does not.
  • BA directed graph has cycles, while an undirected graph does not.
  • CA directed graph has only one connected component, while an undirected graph can have multiple connected components.
  • DA directed graph has only one source node, while an undirected graph can have multiple source nodes.