Chandu yadav has Published 1276 Articles

How to improve the ranking of your websites for search engines

Chandu yadav

Chandu yadav

Updated on 01-Jun-2022 07:11:46

Let’s assume that, you want to promote your dance academy. As the owner of the institution, you want more people to know about the types of dance forms being taught in your institute and the other facilities you are providing. The more people know about your academy, the more students ... Read More

Why does one need a mentor in life to grow?

Chandu yadav

Chandu yadav

Updated on 26-Apr-2022 06:41:14

Either you want a growth in the current role or kick off a new business, a good mentor can pave the way for you. At your workplace, you might find many individuals who hold a treasure of leadership experiences and people just fall for their intelligence. You can make such ... Read More

Create Three Equal Columns with Bootstrap grid Layout

Chandu yadav

Chandu yadav

Updated on 09-Feb-2022 07:23:05

To create three equal columns layout with Bootstrap Grid Layout, you can try to run the following code −Example           Bootstrap Example                              Bootstrap Grid                       Column One             Column Two             Column Three                     Output

HTML5 Canvas distorted

Chandu yadav

Chandu yadav

Updated on 16-Dec-2021 12:28:24

If the canvas looks distorted, then try to change the height and width −The default height and width of the canvas in HTML5 is of 2/1 ratio −width = 300 height = 150ExampleLet us see an example −                    #mycanvas{border:1px solid red;}                         Output

HTML Canvas to draw Bezier Curve

Chandu yadav

Chandu yadav

Updated on 16-Dec-2021 10:04:56

To draw a Bezier curve, use the BezierCurveTo() method in HTML. Let us first see the syntax −ctx.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y);Here, cp1x − Represents the x-coordinate of the first Bezier control pointcp1y − Represents the y-coordinate of the first Bezier control pointcp2x − Represents the x-coordinate of the ... Read More

Priority of AND and OR operator in MySQL select query?

Chandu yadav

Chandu yadav

Updated on 06-Aug-2021 21:41:51

The AND has the highest priority than the OR operator in MySQL select query.Let us check how MySQL gives the highest priority to AND operator.The query is as followsmysql> select 0 AND 0 OR 1 as Result;The following is the output+--------+ | Result | +--------+ | 1     | ... Read More

Binary Search in C++

Chandu yadav

Chandu yadav

Updated on 28-Jun-2021 05:55:17

Binary Search is a method to find the required element in a sorted array by repeatedly halving the array and searching in the half.This method is done by starting with the whole array. Then it is halved. If the required data value is greater than the element at the middle ... Read More

Basics of File Handling in C

Chandu yadav

Chandu yadav

Updated on 18-Nov-2020 05:06:31

Here we will see some basic file handling operations in C. The operations are listed below:Writing into a FileReading from FileAppending in a FileWrite into a fileSee the code to get the idea how we write into a fileExample Code#include int main() {    FILE *fp;    char *filename ... Read More

One’s Complement

Chandu yadav

Chandu yadav

Updated on 25-Jul-2020 12:59:11

Binary Number System is one the type of most popular Number Representation techniques that used in digital systems. In the Binary System, there are only two symbols or possible digit values, i.e., 0 (off) and 1 (on). Represented by any device that only 2 operating states or possible conditions.Generally, there ... Read More

Defining internet of things iot for businesses

Chandu yadav

Chandu yadav

Updated on 07-Jul-2020 07:32:34

In today’s world, the biggest technology trend is the ‘Internet of Things (IoT);’ and true enough it is defining our lives, the way we work; shaping and influencing businesses, and governments too. It is the ‘next big thing’ or is simply being termed as a revolution/progression of the web, and ... Read More

1 2 3 4 5 ... 128 Next
Advertisements