Saturday, December 31, 2016

Top 5 Websites To Compile & Run Programs Online || Online Compilers

As a programmer, till now you have compiled your program on any software in offline mode. Have you experience to compile and run your program online.There are many online compilers are available to compile and run programs of different languages like C, C++ or python.No you do not need to download and install a heavy software or compiler for programming, as you can do it online....
Read more »

Friday, December 30, 2016

How to Unlock Samsung S6310N Portugal by usb cable

How to Unlock Samsung S6310N Portugal by usb cable, it is unlock by third party unlocking tool called z3x box. just run the shell and select correct model, on your mobile phone put into usb debbuging and how? Settings > Applications > Development. and on dial phone type on keyboard *#9090# press and select usb diag. that it'sUnlocking Logs:Selected model: S6310NSelected port: COM16 Z3X BOX Serial...
Read more »

Top IT Certification Programs For Beginners in 2014

In order to boost and improve your professional life in information technology Field, getting certifications in various programs help a lot. Having certifications not only leave a good impression when you move toward interview also improve your skills in Field and develop your confidence level.Before moving towards any institution to get certifications you must choose a program which fulfill...
Read more »

C# Program using Functions and loops

C# Program using FunctionsProgram Statement:Write a function which takes one value as parameter and display the sum of digits in the value. e.g. if user has passed 125 then function will print 1+2+5 = 7Solution: class _sum { long n, i, sum = 0; public void add(long n) { for (i = n; i != 0; i = i / 10) { sum = sum + i % 10; } Console.WriteLine("\n\t\tSum of digits is : {0}", sum); } public void...
Read more »

C# Program using Two argument passing function

C# Program using Two argument passing functionProgram Statement:Write a function which takes two values n1 and n2 as arguments and multiply the n1 by itself n2 times i.e. calculate n1n2 and then return the result to main function which will display the result.Solution: class power_fun { double x; public power_fun() { x = 1; } double power(int a,int b) { for (int i = 1; i <= b; i++) { ...
Read more »

Thursday, December 29, 2016

Top 5 Biggest and Popular Programming Contests

Top 5 Biggest and Popular Programming ContestsDo or Die this is one of amazing and my favorite Quote which enough to change someone life and make history. Contests have same behavior like this sentence because you have to beat others and make your history with own hands here today I have discussed on Programming Contests. If you are programmer then you must familiar with programming contests and there...
Read more »

Wednesday, December 28, 2016

C# Program to Print half Diamond shapes using numbers

C# Program to Print half Diamond shapes using numbers 1 to 10Program Statement:Write a program to produce the following output:             1          2   3        4   5   6       7  8  9  10Solution: static void Main(string[] args) { int i,j,k=1; for (i = 1; i <= 4; i++) { for (j = 4; j >= 1; j--)...
Read more »

C# Program to display the different series output on the screen

C# Program to display the different series output on the screenProgram Statement:Write a program which display the following output on the screen.1 2 3 4 51 4 9 16 251 8 27 64 125Solution: static void Main(string[] args) { for (int i = 1; i <= 5; i++) Console.Write(i+" "); Console.WriteLine(); for (int i = 1; i <= 5; i++) Console.Write(i * i+" "); Console.WriteLine(); ...
Read more »

C# Program to Print Triangle in Square

C# Program to Print Triangle in SquareProgram Statement:Write a program which display the following output on the screen.####$#######$#$#####$###$###$#####$#$#######$Solution: class shape { int x, y; public void sh() { Console.WriteLine(); for (x = 1; x <= 5; x++) { for (y = 1; y <= 5 - x; y++) { Console.Write("#"); } Console.Write("$"); ...
Read more »

C# Program to Print Triangles

C# Program to Print TrianglesProgram Statement:Write a program to produce the following output:A B C D E F G F E D C B AA B C D E F     F E D C B AA B C D E           E D C B AA B C D                 D C B AA B C                        C B AA B                               B AA...
Read more »

PSP 2000 NO POWER and SHORTED Done!!(REFERENCE)

share ko lang mga boss buena mano kohistory nag games lang bigla n lng namatay wala khit green or red lightkaya search ako dito sa forumat nkita ko pwedeng POWER ICumiinit din kc sa kanya ay POWER ICtapos REHEAT KO pero wala pa rin pag mainit ung board nawawala yung SHORTEDpero pag malamig shorted n nmntapos kinapa ko n nmn ung POWER IC kung umiinit tlga umiinit pa rin tapos pinatagal ko napaso ako...
Read more »

program to Print Sum of factorial Series in C#

C# program to Print Sum of factorial SeriesProgram Statement:Write a program to display the sum of the following series.2/1! + 4/3! + 6/5! + 8/7! + 10/9! + . . . + n/(n-1)!Solution: public class factorial { int n; public void ser() { double f, sum = 2, res = 1, up = 2; Console.WriteLine("\n\t\tSeries = 2/1! + 4/3! + 6/5! + 8/7! + 10/9! + . . . + n/(n-1)!"); Console.WriteLine(); Console.Write("\n\t\tEnter ending point : "); ...
Read more »

Program to print sum of factorial of Odd series in C#

C# Program to print sum of factorial of Odd seriesProgram Statement:Write a program to display the sum of the following series i.e. sum of the factorial of odd series1! + 3! + 5! + 7! + 9! + . . . + n!Solution: static void Main(string[] args) { int i, j, f,last, sum = 0; Console.WriteLine("Enter Last value:"); last = Convert.ToInt32(Console.ReadLine()); i = 1; while (i <= last) { f = 1; ...
Read more »

Tuesday, December 27, 2016

program to print sum of series in C# using loops

C# program to print sum of seriesProgram Statement:Write a program to display the sum of the following series using loop.1*x + 2*x2 + 3*x3 + 4*x4 + 5*x5 + … + n*xnSolution: static void Main(string[] args) { int j, n = 1, x, lastn, sum = 0, prod = 1; Console.WriteLine("Enter last digit:"); lastn=Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter value of x:"); x = Convert.ToInt32(Console.ReadLine()); ...
Read more »

C# Program to print sum of the factorial of odd series multiply with x where power of x is square of corresponding number

C# Program to print sum of the factorial of odd series multiply with x where power of x is square of corresponding numberProgram Statement:Write a program to display the sum of the following series i.e. sum of the factorial of odd series multiply with x where power of x is square of corresponding number.X1*1! + X9*3! + X25*5! + X49*7! + X81*9! + . . . + Xn2*n!Solution: class _power { long n, f, x, sum = 0; public long power(long a, long b) { long res...
Read more »

C# program to print Factorial of all Prime numbers in csharp

C# program to print Factorial of all Prime numbersProgram Statement:Write a program using loop which takes one value n from user and show the factorial of all prime numbers which are less then n. e.g. if n = 10 then program will print the factorial of 2,3,5,7.Solution: public class fop { int x, a, b, p, fac=1; public void fact() { Console.WriteLine("\n\t\tShow factorial of primes less than n\n"); Console.Write("\n\t\tEnter ending point : ");...
Read more »

C# Program to print Rectangle $

C# Program to print Rectangle $Program Statement:Write a program using for loop which prints the following output on the screen.$$$$$$$$$$$$                $$                $$                $$$$$$$$$$$$Solution: static void Main(string[] args) { for (int i = 1; i <= 11; i++) Console.Write("$"); Console.WriteLine(); ...
Read more »

Program to Print Armstrong numbers in C#

C# Program to Print out all Armstrong numbers between 1 and 500Program Statement:Write a program to print out all Armstrong numbers between 1 and 500. If sum of cubes of each digit of the number is equal to the number itself, then the number is called an Armstrong number. For example, 153 = (1 * 1 * 1) + (5 * 5 * 5) + (3 * 3 * 3)Solution: public class armstrong { int x, a, res, sum = 0; public void find() { Console.WriteLine("\nAll Armstrong Numbers between...
Read more »

Monday, December 26, 2016

Is Running A Gaming Blog A Waste Of Time - Is It So?

Hello folks!.. Today i have jumped in with a very exciting discussion about “Is Running a Gaming Blog Really a Waste of Time". Have you wondered to launch a gaming blog where you can provide free games and software’s? Have you ever thought to earn with gaming niche blogs?. Well we will discuss about this very interesting and hot discussion. Running a gaming blog where you can provide free games and...
Read more »

Sunday, December 25, 2016

Samsung Note clone m706-mb-v3.2 Android 4.4.2 kitkat Firmware

Brand : alpsProdName  : m72_emmc_s6_pcb22_ddr1ProdModel : M706Device    : m72_emmc_s6_pcb22_ddr1AndroidVer: 4.4.2MTKxCPU   : MT6572MTKxPRJ   : ALPS.JB3.MP.V1.12Download RomPassword: ''jhunpanabo''  Download FlasherFlashing of any smart Phones or Feature Phone is not always safe. Kindly read our disclaimer, before proceeding or else you can getting any...
Read more »

Saturday, December 24, 2016

C# Program to Print different Shapes | Triangle | half triangle

C# Program to Print different ShapesProgram Statement:Write a program using for loop which prints the following output on the screen.************************************Solution: static void Main(string[] args) { for (int i = 0; i <= 10; i=i+2) { for (int j = 0; j <= i; j++) { Console.Write("*"); } Console.WriteLine(); } Console.ReadLine(); ...
Read more »

C# Program to Print shapes diamond | half diamond

C# Program to Print shapesProgram Statement:Write a program using for loop which prints the following output on the screen.****************Solution: static void Main(string[] args) { for (int i = 0; i <= 3; i++) { for (int j = 0; j <= i; j++) { Console.Write("*"); } Console.WriteLine(); } for (int i = 3; i >0; i--) ...
Read more »

C# Program to check entered value is character, integer or special symbol

C# Program to check entered value is character, integer or special symbolProgram Statement:Write a program which takes one value from user and check whether the entered value is character, integer or special symbol.Solution: static void Main(string[] args) { char value; int a; Console.WriteLine("Enter value to check Character, integer or special symbols "); value = Convert.ToChar(Console.ReadLine()); a=(int)value; ...
Read more »

C# Program to check number is prime or composite

C# Program to check entered number is prime or composite Program Statement:Write a program that takes an integer as an input from user and prints if it is a prime or composite number.Solution: static void Main(string[] args) { int num, i; Console.WriteLine("Enter the number to check number is prime or composite"); num=Convert.ToInt32(Console.ReadLine()); i = 2; while (i <= num - 1) { ...
Read more »

C# Program to Print Fibonacci series

C# Program to Print Fibonacci seriesProgram Statement:Write a program which prints the Fibonacci series using loop.1 1 2 3 5 8 13 21 34 …Solution: public class _fib { int f = 0, s = 1, n, fib = 0; public void _show() { Console.WriteLine("\n\t\tPrint fibonacci series 0 1 1 2 3 5 8 13 ...\n\n"); Console.Write("\n\t\tEnter range of terms of fibonacci series : "); n = Convert.ToInt32(Console.ReadLine()); Console.Write("\n\t\tFirst...
Read more »

C# Program to Print ASCII Values Using do-while Loop

C# Program to Print ASCII Values Using do-while LoopProgram Statement:Write a program to print all the ASCII values and their equivalent characters using a do-while loop. The ASCII values vary from 10 to 255.Solution: static void Main(string[] args) { int i = 0; Console.WriteLine("ASCII character"); do { Console.WriteLine(i+" "+(char)i); i++; } while (i <= 255); ...
Read more »

C# Program to count total characters entered by users

C# Program to Print Entering Characters from users and then Count Total entering characters Program Statement:Write a program which takes characters from user until user press ENTER and then program will show the number of words with length greater than or equal to 5.Solution:public class length { int count1 = 0, count2 = 0; public void check() { Console.Write("\n\t\tEnter string : "); string ch = Console.ReadLine(); for (int x = 0;...
Read more »

Professional C# 2008

Professional C# 2008 If we were to describe the C# language and its associated environment, the .NET Framework, as the most important new technology for developers for many years, we would not be exaggerating. .NET is designed to provide a new environment within which you can develop almost any application to run on Windows, whereas C# is a new programming language that has been designed specifically...
Read more »

How to get Whatsapp free for 10 years.

How to get Whats app free for 10 years.As we Know that over 20 million people registered on whats app and the growth is increasing day by day with the passage of time.Whats app is one of the most popular messenger in the world because of its key features and reliability. But the main problem is that how to get whats app premium for free.So here is the trick for you to get free...
Read more »

Friday, December 23, 2016

How to root Lenovo A269i android

Tools needed Volcano Box, a third party tools you can check out there site HERE. how to root your Lenovo A269i, you can follow the arrow red picture below. or you can check the help manual on software tab area.(note) after root is done phone rebooting on lenovo welcome logo. just removed the battery and put it again and turn your phone. with the root is do...
Read more »

Thursday, December 22, 2016

Uninformed Searching Algorithms in Artificial Intelligence || how to apply Uninformed Searching Algorithms

Uninformed Searching Algorithms in Artificial IntelligenceSearching:Man has ability to find things and best solutions for satisfying own desires but one thing which we never realized and that is our searching power to find anything which is most useful and helpful for us. Whenever we face any problem we do search for best solution. As when we search we got lot of options to solve our problems but...
Read more »