Posts

Aligarh Muslim University admission forms for session 2021-22

Image
  Examination forms for admission to various courses for the session 2021-22 has been released by Aligarh Muslim University. Get details regarding Class XI , UG ( B. Sc. / B. A. / B. Com . / B. Tech / B.A.LL.B. ) and PG ( M.B.A. / M.C.A. / B. Ed. / M.A. Mass Communication / M.S.W ) form details, important dates, exam pattern and test center. Visit https://www.amucontrollerexams.com for filling online admission forms.   B. Sc. (Hons.) Entrance Form Opening Date - 11.06.2021 Form Closing Date - 08.07.2021 (15.07.2021 with late fee) B. Sc. (Hons.) courses are as follows: B.Sc. (Hons.) Home Science B.Sc. (Hons.) Biochemistry / Botany / Zoology B.Sc. (Hons.) Physics / Chemistry / Mathematics / Geography / Geology / Statistics / Industrial Chemistry / Computer Applications Entrance test pattern: Section I English : 25 Marks Section Il Chemistry : 25 Marks Section Ill Physics : 25 Marks Section IV Math

Leran Python with KnowledgeCubs.com

Image
  Module 1 Introduction Installation and Executing Python Codes     Module 2 Identifier, Reserved Words and Data Types   Data Types: Integer Data Types: Float, Complex, Boolean, Strings Types Casting Data Types: continued   Module 3 Operators Input and Output statements   Module 4 Flow Control Working with Strings   Working with List Working with tuple  

How to access localhost from anywhere on Internet

Image
  To access localhost from anywhere on Internet we will use ngrok. ngrok is a reverse proxy that creates a secure tunnel from a public endpoint to a locally running web service. Ngrok is used for Temporarily sharing a website that is only running on your development machine   How to download use ngrok? Follow these steps to download and use ngrok. 1.Go to https://ngrok.com/ Click on sigup link.   Enter your name, email and password to complete the registration process. After successful registration you can see ngrok dashboard like below. Continue Reading.... Learn Python

Which programming language should you start with?

Image
It’s a very common question among students of varying background, from school goers to aspiring computer engineers. Where to start? Which language they should learn first? Which language is easiest and can be used for variety of applications? I will try to answer these questions in this blog with the help of some examples. When compared with other programming languages Python is easiest. Python reads like English and is simple to understand for someone who's new to programming. Now with the help of simple programs I am going to show why Python is easier than other programming language. Suppose you want to print 'Namaste'. How it can be done in Java, C and Python: 'Namaste' in Java class Namaste { public static void main ( String [] args ) { System . out . print ( "Namaste!" ) ; } } Go to the location where you saved the file. Compile the code with javac.   Then run the code with java.   Just to print a 'Namaste' you are required to

How to Create Telephone Directory in Python

Image
Telephone Directory is a Python application that keeps names and email addresses in a dictionary as key-value pairs. The program should display a menu that lets the user look up a person's email address, add a new name and email address, change an existing email address, and delete an existing name and email address. The program should pickle the dictionary and save it to a file when the user exits the program. Each time the program starts, it should retrieve the dictionary from the file and unpickle it. import pickle try : contact = pickle . load ( open ( "save.p" , "rb+" ) ) except IOError : contact = { } pass def pick ( ) : pickle . dump ( contact , open ( "save.p" , "wb" ) ) def store ( ) : global contact name = input ( "Enter name:" ) phone = input ( "Enter Phone:" ) if name in contact : print ( "Contact Already exists !\n" ) else :               Continue Reading... Learn Py