Recent

Saturday, October 15, 2022

Tuesday, April 5, 2022

Saturday, January 8, 2022

January 08, 2022

Online QR Code Generator Tool

QR Code Maker





Warning! Please Enter Something...

 


HOW TO DOWNLOAD A QR CODE?


Step-1:

Generate QR Code

Step-2:


Right Click on QR Code Image

Step-3:


Save Image To Your Computer


Online QR Code Generator Tool


What is QR Code?

QR codes are a type of barcode that can be scanned by a QR code reader in order to obtain information. They are encoded with data related to a certain subject, and they can be used in many different ways. QR codes are useful for storing URLs, contact information, and more.

QR codes are a form of 2-dimensional barcode that can store large amounts of data. QR codes are most often used to encode URLs for quick access, but they can also be used to encode any type of data. QR codes are read using a phone's camera and an app, which decodes the information encoded in the code and takes the user to the desired website or other data.

QR codes are a type of matrix barcode, or two-dimensional code, that is used to convey information. They are most commonly used in marketing. QR codes can be scanned by smartphones and can be used to direct users to websites, social media pages, or videos.

QR (Quick Response) codes are a type of two-dimensional barcode. They are used to encode information and can be read by smartphones, tablet computers, and dedicated QR readers. The QR code was invented in Japan by Denso-Wave in 1994 to track vehicles during the manufacturing process. QR codes are now commonly used for storing URLs and other information which can be accessed via a smartphone's web browser.

A QR code, or Quick Response code, is a machine-readable code consisting of black modules arranged in a square pattern on a white background. These black modules are actually tiny square cells that can each contain one of 256 possible colors. QR codes have been used in advertising and packaging to perform functions such as product tracking and marketing.


Where was QR Code Found?

QR codes were first popularized in Japan, but have since become extremely common in other parts of the world. Today, QR codes are used in marketing and advertising. In Japan, QR codes are often used for product tracking. They can also be used for various functions including product authentication, product tracking, customer service, product information, and more.

QR codes are also used in other ways. You could, for example put a QR code on an ad that links to a video or a website. Or you could write a QR code on a business card with a link to an online form to help your customers contact a company. You can also use QR codes to find information online.


QR Code Maker

QR code maker online tool is a web-based QR code generator that allows the user to create QR codes quickly and easily from any URL, text, or image. The QR code generator is extremely simple to use and does not require any coding knowledge to use, which makes it an easy and efficient method of QR code generation. This website is free and can be used to create QR codes for both personal and commercial use. The QR code generator is available to use in any country.




DONT CLICK THIS - https://bit.ly/3F3Glqn

January 08, 2022

All Format HD YouTube Video Downloader



Download free all format YouTube HD videos with our free online YouTube HD video downloader, you can download MP3, AVI, MP4, WEBM videos by using our free HD YouTube video downloader tool, to view the videos on YouTube, you can download them to your computer


All HD Format YouTube Free Video Downloader

Enter YouTube Video Link:
Select Video Format:

DONT CLICK THIS - https://bit.ly/3F3Glqn

Friday, January 7, 2022

January 07, 2022

LeetCode - Two Sum - Solution in C#



1. Two Sum

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

You can return the answer in any order.

 

Example 1:

Input: nums = [2,7,11,15], target = 9
Output: [0,1]
Output: Because nums[0] + nums[1] == 9, we return [0, 1].

Example 2:

Input: nums = [3,2,4], target = 6
Output: [1,2]

Example 3:

Input: nums = [3,3], target = 6
Output: [0,1]


  
using System;

namespace LeetCode
{
    class Program
    {
        static void Main(string[] args)
        {
            int [] nums = { 2, 7, 11, 15 };
            int target = 17;
            int [] results=  TwoSum(nums, target);
            Console.ReadKey();

        }
        public static int[] TwoSum(int[] nums, int target)
        {
            for (var i = 0; i < nums.Length; i++)
            {
                for (var j = nums.Length - 1; j > i; j--)
                {
                    if (i != j)
                    {
                        if (nums[i] + nums[j] == target)
                        {
                            return new int[] { i, j };
                        }
                    }
                }
            }
            return new int[] { };
        }
    }
}

  

DONT CLICK THIS - https://bit.ly/3F3Glqn