[Tex/LaTex] Want to Draw circle with sector and segment

circlestikz-pgf

I am able to draw a simple circle.

\documentclass{minimal}
\usepackage{tikz}
\usepgflibrary{shapes}
\begin{document}
\begin{tikzpicture}
\draw (10,0) circle (3cm);
\end{tikzpicture}
\end{document}

But when I come across the following figures I face some difficulties.

enter image description here

Please provide some guidance so I can move ahead.

Best Answer

\documentclass[tikz,border=2mm]{standalone}
\usepackage{lmodern}

\begin{document}
\begin{tikzpicture}[draw=blue!70,thick]
\filldraw[fill=blue!40] circle (2.5cm);
\filldraw[fill=white] 
     (320:2.5cm) node[right] {Q} 
  -- (220:2.5cm) node[left] {P} 
  arc[start angle=220, end angle=320, radius=2.5cm] 
  -- cycle;
\node {Major Segment};
\node at (-90:2) {Minor Segment};

\begin{scope}[xshift=6cm]
\draw circle (2.5cm);
\filldraw[fill=blue!40] 
     (320:2.5cm) node[right] {Q}
  -- (0,0) node[above] {O}
  -- (220:2.5cm) node[left] {P} 
  arc[start angle=220, end angle=320, radius=2.5cm]
  -- cycle;
\node at (90:1cm) {Major Sector};
\node at (-90:1.5) {Minor Sector};
\end{scope}
\end{tikzpicture}
\end{document}

enter image description here