Skip to main content

Posts

Showing posts from March, 2019

Windows shortcuts keys

Windows shortcuts keys Windows key  - open and close start menu Win + a  - open action counter Win + b - highlight the notification area Win + c - launch cortana into listening mode Win + d - switch between show desktop Win + e - launch file explorer Win + h - open the share charm  Win + i - open the settings app Win + k - open the connect pane to connect to wireless displays and audio devices Win + l - look the device and go to the lock screen Win + m - switch to the desktop and minimize all open windows Win + o - look device orientation Win + p - open project plane Win + r - display the run dialogue box Win + s - launch cortana , users can begin to type a query immediately Win + t - cycle through the apps on the taskbar Win + u - launch the ease of access center Win + v - cycles through the notifications Win + x - open the advanced menu in the lower left corner of the screen Win + z - open the app specific command bar Win + enter - l...

Hello world in all programming language | Behind Tech

Hello world 1. python print "Hello world" 2.C #include void main() {     printf("Hello world"); } 3.C++ # include > using namespace std; void main() { cout<<"Hello world"; } 4.JAVA class helloworld { public static void main (String args[ ]) { System.out.println("Hello world"); } } 5.C# using System; class helloworld  { public static void main (string args[ ]) { Console.Writeline("Hello world"); } } 6.R cat("Hello world") 7.Ruby puts "Hello world" 8.Swift println("Hello world") 9.Basic PRINT "Hello world" 10.Bash echo "Hello world" 11.Perl5 print "Hello world" 12.HTML Hello world