by admin | Jun 4, 2015 | sem3
Operators overloading in C++ C++ allows you to specify more than one definition for a operators name in the same scope, which is called operators overloading in c++. You can redefine or also overload most of the built-in operators available in C++. S that a programmer...
by admin | Jun 4, 2015 | sem3
Function overloading in C++ Function overloading in C++ allows you to specify more than one definition for a function name in the same scope,. An overloaded declaration is a declaration that had been declared with the same name as a previously declared in the same...
by admin | Jun 4, 2015 | sem1
Types of optical fibers An optical fiber (or optical fibre) is a flexible, transparent fiber made by drawing glass (silica) or plastic to a diameter slightly thicker than that of a human hair. Optical fibers are used most often as a means to transmit light between the...
by admin | Jun 4, 2015 | sem3
Polymorphism in C++ The word polymorphism in c++ means having many forms. Typically, polymorphism occurs when there is a hierarchy of classes and they are related by inheritance. C++ polymorphism means that a call to a member function will cause a different function...
by admin | Jun 4, 2015 | sem1
Nd-YAG laser Nd-YAG (neodymium-doped yttrium aluminium garnet; Nd:Y3Al5O12) is acrystal that is used as a lasing medium for solid-state lasers. The dopant, triply ionized neodymium, Nd(III), typically replaces a small fraction (1%) of the yttrium ions in the host...
by admin | Jun 4, 2015 | sem3
String Handling in C++ String Handling in c++ provides two types of string representations: The C-style character string. The string class type introduced with Standard C++. The C-Style Character String: The C-style character string originated within the C language...