Why To Choose Windows Phone 8.1

Posted by Tushar Bedekar
A Windows Phone(WP) is a mobile operating system developed by Microsoft for smartphones.Windows phone features a new user interface Derived from the Microsoft Developed "Modern" Design Language formally known as Metro.The First Version of Windows Mobile Phone was launched on October 2010 with windows 7 version.And then after Microsoft releases a continuous updates at a regular interval as windows 8 (Amber Black) and now the latest release is windows phone 8.1 which was delivered in the final form on 14th April 2014. and it is available to update to all the devices previously running windows phone 8 version.


Following are the more basic details about Windows phone 8:-



  • Developer :-Microsoft Corporation
  • operating System written mainly in  c and c++ so which makes the OS to work more faster and to take less memory.
  • platforms :-Qualcomm Snapdragon base on ARMv7 .
  • Kernal Type :- Monolithic        




1. Greater Start Screen personalisation:-

new_start_screen_personalisation_microsoft.jpgMicrosoft has come up with the new option in windows phone 8.1 and  has added 'Start background' feature that allows users to add an image to the tiles on the Start screen of the device.


The feature will add an image of the user's choice to multiple tiles on the Start screen. Earlier, the Live Tiles on the Start screen on Windows Phone 8 were limited to solid colours.


2. Cortana: Finally arrives to take on Apple's Siri and Google's Google Now

One of the highlight features of Windows Phone 8.1 is Cortana, which is Microsoft's voice-based virtual assistant. The Redmond giant's Cortana is based on a popular AI character in Microsoft's blockbuster video game franchise, Halo.
Cortana is powered by Bing and is similar to Apple's Siri or Google Now, completely replacing the search feature in WP8.1. 
Cortana can be launched by pressing the Live Tile placed on the Start screen or by pressing the Search button on the Windows Phone device. Belfiore said that Cortana can interact verbally or by typing, and stressed its ability to understand natural language voice commands. It can also interact with third party apps, though developers will have to build Cortana-compatibility into their apps.

3. Action Centre for notifications

windows_phone_8_1_action_centre.jpgMicrosoft has finally launched one of the most awaited features on Windows Phone platform,Similar to the android Phone of Google the Action Center. The Windows Phone 8.1 update brings the Action Centre to all Windows Phone-based devices which will show notifications for calls, messages, emails, apps and others. It will also offer quick settings access to Flight Mode, Bluetooth, Wi-Fi, and Rotation Lock options. Notably, the quick access options are customisable.
The Action Centre for Windows Phone 8.1 can be accessed by a simple drop down swipe gesture like seen in Android and iOS.


4. Word Flow Keyboard

Another big addition in the Windows Phone 8.1 has been the introduction of the Word Flow Keyboard, which is a Swype keyboard-like feature for Windows Phone users. The Word Flow Keyboard allows users to glide over the display and type words.
Microsoft claims that the Word Flow Keyboard is one of the 'most intuitive smartphone keyboards' and learns from users writing style. It Basically supports 16  different languages
skype_dialler_integration_windows_phone_8_1.jpg

5. Skype Integration

Microsoft has also upgraded the Skype integration in Windows Phone devices with its latest Windows Phone 8.1. Now, the new Skype app for Windows Phone 8.1 comes with dialler integration that allows a user to switch a regular call to a Skype video call with a click of a button. Further, Skype has also been designed to work with Cortana, as users can setup Skype calls via the new voice-based virtual assistant.


6. Upgraded imaging experience

Microsoft takes the Windows Phone photography experience to the next level with the revamped Camera Roll, which gives quick access to clicked images, image tweaking tools and sharing capabilities.
The Smart Shots, Cinemagraphs, and Refocus photos options are directly accessible now from Camera Roll. Microsoft has also added the burst mode features to its Windows Phone 8.1 for clicking continuous images.
Creative Studio has been also added to the Camera Roll, which can use five new filters. 


7. New Sense feature for Windows Phone users

Microsoft has introduced the new Sense apps that include Data Sense, Wi-Fi Sense and Storage Sense.
sense_apps_windows_phone_8_1.jpg
Data Sense gives a detailed track of data usage on a Windows Phone, which could be braked down according to time- a month, a week etc. Data Sense includes a 'high savings' mode that the company claims will compress the images browsed on the Web, so a user can search more without with less data usage.
Another Sense app is Wi-Fi Sense, which automatically connects to a nearby Wi-Fi hotspot (when detected) to conserve cellular data.
Notably, when Wi-Fi is turned off in Wi-Fi Sense; Cortana can automatically turn it on, when a favourite location with hotspot is available.
Storage Sense can help users manage content stored on the microSD card and inbuilt storage by moving apps, music, images and videos between inbuilt storage and microSD card.
In addition, Microsoft has also improved its Battery Sense feature, giving a breakdown of apps' battery consumption, and also includes an 'automatic mode' in the Battery Saver option that can help extend battery life.


8. Slew of new delights

new_lockscreen_windows_phone8_1.jpg
Microsoft has also introduced the new Lock Screen, which now comes with multiple Lock Screen themes featuring different visuals and animations - APIs are also available for developers to create their own themes and widgets.
The Calendar app has received a redesign and now shows a week view, along with a weather widget which has been integrated into the Calendar app. It will show at the top.
Various apps such as Music, Video and Podcasts have also been improve .
The Internet Explorer 11 for Windows Phone 8.1 was also introduced. The new IE11 comes with new features such as InPrivate browsing, password caching, and a super-handy reading mode.
Read More

Tic-Tac Toe Game using C Programming

Posted by Tushar Bedekar

/* A simple Tic Tac Toe game. */

#include <stdio.h>
#include <stdlib.h>

char matrix[3][3];                   /* the tic tac toe matrix */       
char check(void);
void init_matrix(void);
void get_player_move(void);
void get_computer_move(void);
void disp_matrix(void);
int main(void)
{
char done;
printf("This is the game of Tic Tac Toe.\n");
printf("You will be playing  against the computer.\n");
done = ' ';
init_matrix();
do{
disp_matrix();
get_player_move();
done = check();                                                               /* see if winner */
if(done!= ' ') break;                                                       /* winner!*/
get_computer_move();
done = check();                                      /* see if winner */
} while(done== ' ');
if(done=='X') printf("You won!\n");
else printf("I won!!!!\n");
disp_matrix();                                          /* show final positions */
return 0;
}

/* Initialize the matrix. */

void init_matrix(void)
{
int i, j;
for(i=0; i<3; i++)
for(j=0; j<3; j++) matrix[i][j] = ' ';
}

/* Get a player's move. */

void get_player_move(void)
{
int x, y;
printf("Enter X,Y coordinates for your move: ");
scanf("%d%*c%d", &x, &y);
x--; y--;
if(matrix[x][y]!= ' '){
printf("Invalid move, try again.\n");
get_player_move();
}
else matrix[x][y] = 'X';
}

/* Get a move from the computer. */

void get_computer_move(void)
{
int i, j;
for(i=0; i<3; i++){
for(j=0; j<3; j++)
if(matrix[i][j]==' ') break;
if(matrix[i][j]==' ') break;
}
if(i*j==9) {
printf("draw\n");
exit(0);
}
else
matrix[i][j] = 'O';
}

/* Display the matrix on the screen. */

void disp_matrix(void)
{
int t;
for(t=0; t<3; t++) {
printf(" %c | %c | %c ",matrix[t][0],
matrix[t][1], matrix [t][2]);
if(t!=2) printf("\n---|---|---\n");
}
printf("\n");
}

/* See if there is a winner. */

char check(void)
{
int i;
for(i=0; i<3; i++)                                                    /* check rows */
if(matrix[i][0]==matrix[i][1] &&
matrix[i][0]==matrix[i][2]) return matrix[i][0];
for(i=0; i<3; i++)                                                   /* check columns */
if(matrix[0][i]==matrix[1][i] && matrix[0][i]==matrix[2][i])
    return matrix[0][i];
/* test diagonals */
if(matrix[0][0]==matrix[1][1] &&
matrix[1][1]==matrix[2][2])
return matrix[0][0];
if(matrix[0][2]==matrix[1][1] &&
matrix[1][1]==matrix[2][0])
return matrix[0][2];
return ' ';
}


Download Game:-

                                                           


Read More

Best Antivirus Apps for Android Free Download

Posted by Tushar Bedekar

Antivirus Security – FREE (AVG) Antivirus App

AVG is the best android anti virus. Because Apart from combating viruses and malware, it also provides anti-theft and privacy protection. It has a very efficient virus scan and virus detection engine that will flag viruses as they try to get into your device. Its web surfing protection feature will guarantee your online security. Its trial period is only limited to 14-days. This antivirus software app apk can be download from official website.

Tushar

                                                                                                                      

Avast Mobile Security Antivirus App

Avast is an amazing security application with a good review that transcends beyond the basic anti-malware protection and offers among others an app manger, call and SMS filtering, a firewall and a network traffic monitor and . Apparently its anti-theft and firewall’s most advanced features require your device to be rooted. The App is compatible with all Android mobile phones and Tablet.


Tushar
                                                           


360 Security- Antivirus App

It has a great design with sleek, simple user friendly interface. What makes this app stand out is its capability to automatically patch your device’s firmware vulnerabilities when it detects them. Its downside is that it does not have anti-theft feature even though this is a common feature in most apps. The app can be downloaded from Google play store.

                                                            
                                               Download 360 Security Antivirus App

Dr.Web v.7 Antivirus Light

It is very efficient in detecting malware, it scored above 90% in the AV-Test procedure. Dr. Web scans data as you try to save it in your device to ensure maximum security. Its user interface however does a very poor job in matching its malware detecting process.






Warning :-The Content Provided here in are for the  Educational Purpose only and not to advertise any kind of products.The Given list of the antivirus are as per the author point of view, it may differ from person to person.  
                     The Author is not responsible for any kind of damage to the devices by the use of these software/apps.So the user must use these product on there own risk only after reading a full features details from the Google play Store.    
Read More
back to top