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
Arjun Thakur has Published 1024 Articles
Arjun Thakur
181 Views
The highlight_string() function outputs a string with the PHP syntax highlighted.Syntaxhighlight_string(string, return)Parametersstring − The string to highlight.return −If this parameter is set to true, this function will return the highlighted code as a string, instead of printing it out. default is false.ReturnThe highlight_string() function returns true on success, or false ... Read More
Arjun Thakur
325 Views
The filter_id() function returns the filter ID of provided filter name.Syntaxfilter_id(filtername)Parametersfiltername − The name of filter to get the ID from.ReturnThe filter_id() function returns filter ID on success or FALSE, if the filter does not exist.ExampleOutputThe following is the output.int = 257 boolean = 258 float = 259 validate_regexp = ... Read More
Arjun Thakur
152 Views
You need to perform select again on your query. Here is the sampleSELECT DATE, FUND_ID, PPT_ID, SOURCE_ID, AMOUNT, SUM (AMOUNT) as TOTAL FROM ( SELECT AD.CHV_DATE.DATE, AD.CHV_FUND.FUND_ID, AD.CHV_PARTICT.PPT_ID, AD.CHV_PARTICT.SOURCE_ID, SUM (AD.CHV_PARTICT.AMOUNT), FROM AD.CHV_DATE, AD.CHV_FUND, AD.CHV_PARTICT, AD.CHV_SOURCE WHERE DC.CHV_SOURCE.FUND_ID=AD.CHV_FUND.FUND_ID AND ... Read More
Arjun Thakur
1K+ Views
DefinitionPassive Optical Network (PON) is a FTTH (Fiber to the Home) technology deployed in both domestic and commercial consumers. It is called a passive network since it does not require a power equipment to amplify or process signals. A PON implements point – to – multipoint architecture, where a single ... Read More
Arjun Thakur
303 Views
Here we will see we can take all numbers which are in range 3CH and 64H from an array using 8085.Problem StatementWrite 8085 program to take all numbers which are greater or equal to 3CH, and lesser than 64H from an array. Numbers are stored at 8001 onwards, 8000 is ... Read More
Arjun Thakur
555 Views
The cords attribute of the element is used to set the coordinates of area in image map. Use the attribute with shape attribute and set the size & shape of an area.Following is the syntaxUnder the value above, you can set the following coordinates with different parameters −x1, y1, ... Read More
Arjun Thakur
554 Views
This example demonstrate about How to play ringtone/alarm/notification sound in Android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 − ... Read More
Arjun Thakur
2K+ Views
Templates are the foundation of generic programming, which involves writing code in a way that is independent of any particular type.A template is a blueprint or formula for creating a generic class or a function. The library containers like iterators and algorithms are examples of generic programming and have been ... Read More
Arjun Thakur
150 Views
The HTML DOM Anchor protocol property is used to set or return the protocol of a link in the href attribute.Following is the syntax to set the protocol property −anchorObj.protocol = protocol_urlAbove, protocol_url is the protocol of the URL. The values can be http, https, ftp, etc.Following is the syntax ... Read More
Arjun Thakur
180 Views
For this, use the CHAR_LENGTH() function in MySQL. Let us first create a table −mysql> create table DemoTable ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Subject longtext ); Query OK, 0 rows affected (1.17 sec)Now you can insert some records in the table using insert ... Read More