
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Karthikeya Boyini has Published 2193 Articles

karthikeya Boyini
144 Views
Microsoft collaborated with GW Micro, this collaboration brought GW Micro’s Window-Eyes screen reader tool which will be available at free of cost to Office users.GW Micro’s Window-Eyes facilitates blind or visually harmed user to access Windows based computers by speaking the contents of the computer’s screen. This tool allows blind ... Read More

karthikeya Boyini
157 Views
Facebook celebrated its 10th anniversary with interesting feature; Look Back video, which facilitates users to gather together all their important memories associated in their account life from when they joined and presents them in a cheesy. Depends on from how long user has been on Facebook and how much user ... Read More

karthikeya Boyini
212 Views
Microsoft updated “Device Health” for Windows 8.1, aims to develop online security of Banking and Financial account section for users’ better operation. This update will observer and check the PC security status before user getting into the sensitive banking and financial transactions online.Device Health service is a Window based service, ... Read More

karthikeya Boyini
4K+ Views
JavaScript label statements are used to prefix a label to an identifier. A label can be used with break and continue statement to control the flow more precisely. A label is simply an identifier followed by a colon (:) that is applied to a statement or a block of code. ... Read More

karthikeya Boyini
201 Views
The break statement is used to exit a loop early, breaking out of the enclosing curly braces.ExampleYou can try to run the following code to learn how to use the break statement to come out of a loopLive Demo var ... Read More

karthikeya Boyini
87 Views
The gmp_rootrem() function is used to calculate the nth root of a GMP number. It returns the integer component of the nth root and remainder.Syntaxgmp_rootrem($n, $root)Parametersn − It can be GMP object in PHP version 5.6 and later. Can also be numeric strings.root − The root of the number nReturnThe ... Read More

karthikeya Boyini
54 Views
The IntlChar getBidiPairedBracket() function is used to get the paired bracket character for the value val.SyntaxIntlChar::getBidiPairedBracket (val)Parametersval − An integer or character encoded as a UTF-8 string.ReturnThe IntlChar getBidiPairedBracket()function returns the mapped paired bracket.ExampleThe following is an example −OutputThe following is the output −int(15) string(1) ")" NULL string(1) "J"Read More

karthikeya Boyini
45 Views
The IntlChar getUnicodeVersion() function is used to get the Unicode version.Syntaxarray IntlChar::getUnicodeVersion ()ParametersNAReturnThe IntlChar getUnicodeVersion() function returns thearray containing the Unicode version number.ExampleThe following is an example −OutputThe following is the output −array(4) { [0]=> int(6) [1]=> int(3) [2]=> int(0) [3]=> int(0) }

karthikeya Boyini
66 Views
The IntlChar digit() function is used to display the decimal digit value of a code point for a given radix.Syntaxint IntlChar::digit( $val, $radix )Parametersval − An integer or character encoded as a UTF-8 string.radix − The radix value. Default is 10.ReturnThe IntlChar digit() function returns the number represented by the ... Read More

karthikeya Boyini
56 Views
The IntlChar charType() function is used to get the general category value for the entered value.Syntaxint IntlChar::charType (val)Parametersval − An integer or character encoded as a UTF-8 string.ReturnThe IntlChar charType()function returns the following general category content −IntlChar::CHAR_CATEGORY_UNASSIGNEDIntlChar::CHAR_CATEGORY_GENERAL_OTHER_TYPESIntlChar::CHAR_CATEGORY_UPPERCASE_LETTERIntlChar::CHAR_CATEGORY_LOWERCASE_LETTERIntlChar::CHAR_CATEGORY_TITLECASE_LETTERIntlChar::CHAR_CATEGORY_MODIFIER_LETTERIntlChar::CHAR_CATEGORY_OTHER_LETTERIntlChar::CHAR_CATEGORY_NON_SPACING_MARKIntlChar::CHAR_CATEGORY_ENCLOSING_MARKIntlChar::CHAR_CATEGORY_COMBINING_SPACING_MARKIntlChar::CHAR_CATEGORY_DECIMAL_DIGIT_NUMBERIntlChar::CHAR_CATEGORY_LETTER_NUMBERIntlChar::CHAR_CATEGORY_OTHER_NUMBERIntlChar::CHAR_CATEGORY_SPACE_SEPARATORIntlChar::CHAR_CATEGORY_LINE_SEPARATORIntlChar::CHAR_CATEGORY_PARAGRAPH_SEPARATORIntlChar::CHAR_CATEGORY_CONTROL_CHARIntlChar::CHAR_CATEGORY_FORMAT_CHARIntlChar::CHAR_CATEGORY_PRIVATE_USE_CHARIntlChar::CHAR_CATEGORY_SURROGATEIntlChar::CHAR_CATEGORY_DASH_PUNCTUATIONIntlChar::CHAR_CATEGORY_START_PUNCTUATIONIntlChar::CHAR_CATEGORY_END_PUNCTUATIONIntlChar::CHAR_CATEGORY_CONNECTOR_PUNCTUATIONIntlChar::CHAR_CATEGORY_OTHER_PUNCTUATIONIntlChar::CHAR_CATEGORY_MATH_SYMBOLIntlChar::CHAR_CATEGORY_CURRENCY_SYMBOLIntlChar::CHAR_CATEGORY_MODIFIER_SYMBOLIntlChar::CHAR_CATEGORY_OTHER_SYMBOLIntlChar::CHAR_CATEGORY_INITIAL_PUNCTUATIONIntlChar::CHAR_CATEGORY_FINAL_PUNCTUATIONIntlChar::CHAR_CATEGORY_CHAR_CATEGORY_COUNTExampleThe following is an example −OutputThe following is the output −bool(false) bool(false) bool(false) bool(true) ... Read More