Python coaching class
12
Dec
Is java Pure Object Oriented Language? tccicomputercoaching.com
Definition “PURE OBJECT ORIENTED PROGRAMMING LANGUAGE” means language which SUPPORTS or HAVE features which treats everything inside program as objects, For any language to be pure OO everything should exist as objects but in JAVA we have eight primitive data types such as int, byte, char etc which are not objects . How we can decide any programming […]
01
Dec
Python Loops-tccicomputercoaching.com
Python programming language provides following types of loops to handle looping requirements. Sr.No. Loop Type & Description 1 while loop Repeats a statement or group of statements while a given condition is TRUE. It tests the condition before executing the loop body. 2 for loop Executes a sequence of statements multiple times and abbreviates the code that manages […]