Posts

Python Vs Java

    Python vs Java: Key Differences Python and Java are two very different programming languages, but both can be useful tools for modern developers. If you are thinking about learning to program for the first time, then you might find Python easier to master. Python’s syntax is designed to be intuitive and its relative simplicity allows newbies to quickly start writing code for a variety of applications. While Java has a steeper learning curve, it is extremely useful for developing applications that will run on any platform. Dynamic vs Static Typing One of the biggest differences between Python and Java is the way that each language handles variables. Java forces you to define the type of a variable when you first declare it and will not allow you to change the type later in the program. This is known as static typing. In contrast, Python uses dynamic typing, which allows you to change the type of a variable, by replacing an integer with a string, for example. Dyna...

Difference between CSS,HTML and PHP

Image
What’s The Difference Between CSS, HTML and PHP? Maybe you’re beginning to build a simple website, or just want a better understanding of the many acronyms you’ve been hearing lately. “ CSS “,  “HTML”  and  “PHP”  are thrown around so often and with such ease, you’re embarrassed to ask what they mean. Following is my attempt to explain these terms (mainly to myself) in plain English. The Difference Between CSS, HTML and PHP CSS = Style:  Cascading Style Sheets  (CSS) dictate your website’s look and feel. Font size, font color, font type, styling around images, page layout, mouse-over effects and more are all determined by CSS. In WordPress, CSS can be edited within the  “Editor”  section under Appearance in the Dashboard. Some WordPress themes, like  Headway , allow you to  visually edit the CSS  (meaning you don’t need to get eyeball headaches from coding). The colors, fonts and styles of this entire website ...

History of JALLIKATTU

Image
Jallikattu: What is the History, Significance & Meaning of Tamil Nadu’s Eruthazhuvuthal or Bull Taming Pongal event? Jallikattu is traditionally played on the third day of Pongal. The name Jallikattu has two components, Jalli also known as ‘salli’ or ‘kasu’, which translates into coins, and Kattu which means bundle or pouch. Jallikattu, also known as Eruthazhuvuthal is all set for a grand return on Sunday, January 22 with an ordinance passed in favour of Tamil Nadu’s traditional bull-taming sport. But the protesters in Madurai refuse to stop agitation and demand permanent solution for Jallikattu and are adamant on not letting the event happen till permanent solution is found.  Jallikattu or Eruthazhuvuthal has been the topic of debate for quite some time now as the history of traditional Bull Taming Pongal event dates back to Tamil Classic Period (400-100 BC). Tamil Nadu Chief Minister  O Panneerselvam  much to the joy of state people said Jallikattu would t...

Definition of Web Design

Image
Web Design Web design is the process of creating  websites . It encompasses several different aspects, including  webpage  layout, content production, and graphic design. While the terms web design and  web development  are often used interchangeably, web design is technically a subset of the broader category of web development. Websites are created using a  markup language  called  HTML . Web designers build webpages using HTML  tags  that define the content and  metadata  of each page. The layout and appearance of the elements within a webpage are typically defined using  CSS , or cascading style sheets. Therefore, most websites include a combination of HTML and CSS that defines how each page will appear in a  browser . Some web designers prefer to hand code pages (typing HTML and CSS from scratch), while others use a " WYSIWYG " editor like Adobe Dreamweaver. This type of editor provides a visual interfac...

Different types sweing machine

Image
Different Types Of Sewing machines: Best Sewing.                           Machine Explained In Detail There are types Of Sewing Machines according to the place of use like in which place you are using it or it is intended to use. Such as Industry and home. You can choose from here which will be the best sewing machine for you for industrial uses. Sewing machines also being used in industries as well as home. So according to this, it is of two types- Industrial Sewing Machine Home or Domestic Sewing Machine Industrial Sewing Machines Industrial machines are intended for factory use. Some machines are designed to make shirts cuffs and some are are designed to put the waistband in jeans. These machines are built specifically to do long term and professional tasks. Their constructions are made up of highly durable parts and motors. The gears, housing, connecting rods and body of the industrial sewing mac...

History of Indian currency notes

Image
        A Brief History Of India In 15 Currency Notes The British Empire In the 19th century, the British introduced paper money into the subcontinent. The Paper Currency Act of 1861  gave the Government the monopoly of note issue throughout the vast expanse of British India, which was a considerable task. Eventually, the management of paper currency was entrusted to the Mint Masters, the Accountant Generals and the Controller of Currency. A series carrying the portrait of  George V  were introduced in 1923, and was continued as an integral feature of all paper money issues of British India. These notes were issued in denominations of Rs 1, 2½, 5, 10, 50, 100, 1,000, 10,000. The Reserve Bank of India was formally inaugurated on Monday, April 1, 1935, with its Central Office in Calcutta. Section 22 of the RBI Act, 1934, empowered it to continue issuing Government of India notes until its own notes were ready for issue. The bank issued the...

Types error occur in C Programming Language

                              Different Types Of Errors In C Errors  are  mistake  that we programmer often commit.  Errors  also called as  bugs causes the program to either run unexpectedly ( shows unexpected result ) or prevent the execution of a program. As programmer we are prone to make mistakes. So we should keep in mind the following different types of  errors  in c which we might commit : TYPES OF ERRORS Syntax Errors Semantic Errors Logical Errors Linker Errors Runtime Errors SYNTAX ERROR IN C Back To Types of Errors Syntax Errors  are basically compiler  errors or  compile-time  errors which occurs when we do not follow the grammar of the programming language.  It is detected when you compile the program by the compiler. Syntax Errors occurs :   Due to missing semicolon (  ' ; ' ). It is us...