How to Create Disk Partition By: Eswar How to Create Disk Partition : Step 1: Right-click on my computer or This pc and select manage it opens a pop-up window as shown below Step 2: Select the Disk management from the following step 3: Select the drive to make a disk partition [If you are having a brand new computer it shows the only one drive]. In my case I selected "My Drive(E:)" to create a new partition. step 4: Right-click and select shrink volume and it takes a few seconds to shrink step 4: It opens a dialogue box in that you have to enter the volume that you want to shrink in Mb. make a note 1 Gb = 1024 #you can consider 1000Mb as 1 Gb For example, if you want to create a disk with 25 Gb then enter then calculate the value in Mb 25 x 1024 = 25600. The simplest way to calculate is to search on google Enter the value in Mb and click shrink step 5: Now you will be able to see the new disk with black colour at the top of the Disk. Now right click on the disk and
Posts
Showing posts from 2020
Reset Windows Password [Without any DATA LOSS]
- Get link
- X
- Other Apps
Reset Windows Password [Without any DATA LOSS] A Bootable Pendrive with the same os is required By: Eswar In some cases, we forget our system password or it may be changed by some useless commands in CMD/Comand prompt. Let us know how to reset it. There are some software to reset windows passwords but I will tell you how to reset the password without any software for free by using a bootable Pendrive. Here we go,. Step 1 : Connect Pendrive to the computer and turn it on. Step 2: As the computer turns on press F12/F2 continuously to get into Boot manager. Step 3: Then select USB HDD option. Step 4: As you select the USB HDD option it starts loading a window wait for few seconds. In older versions like windows xp, 7, vista shows as the image given below In older versions like windows 8 and earlier shows as the image given below Click Next to continue the process. step 5: Click repair now option which is at the left corner of of the window Step 6: Select the
Python [my code 😄😄😄]
- Get link
- X
- Other Apps
PYTHON k.Eswar krsihna This is my persnol blog Sourse: Coad With Harry link: https://www.codewithharry.com Click to visit Why do i choose python?? python is easy to use while compared to java,c,c++. P ython is a preferred high-level, server-side programming language for websites and mobile apps. Python is mainly used in Machine learning Web Development Data science Android app development My first Pyhon Program print ( "Hello World" ) Basics of Python-- a = 32 # int b = "Eswar" # string(it means text) c = 45.32 # flot d = 3.5 # flot print ( float (a + c)) # Shows decimal value also print ( int (a + d)) # it skips the decimal Rules for creating variables 1.variable should start with a letter or underscore 2.variable cannot start with a number 3.it can only contain alpha numeric charactors 4.Variable names are case sensitive. Eswar and eswar are two different variables Variables-- # variables a
Python projects
- Get link
- X
- Other Apps
My Python projects Project 1: Write a coad to add two numbers # 1. addition of two numbers-- print ( "Addition of two numbers" ) print ( "Enter first number" ) a = int ( input ()) print ( "Enter second number" ) b = int ( input ()) print ( "the sum the numbers is--" ) print (a+b) # addition of two numbers-- Result for the above code E:\languages\python codeing>python main1.py Addition of two numbers Enter first number 5 Enter second number 56 the sum the numbers is-- 61 Project 2: Create a diictonary and take input from user and return the meaning print ( "Dictionary" ) print ( "Enter the word to find in the Dictionary" ) d1 = { "WAN" : "Wide area network" , "LAN" : "Local area network" , "SAN" : "Storage area network" , "CAN" : "Campus area network" , "MAN" : "Metropolotic area network" "VPN" : &q