Monday, December 5, 2016

How to root the cloudfone excite 350g and update custom cwm plus roms

How to root the cloudfone excite 350g and update custom cwm plus roms
Tools You Needed:
ROOTED PHONE
MOBILE UNCLE TOOLS
CWM RECOVERY
CLOUDFONE EXCITE 350g CUSTOM ROM
STEPS and PROCEDURE:
CLOUDFONE EXCITE 350g (USB) Cable
Software Unlockroot: Download HERE
STEP 1. Plug (usb) cable to connect your phone to PC
On the phone select Settings> Developer Options then enable USB        DEBBUGING.
STEP 2. Run-Unlockroot software after installation and wait for confirmation of detected devices.Select your device.
Click Root and wait 3 seconds, then confirm the root Cloudfone excite 350g
A notification will appear ask if you want to install Power Saver not, installation is also not installed okay, I select No.
Once rooting is done.Reboot your phone to finish the job, Choose Yes.
Wait 1-2 minutes and then the phone will restart and finish the root.
Check-in icon menu if Superuser appeared on your mobile, that mean your cloudfone excite 350g is rooted

Download Again this Tools Below: for cwm plus roms
Mobile uncle tools
Kem 350 CWM
KEM 350 MIUI ROM
KEM350 V16.2
Update 10-8-13
C17 rom 
JB9 rom
Now copy or move KEM350 CWM recovery.img and as well as custom rom to sdcard.
Step 1. Installing CWM recovery
Install mobile uncle tools
After installing app
Click open
Hit the get started button
Select flashing recovery from  sd card and
Select KEM350 CWM recovery.img and click ok
Boot into recovery and done!
Now you have CWM recovery installed
Step2. Flashing custom roms
Turn off your phone
Hold power button+volume up to enter the recovery mode.
Note:
search / power button is select button
Volume up and down is scroll
menu and back is also scroll
back button is back

Now you have entered the recovery, First you must wipe data/factory reset, Then wipe cache partition.done
Choose apply update from sdcard
Then locate the rom you want to install(.zip file extn name)
Select Yes
After flashing rom select reboot system now.
Note:
Default language is vietnamesse but you can change in systemsettings-language and input.use english as default.
Read more »

Sunday, December 4, 2016

C# Simple Loop Program example to print characters

Simple Loop Problem to Print A B D H P

Problem Statement:
Write a program using for loop which prints the following output. (You have to find a pattern to print alphabetics in this order)
A B D H P

Solution:

static void Main(string[] args)
{
int i,j,ch=0,n;
Console.Write("A ");
for (i = 1; i <= 4; i++)
{
n = 1;
for (j = 1; j <= i; j++)
{
n = n * 2;
ch = 64 + n;
}
Console.Write((char)ch + " ");
}

Console.ReadLine();
}


Read more »

Saturday, December 3, 2016

C# program to Check leap Year Using Conditional Statement

C# program to Check Year is leap or not Using Conditional Statement 

Program Statement: 
Write a program using conditional operators to determine whether a year entered through the keyboard is a leap year or not.

Solution:
static void Main(string[] args)
{
int year;
Console.WriteLine("Enter Year");
year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine( year % 4 == 0 ? "Entered year is leap" : "Not leap year");
Console.ReadLine();}


Read more »

Friday, December 2, 2016

Lenovo Yoga B8000-H 3G 10.0 Firmware

Lenovo Yoga  B8000-H 3G 10.0 tablet is an mtk chips cpu, to flash just open the sp flash tool and load the scatter file by ticking the scatter tab, and click download.on the tablet press volume down and insert usb cable (install driver if needed) download all files below.

Smart Phone Flash Tool
Firmware 4 b8000-h
Read more »

C# program to check Operators | Operators Program in C#

C# program to check entered value is arithmetic operator, logical operator, conditional operator, relational operator or something else

Program Statement:
Write a program using switch statement which takes one character value from user and check whether the entered value is arithmetic operator, logical operator, conditional operator, relational operator or something else.

Solution:

static void Main(string[] args)
{
char ch;
int a;
Console.WriteLine("Enter any Character:");
ch = Convert.ToChar(Console.ReadLine());
a=(int)ch;
switch (ch)
{
case '+':
case '-':
case '*':
case '/':
case '%':
Console.WriteLine("Entered Character is Arithmetic");
break;
case '&':
case '|':
case '!':
Console.WriteLine("Entered Character is Logical Operator");
break;
case '?':
case ':':
Console.WriteLine("Entered Character is Condational Operator");
break;
case '<':
case '>':
case '=':
Console.WriteLine("Entered Character is Relational Operator");
break;
default:
Console.WriteLine("Entered Character is something else not included i n list");
break;

}
Console.ReadLine();
}


Read more »