Skip to main content

Posts

Showing posts from August 22, 2018

SIMPLE PYTHON HTTP SERVER

SIMPLE PYTHON HTTP SERVER In many use cases, we come across the situation where we need a simple server to test some command or test some applications. But creating a server programmatically is a time taking process. To solve the problem Python has created SimpleHTTPServer module. In this post, we will learn how to create a simple HTTP server in a single command on Ubuntu.  Create SimpleHTTPServe Using Commandline  python -m SimpleHTTPServer 8001 Above command will create a simple HTTP server for you at port 8001 Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Joint Entrance Exam: JEE Main 2019

JEE-MAIN I & JEE-MAIN II National Testing Agency (NTA) has released the notification for the JEE- Main I, JEE- Main II. This year JEE-Main will the first time conducted by national testing agency(NTA), earlier JEE-Main were conducted by the central board of secondary education. National Testing Agency (NTA) will conduct JEE-Main twice in a year called JEE-Main I and JEE-Main II, this provides flexibility to aspirants to learn from a mistake and perform better. This year JEE-Mains I-2019 is scheduled between 06-to-20th January 2019, the exam will be computer-based only. JEE-MAIN-I SCHEDULE JEE Main Examination                    JEE Main I Mode of Examination                       Computer-Based   Registration Dates                           1st to 30th Septem...

MENSURATION: SQUARE

MENSURATION: SQUARE In mathematics, a square represents a closed geometrical shape which has four equal sides and four right angles, the right angle means 90 degrees. Properties of Square l is the side length the square d is the diagonal of the square All internal angle is 90 degree All side are equal I mportant Formula for Square Area Of Square (A) Area(A) = Side(l) X Side(l) Example: Calculate the area of a square whose side is 4cm Given : Side(l) = 4cm Formula:            Area(A) = Side(l) X Side(l)            Area(A) = 4cm X 4cm           Area(A) = 16 cm^2 Area of given square is 16 cm^2 Perimeter of Square(P) Perimeter(P) = 4 x Side(l) Example: Calculate the perimeter of a square whose side is 4cm Given : Side(l) = 4cm Formula:             Perimeter(P) = 4 x Side(l)            ...