Thursday 31 October 2013

C++ Program To Print ASCII value of Digits,Uppercase and Lowercase Alphabetes

#include<conio.h>
#include<iostream.h>
#include<dos.h>
#include<process.h>

void main()
{
clrscr();
char ch,a[]={"Hello world This is me"};
int j=0;

cout<<"Uppercase Alphabetes\n\n";
for(int i=65;i<91;++i)
{
j++;
ch=i;
cout<<ch<<":"<<i<<"\t";
if(j==10)
{
cout<<"\n";
j=0;
}
}
j=0;

cout<<"\n\n\nLowercase Alphabetes\n\n";
for(i=97;i<123;++i)
{
j++;
ch=i;
cout<<ch<<":"<<i<<"\t";
if(j==10)
{
cout<<"\n";
j=0;
}
}

cout<<"\n\n\nDigits\n\n";
for(i=48;i<58;i++)
{
ch=i;
cout<<ch<<":"<<i<<"\t";
}

cout<<"\n\n\n\n\t\t";
for(i=0;a[i]!='\0';++i)
{
cout<<a[i];
sleep(1);
}
exit(0);
}

-------------------------------------------------------------------------------------------

C++ Program to find Compound Interest.

#include<iostream.h>
#include<conio.h>
#include<math.h>
void main()
{
float p,r,t,ci;
clrscr();

cout<<"Enter Principle,Rate and Time ";
cin>>p>>r>>t;
ci=pow(p*(1+r/100),t);

cout<<"\n"<<"Compound Interest = "<<ci<<"%";
getch();
}

--------------------------------------------------------------------------------------------------------------------------

Wednesday 30 October 2013

Lenovo's new curvy tablet - Hold,Tilt ,Stand

LOS ANGELES: Chinese computer maker LENOVO presented a new tablet device including a bracket-cum-handle allowing it to tilt and stand, which it billed as a "game-changing" innovation.
Hollywood actor Ashton Kutcher unveiled the Yoga Tablet at a Los Angeles event which had been shrouded in mystery, with teaser videos and social media hints tagged .

SPECIFICATIONS :-
The device,

> Has 18 hours of battery life.
> Has three modes: hold, tilt and stand.

 A cylindrical hinge on one side can either be held, or opened to produce a stand, similar to the kick-stand on Microsoft's Surface tablet.
"Watching and discovering that people frequently use tablets in three main ways allowed us to break the mold on the current 'sea of sameness' designs," said Lenovo senior vice president Liu Jun, calling it "game-changing."
Teaser videos ahead of the event had included some suggesting that it could somehow be attached to furniture or household appliances, but the product appeared less radical.
The device comes in :- 8 and 10 inch models. 

Price:-at $249 and $299 respectively. An optional blue tooth keyboard is available for the larger model, which serves as a cover.

It enters a hugely crowded tablet market still dominated by Apples iPad, but with rivals including notably South Korea's Samsung vying to attract customers in the run-up the all important US holiday gift-buying season.

---------------------------------------------------------------------------------------------------------

Tuesday 29 October 2013

C++ Program check whether a number is palindrome or not.

#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
unsigned long n,num,d,rev=0;
cout<<"Enter any number: ";
cin>>n;
num=n;
do
{
d=n%10;
rev=(rev*10)+d;
n=n/10;
}while(n!=0);
if(num==rev)
cout<<endl<<"Number is Palindrome";
else
cout<<endl<<"Number is not Palindrome";
getch();
}
----------------------------------------------------------------------

C++ Program to print table of any number

#include<iostream.h>
#include<conio.h>

void main()
{
clrscr();
int i,n;
cout<<"Enter Number to Find Its Multiplication Table :";
cin>>n;
cout<<"\n\n";

for(i=1;i<=10;++i)
cout<<"\t"<<n<<"*"<<i<<"="<<n*i<<"\n";
getch();
}


 If u want more programs or any help contact me on Facebook , i will be happy if i could help u...  

Click on the name below :-
***** Nilov Manna *****

TIC - TAC -TOE GAME in C++

OUTPUT SNAPSHOT :-

#include<iostream.h>
#include<conio.h>
#include<dos.h>
#include<process.h>


char mat[3][3];
void table(void);            //function to print the table
void welcome(void);     //function for welcome screen

void main()
{
 welcome();
     A: clrscr();
 int i,j,m,n,sum=0;
 char ch;

 for(m=0;m<3;++m)
  for(n=0;n<3;++n)
   mat[m][n]='\0';
 table();

 while(sum<10)
 {
 //for player 1
 cout<<"Player 1 is'x'\nChoose the position:";
 cout<<"\nRow:";
 cin>>i;
 cout<<"Coloumn:";
 cin>>j;

//if position is wrong
 for(;i>3||i<1||j>3||j<1||('x'==mat[i-1][j-1]||'o'==mat[i-1][j-1]);)
 {
    cout<<"\nSorry!!!! wrong position,Choose the position again";
    cout<<"\nRow:";
    cin>>i;
    cout<<"Coloumn:";
    cin>>j;
 }
 mat[i-1][j-1]='x';
 sum++;

 //to check if player 1 wins or not
 if(mat[0][0]=='x'&&mat[0][0]==mat[0][1]&&mat[0][0]==mat[0][2])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!" ;
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[1][0]=='x'&&mat[1][0]==mat[1][1]&&mat[1][0]==mat[1][2])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[2][0]=='x'&&mat[2][0]==mat[2][1]&&mat[2][0]==mat[2][2])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][0]=='x'&&mat[0][0]==mat[1][0]&&mat[0][0]==mat[2][0])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][1]=='x'&&mat[0][1]==mat[1][1]&&mat[0][1]==mat[2][1])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][2]=='x'&&mat[0][2]==mat[1][2]&&mat[0][2]==mat[2][2])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][0]=='x'&&mat[0][0]==mat[1][1]&&mat[0][0]==mat[2][2])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][2]=='x'&&mat[0][2]==mat[1][1]&&mat[0][0]==mat[2][0])
 {
  table();
  cout<<"\nPlayer 1 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(sum==9) //to check the chances
 {
  table();
  cout<<"\n\tThe game is over.......no one wins...HaHaHa.....!!!";
  break;
 }
 //for player 2
 cout<<"\n\nPlayer 2 is'o'\nChoose the position:";
 cout<<"\nRow:";
 cin>>i;
 cout<<"Coloumn:";
 cin>>j;

 //if position is wrong
 for(;i>3||i<1||j>3||j<1||('x'==mat[i-1][j-1]||'o'==mat[i-1][j-1]);)
 {
    cout<<"\nSorry!!!! wrong position,Choose the position again";
    cout<<"\nRow:";
    cin>>i;
    cout<<"Coloumn:";
    cin>>j;
 }
 mat[i-1][j-1]='o';
 sum++;
 table();

 //to check player 2 wins or not
 if(mat[0][0]=='o'&&mat[0][0]==mat[0][1]&&mat[0][0]==mat[0][2])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[1][0]=='o'&&mat[1][0]==mat[1][1]&&mat[1][0]==mat[1][2])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[2][0]=='o'&&mat[2][0]==mat[2][1]&&mat[2][0]==mat[2][2])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][0]=='o'&&mat[0][0]==mat[1][0]&&mat[0][0]==mat[2][0])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][1]=='o'&&mat[0][1]==mat[1][1]&&mat[0][1]==mat[2][1])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][2]=='o'&&mat[0][2]==mat[1][2]&&mat[0][2]==mat[2][2])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][0]=='o'&&mat[0][0]==mat[1][1]&&mat[0][0]==mat[2][2])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }

 if(mat[0][2]=='o'&&mat[0][2]==mat[1][1]&&mat[0][0]==mat[2][0])
 {
  cout<<"\nPlayer 2 wins.......!!!";
  cout<<"\nYou have played Great.....!!!";
  sleep(5);
  break;
 }
 }
 cout<<"\n\n\tWould you like to play more....?(y/n):";
 cin>>ch;
 if(ch=='y'||ch=='Y')
  goto A;
 else
 {
  cout<<"\n\n\tThanks for Playing.......:)";
  sleep(5);
  exit(0);
 }
}

void table()
{
 clrscr();
 cout<<"\n\n\t\t  1  2  3\n";
 cout<<"\t\t1  "<<mat[0][0]<<"|"<<mat[0][1]<<"|"<<mat[0][2];
 cout<<"\n\t\t  --|-|--";
 cout<<"\n\t\t2  "<<mat[1][0]<<"|"<<mat[1][1]<<"|"<<mat[1][2];
 cout<<"\n\t\t  --|-|--";
 cout<<"\n\t\t3  "<<mat[2][0]<<"|"<<mat[2][1]<<"|"<<mat[2][2]<<"\n\n";
}

void welcome()
{
 textmode(C80);
 textcolor(YELLOW);
 clrscr();

 cout<<"\n\n\n\n\n\t\t\t\tWelcome To";
 sleep(2);
 cout<<"\n\n\t\t\t\tTic-Tac-Toe";
 sleep(1);
 cout<<"\n\n\t\t\t\t   Game";
 sleep(1);
 cout<<"\n\n\n\n\n\n\n\n\n\t\t\t\t\tPress any key to continue.....!!";
 getch();
}


 If u want more programs or any help contact me on Facebook , i will be happy if i could help u...  

Click on the name below :-
***** Nilov Manna *****

Friday 25 October 2013

China: Computer dealer offers electronics for sheep

An interesting piece about sheep for computers...

Residents of Kashgar in the Xinjiang Uygur autonomous region can leave their wallets at home when they want to shop for a smartphone or tablet computer.

Instead, they just need to take their sheep.


A smartphone can be had for a sheep, and a laptop costs four sheep, according to leaflets handed out by Huang Jie, a local computer dealer.

The 29-year-old decided to run a special promotion to give people a better idea of the value of his products and encourage them to use their sheep to buy his roducts.

Huang has been handing out leaflets in villages around the city during weekends to promote his idea.

"The demand for computers in the villages is very high. Some children even carve keyboards on their desks," he said.

"Many believe computers are very expensive, I want to show them that electronic products are actually quite affordable by comparing their values with their most familiar commodity — sheep.

"I often found people selling their sheep for less than market value because the villages are far from the city. But they can trade their sheep with me, and I help them sell the sheep at a fair price. I will return the money to them if it's more than the price of the product they purchased," Huang added.

Huang said, on June 2, that some people have shown an interest in trading sheep but he hasn't made a deal yet. Some villages still don't have Internet connections, which makes the sales of computers there difficult, he added. 

----------------------------------------------------------------------------------------------------------------------------------

Thursday 24 October 2013

Flashing Colored LED Light up SHOE LACES .


 DETAILS :-- 



  • The latest third generation product
  • LED light source + high transmission fiber, smooth effect more strong,(shoelace homogeneous soft luminous) effect is far superior to the plastic pipe material products, through the CE ROHS authentication, waterproof processing, etc
  • Suitable for the roller skatesdance shoes, basketball shoes ,football shoes, children shoes, casual shoes, sports shoes, suitable for outdoor sports, night running, large festival party, concert, promotion, encouragement and other activities
  • Fashion / Magic LED Flashing Shoelaces
  • Condition: brand new
  • This product is New/Unique style,Ultra bright and eye-catching, for they are the shoelaces can light up and flash!
  • Suitable for almost all shoes with shoelaces, such as board shoes, roller skates, sneakers,etc. Perfect for night wearing.
  •  


    SPECIFICATIONS :- 



  • LED backlit offers safe, thin, comfortable and non-intruding light
  • 3-mode flashing: Steady on, fast strobe, slow strobe
  • Convenient on / off switch
  • Perfect for parties and evening / night events
  • Flashing or intermittent discharge is 60-80 hours, 2-3 months of normal use, the battery can be replaced
  • Powered by 1 x CR2032 battery (Battery included)
  • Net Weight: 40g
  • Shoelaces Length: 80cm/ 31.4 inch
  • Light source: LED
  • Shoelace material: Glass fiber
  • Control box material: plastic


  • Tuesday 22 October 2013

    ipad AIR and Retina ipad mini - New launches by APPLE .. - Description,Price,Specifiation

    Apple on Tuesday launched latest models of its popular tablet computers callediPad air and the new iPad mini with Retina display.


    The new Apple tablet is called iPad Air and is thinner and lighter than its predecessors iPad 4 and the mini. It looks just like the first generation iPad mini and is 25% thinner at 7.5mm thickness and has 43% smaller bezels. Apple claims it is the thinnest full-sized tablet in the world.


    iPad Air has the same 64-bit A7 chip and the M7 motion co-processor that was introduced with the iPhone 5S. It has the same 9.7-inch Retina screen and can open files twice as fast as the iPad 4. The new model will be available at $499 for the 16GB Wi-Fi model and $629 Wi-Fi and 4G variant. It will hit the market on November 1 and will come in Space Grey and Silver colours.

    Apple also unveiled the iPad mini with Retina display, bringing the much-admired screen to the smaller tablet. The Retina iPad mini has twice the screen resolution than the first model at 2048x1536p in the same 7.9-inch display. It also runs on the 64-bit A7 chipset, a huge upgrade over the A5 chip used in the previous version. It will launch in November and come in Silver and Space Grey colours.


    The Retina iPad mini will cost $399 for the 16GB Wi-Fi model and $529 for 16GB Wi-Fi and 4G variant. The company will also retain the iPad mini that was launched last year, reducing its starting price from $329 to $299. Apple also showcased two covers for the iPad Air and Retina iPad mini at $69 and $79, respectively.




    Everything you love about iPad—the beautiful screen, fast and fluid performance, FaceTime and iSight cameras, thousands of amazing apps, 10-hour battery life—is everything you’ll love about iPad Mini, too. And you can hold it in one hand.
    16 GB iPad Mini with Wi-Fi$329
    32 GB iPad Mini with Wi-Fi$429
    64 GB iPad Mini with Wi-Fi$529
    16 GB iPad Mini with Wi-Fi + 4G$459
    32 GB iPad Mini with Wi-Fi + 4G$559
    64 GB iPad Mini with Wi-Fi + 4G*$659

    ------------------------------------------------------------------------------------------------------------

    SERVER - Brief description

    SERVER

    >The web page is stored in server.

    >Each time the client request arrives , the corresponding document is send to the client.

    >To improve efficiency servers normally store files in cache in memory ;memory is faster to access than disk.

    >A server can also become more efficient through multithreading  or multiprocessing.In this case , a server can answer to  more than one request at  a time.

    CLIENT (Browser)

    CLIENT (Browser)
    A variety of vendors offer commercial browsers that interpret and display a web document , and all use nearly the same architecture.

    Each browser usually consists of three parts :-
    1.Controller
    2.Client protocol
    3.Interpreters

    CONTROLLER :- The controller receives input from the keyboard or the mouse and uses the client programs to

    access the documents.After the document have been accessed the controller uses one of the interpreters to display the

    document on the screen.

    CLIENT PROTOCOL :- The client protocol can be one of the protocol like FTP and HTTP.

    INTERPRETERS :- The interpreter can be HTML,Java or Javascript, depending on the type of document.

    NOKIA LUMIA 2520 - Nokia's first ever tablet .DESCRIPTION ,FEATURES , PRICE

    Nokia Lumia Series spacing on the success of today's Nokia World in Abu Dhabu launched six new products, which is the special name Lumia tablets in 2520. In addition to the six-inch screen phone Nokia Lumia 1520 sees a fair share of that, this phone features were leaked two days ago.Today we're telling you these new products feature of Nokia, to whom they compete in market prices.



    Nokia Lumia 2520 - New entry in the tablet 
    Price: $ 499 (Rs 30 thousand) in India when: First U.S., the UK and Finland, later in other countries.
    Colors: Red, White, Black, Light Cerulean



     Features :-

    - Windows-Based operating system 
    -10 inch full HD screen made ​​of Gorilla Glass 2 
    - 6.7 megapixel camera, 2 megapixel front camera 
    - 2.2 GHz Snapdragon 800 Kwalkom Kwahd core processor 
    - 2 GB RAM, 32 GB internal memory, Micro SD card support up to 32 GB, Skaidraiv cloud storage
     - 4G LTE - enabled, Microsoft Office 
    - 8,000 mAh battery, two USB ports 
    - Nokia Applications include storyteller and video director
     - with the Nokia Power keyboards. The keyboard has a touchpad Extra battery that can last up to five hours continuously.
    - quick charging capability, in one hour will be charged 80 per cent was expected upgrade, will hope 501 502, 503 


    Friday 18 October 2013

    100+ Keyboard Shortcuts for MICROSOFT WINDOWS ...

    Keyboard Shortcuts (Microsoft Windows)


    1. CTRL+C (Copy)
    2. CTRL+X (Cut)
     3. CTRL+V (Paste)
    4. CTRL+Z (Undo)
    5. DELETE (Delete)
    6. SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
    7. CTRL while dragging an item (Copy the selected item)
    8. CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
    9. F2 key (Rename the selected item)
    10. CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
    11. CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
    12. CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
    13. CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
    14. CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
    SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
    15. CTRL+A (Select all)
    16. F3 key (Search for a file or a folder)
    17. ALT+ENTER (View the properties for the selected item)
    18. ALT+F4 (Close the active item, or quit the active program)
    19. ALT+ENTER (Display the properties of the selected object)
    20. ALT+SPACEBAR (Open the shortcut menu for the active window)
    21. CTRL+F4 (Close the active document in programs that enable you to have multiple documents opensimultaneously)
    22. ALT+TAB (Switch between the open items)
    23. ALT+ESC (Cycle through items in the order that they had been opened)
    24. F6 key (Cycle through the screen elements in a window or on the desktop)
    25. F4 key (Display the Address bar list in My Computer or Windows Explorer)
    26. SHIFT+F10 (Display the shortcut menu for the selected item)
    27. ALT+SPACEBAR (Display the System menu for the active window)
    28. CTRL+ESC (Display the Start menu)
    29. ALT+Underlined letter in a menu name (Display the corresponding menu) Underlined letter in a command name on an open menu (Perform the corresponding command)
    30. F10 key (Activate the menu bar in the active program)
    31. RIGHT ARROW (Open the next menu to the right, or open a submenu)
    32. LEFT ARROW (Open the next menu to the left, or close a submenu)
    33. F5 key (Update the active window)
    34. BACKSPACE (View the folder onelevel up in My Computer or Windows Explorer)
    35. ESC (Cancel the current task)
    36. SHIFT when you insert a CD-ROMinto the CD-ROM drive (Prevent the CD-ROM from automatically playing)
    Dialog Box - Keyboard Shortcuts
    1. CTRL+TAB (Move forward through the tabs)
    2. CTRL+SHIFT+TAB (Move backward through the tabs)
    3. TAB (Move forward through the options)
    4. SHIFT+TAB (Move backward through the options)
    5. ALT+Underlined letter (Perform the corresponding command or select the corresponding option)
    6. ENTER (Perform the command for the active option or button)
    7. SPACEBAR (Select or clear the check box if the active option is a check box)
    8. Arrow keys (Select a button if the active option is a group of option buttons)
    9. F1 key (Display Help)
    10. F4 key (Display the items in the active list)
    11. BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)

    Microsoft Natural Keyboard Shortcuts
    1. Windows Logo (Display or hide the Start menu)
    2. Windows Logo+BREAK (Display the System Properties dialog box)
    3. Windows Logo+D (Display the desktop)
    4. Windows Logo+M (Minimize all of the windows)
    5. Windows Logo+SHIFT+M (Restorethe minimized windows)
    6. Windows Logo+E (Open My Computer)
    7. Windows Logo+F (Search for a file or a folder)
    8. CTRL+Windows Logo+F (Search for computers)
    9. Windows Logo+F1 (Display Windows Help)
    10. Windows Logo+ L (Lock the keyboard)
    11. Windows Logo+R (Open the Run dialog box)
    12. Windows Logo+U (Open Utility Manager)
    13. Accessibility Keyboard Shortcuts
    14. Right SHIFT for eight seconds (Switch FilterKeys either on or off)
    15. Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)
    16. Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)
    17. SHIFT five times (Switch the StickyKeys either on or off)
    18. NUM LOCK for five seconds (Switch the ToggleKeys either on or off)
    19. Windows Logo +U (Open Utility Manager)
    20. Windows Explorer Keyboard Shortcuts
    21. END (Display the bottom of the active window)
    22. HOME (Display the top of the active window)
    23. NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)
    24. NUM LOCK+Plus sign (+) (Display the contents of the selected folder)
    25. NUM LOCK+Minus sign (-) (Collapse the selected folder)
    26. LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)
    27. RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)
    Shortcut Keys for Character Map
    After you double-click a character on the grid of characters, you can move through the grid by using the keyboard shortcuts:
    1. RIGHT ARROW (Move to the rightor to the beginning of the next line)
    2. LEFT ARROW (Move to the left orto the end of the previous line)
    3. UP ARROW (Move up one row)
    4. DOWN ARROW (Move down one row)
    5. PAGE UP (Move up one screen at a time)
    6. PAGE DOWN (Move down one screen at a time)
    7. HOME (Move to the beginning of the line)
    8. END (Move to the end of the line)
    9. CTRL+HOME (Move to the first character)
    10. CTRL+END (Move to the last character)
    11. SPACEBAR (Switch between Enlarged and Normal mode when a character is selected)
    Microsoft Management Console (MMC)
    Main Window Keyboard Shortcuts
    1. CTRL+O (Open a saved console)
    2. CTRL+N (Open a new console)
    3. CTRL+S (Save the open console)
    4. CTRL+M (Add or remove a console item)
    5. CTRL+W (Open a new window)
    6. F5 key (Update the content of all console windows)
    7. ALT+SPACEBAR (Display the MMC window menu)
    8. ALT+F4 (Close the console)
    9. ALT+A (Display the Action menu)
    10. ALT+V (Display the View menu)
    11. ALT+F (Display the File menu)
    12. ALT+O (Display the Favorites menu)

    MMC Console Window Keyboard Shortcuts
    1. CTRL+P (Print the current page or active pane)
    2. ALT+Minus sign (-) (Display the window menu for the active console window)
    3. SHIFT+F10 (Display the Action shortcut menu for the selected item)
    4. F1 key (Open the Help topic, if any, for the selected item)
    5. F5 key (Update the content of all console windows)
    6. CTRL+F10 (Maximize the active console window)
    7. CTRL+F5 (Restore the active console window)
    8. ALT+ENTER (Display the Properties dialog box, if any, for theselected item)
    9. F2 key (Rename the selected item)
    10. CTRL+F4 (Close the active console window. When a console has only one console window, this shortcut closes the console)
    Remote Desktop Connection Navigation
    1. CTRL+ALT+END (Open the Microsoft Windows NT Security dialog box)
    2. ALT+PAGE UP (Switch between programs from left to right)
    3. ALT+PAGE DOWN (Switch between programs from right to left)
    4. ALT+INSERT (Cycle through the programs in most recently used order)
    5. ALT+HOME (Display the Start menu)
    6. CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)
    7. ALT+DELETE (Display the Windows menu)
    8. CTRL+ALT+Minus sign (-) (Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)
    9. CTRL+ALT+Plus sign (+) (Place asnapshot of the entire client window area on the Terminal server clipboardand provide the same functionality aspressing ALT+PRINT SCREEN on a local computer.)

    Microsoft Internet Explorer Keyboard Shortcuts
    1. CTRL+B (Open the Organize Favorites dialog box)
    2. CTRL+E (Open the Search bar)
    3. CTRL+F (Start the Find utility)
    4. CTRL+H (Open the History bar)
    5. CTRL+I (Open the Favorites bar)
    6. CTRL+L (Open the Open dialog box)
    7. CTRL+N (Start another instance of the browser with the same Web address)
    8. CTRL+O (Open the Open dialog box,the same as CTRL+L)
    9. CTRL+P (Open the Print dialog box)
    10. CTRL+R (Update the current Web page)
    11. CTRL+W (Close the current window)

    Wednesday 9 October 2013

    Samsung launches Galaxy Round, world's first smartphone with curved display .. !!

    Samsung Electronics Co Ltd on Wednesday launched the world's first smartphone with a curved display, a variant of the Galaxy Note which moves the Asian giant a step closer to achieving wearable devices with flexible - even unbreakable - screens. 
    Curved displays are on the frontlines
     of Samsung's innovation war with rivals such as Apple Inc and LG Electronics Inc, as the South Korean firm seeks to expand its lead in the slowing market for high-end smartphones.
    "It's a step forward for having unbreakable gadgets and flexible devices eventually. But for now, the new phone is more of a symbolic product," said Hana Daetoo Securities analyst Nam Dae-jong, adding that Samsung did not yet have capacity for large-scale production of curved touch-screens for the new Galaxy Round.
    The Galaxy Round is Samsung's attempt to gauge consumer appetite for curved phones although its lack of other eye-catching features means it is unlikely to be a hit, he said.
    "I don't think it'll be massively compelling enough for gadget buyers as ... the curved display doesn't come with many unique features," he said.
    http://www.hindustantimes.com/Images/Popup/2013/10/Samsung_1.jpg
    The Galaxy Round's 5.7-inch (14.4-centimetre) display has a slight horizontal curve and weighs less than the Galaxy Note 3, allowing a more comfortable grip than other flat-screen models on the market, Samsung said in a statement.
    Its key features include a tilt function which allows users to check information such as missed calls and battery life, even when the home screen is off. Users can also scroll through media files by pressing the screen's right or left, the company said.
    The phone initially would be available only in South Korea and no decision had been made about releasing it in other markets.
    Design challenges
    Curved displays open up possibilities for bendable designs that could eventually transform the high-end smartphone market, where growth has slowed amid competition from low-end producers.
    Samsung's Galaxy Gear smartwatch released last month has a flat screen, but the company is hoping to have the technology to make more attractive and wearable devices in what is shaping as a key battleground for consumer electronics companies.

    Technology firms have yet to figure out how to cheaply mass produce the parts and come up with display panels that can be thin and heat-resistant. Batteries also have to take new forms to support flexible screens that can be rolled out, attached to uneven surfaces or even stretched. The battery in the Galaxy Round is not curved, Samsung said.
    Samsung's new curved-screen phone, available through South Korea's biggest mobile carrier SK Telecom Co Ltd, costs 1.089 million won.