1. How to get point (called C_1) of intersection with line segment BC?
(This (first) part is (morealess) a duplicat to Orthogonal line in tkz-euclide.)
You can define a orthogonal line on BC across A with \tkzDefLine[orthogonal=through A](B,C). The second point on the line could be defined with \tkzGetPoint{} and a arbitrary name for example X_1 => \tkzGetPoint{X_1}.
The intersection point could be defined with \tkzInterLL( )( ) and a arbitrary name for example C_1 => \tkzGetPoint{C_1}. So with \tkzInterLL(C,B)(A,X_1) you can compute the intersection of the two lines CB and AX_1. With \tkzGetPoint{C_1} you get the intersection point, saved as C_1.
For drawing and labeling the points (Point1,Point2,Point3) you can use \tkzLabelPoints(Point1,Point2,Point3),... and \tkzDrawPoints(Point1,Point2,Point3).
EDIT:
2. How to extend the angle bisecor line in the form of ray?
With \tkzDrawLine[add = 0 and 0.1,color=green](A,tkzPointResult) you can draw a line from A to the last tkzPointResult, which is (here) at the end C_1. To extends the line add some space with add = AddStart and AddEnd (to extends start or ending point) => \tkzDrawLine[add = 0 and 0.1,color=green](A,tkzPointResult)
See manuanl capter 7.5.1 Utilisation de \tkzInCenter avec trois points on page 30.
3. Arrow tip:
If you like an arrow tip you can use: arrows=-triangle 60 or other Triangular Arrow Tips
\tkzDrawLine[add = 0 and 0.1,color=green,arrows=-triangle 60](A,tkzPointResult)

MWE:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{tkz-euclide}
\usetkzobj{all}
\begin{document}
\begin{tikzpicture}
\tkzDefPoint(2,4){A}
\tkzDefPoint(0,0){B}
\tkzDefPoint(4,0){C}
\tkzLabelPoint[above](A){$A$}
\tkzLabelPoint[left](B){$B$}
\tkzLabelPoint[right](C){$C$}
\tkzDrawPolygon(A,B,C)
\tkzDrawBisector[color=blue](B,A,C)
\tkzDefLine[orthogonal=through A](B,C)
\tkzGetPoint{X_1}
%\tkzLabelPoints(X_1)\tkzDrawPoints(X_1)
\tkzInterLL(C,B)(A,X_1)
\tkzGetPoint{C_1}
%\tkzDrawLine[add = 0 and 0.1,color=green](A,tkzPointResult)
\tkzDrawLine[add = 0 and 0.1,color=green,arrows=-triangle 60](A,tkzPointResult)
\tkzDrawLine[add = 0.3 and 0.1,color=orange](B,tkzPointResult)
\tkzDrawPoints(C_1)\tkzLabelPoints(C_1)
\end{tikzpicture}
\end{document}
\tkzGetPoint{X_1}
\tkzInterLL(C,B)(A,X_1) \tkzGetPoint{C_1}
– Bobyandbob Jul 17 '17 at 06:22. C_1=intersection point. With\tkzDrawPoints(C_1)\tkzLabelPoints(C_1,X_1)` you can draw and label this point.