Frequency of letter in word in JAVA Shivam tripathi December 11, 2018 PROGRAM import java.util.Scanner; public class DuplicateLetters{ public static void main(String args[]) { Scanner scan = new ... Read More
Nth prime number in java Shivam tripathi December 11, 2018 Program public class Prime { final static int MAX = 10000 ; static boolean prime[] = new boolean [10001] ; static void primeNum... Read More
LCM and HCF of two number in java Shivam tripathi November 30, 2018 import java.util.*; class GFG { public static void main (String[] args) { Scanner scan = new Scanner(System.in); int a = ... Read More
Palindrome (Number and word) in java Shivam tripathi November 30, 2018 Word - import java.util.Scanner; class GFG { public static void main (String[] args) { //System.out.println("GfG!"); ... Read More
Upload base64 image to Google CDN in Java Shivam tripathi November 30, 2018 /*Upload base64 image in CDN Save cdn url to database*/ /* path contain base64 encoded image (i.e. Strint path = "data:image/png... Read More
Binary to Decimal in java Shivam tripathi November 30, 2018 /* input = 10111 output = 23 */ import java.util.Scanner; class GFG { public static void main (String[] args) { /... Read More
Decimal to Binary in java Shivam tripathi November 30, 2018 /* input = 11 output = 1011 */ import java.io.*; import java.util.Scanner; class GFG { public static void main (String[] args)... Read More
Pipelined Table functions Sarfraz Alam November 13, 2018 A pipelined table function will come up with a single row for the result set and pipe it out of the function when it’s available. Since t... Read More
List of all Primes up to a given number Sarfraz Alam November 06, 2018 #include <stdio.h> int *getPrimes(int n) { static int r[10]; int i,j; int count = 0, s=0; for(i = 2 ; i ... Read More
GROUP_CONCAT in MYSQL Shivam tripathi October 18, 2018 Syntax - SELECT GROUP_CONCAT ( DISTINCT ( categories ) SEPARATOR ' ' ) FROM table DISTINCT for unique categories S... Read More
Scroll to top smoothly button with javascript and jquery Sarfraz Alam October 13, 2018 I this tutorial i will show you how to create a scroll to top button in html with javascript and jquery. Just add all code step by step ... Read More
Show/Hide Div on Button Click using HTML, CSS and JavaScript. Shivam tripathi September 26, 2018 code>> <!--Show/Hide Div on Button Click .--> <html> <head> <style> div{ padding... Read More
Oracle Function returning multiple values Sarfraz Alam September 26, 2018 We Can Return multiple values from the function in PLSQL by following steps given below : Create an OBJECT TYPE that contain the colum... Read More
C program to create a moving car Sarfraz Alam September 19, 2018 #include <graphics.h> #include <dos.h> #include <conio.h> main() { int i, j = 0, gd = DETECT, gm; initgrap... Read More
Read csv file Shivam tripathi September 18, 2018 Read csv file in grails Add CsvGrailsPlugin This plugin adds dynamic methods '... Read More
Case statement MySQL Shivam tripathi September 17, 2018 Case statement in MYSQL Syntax- Select CASE WHEN(condition) THEN 'Statement' WHEN(cond... Read More
RLIKE OPERATOR Example Shivam tripathi September 13, 2018 RLIKE OPERATOR IN MYSQL In this tutorial, I will show you the use of RLIKE operator in MYSQL. RLIKE Operator perfor... Read More
Bankers Algorithm Implementation Sarfraz Alam September 11, 2018 C Program to implement Bankers Algorithm #include<stdio.h> main() { int max[20],all[20],need[20],s... Read More
Writing Dynamic Insert in Oracle Sarfraz Alam September 10, 2018 plsql program to insert data dynamically at runtime by taking input from the user declare val1 number := &Enter_value; ... Read More