In this slide I described all control which is used by the Html Form Controls such as checkbox , radio , text , drop down list / select , file upload and html output controls.
CSS (Cascading Style Sheets) is used to style and lay out web pages. CSS describes how HTML elements should be displayed on screen, paper, or other media. CSS saves time by allowing consistent styling across multiple web pages from a single external CSS file. CSS rules contain selectors that point to HTML elements and declaration blocks with properties and values that define the styling. Common CSS properties include color, font-size, padding, borders, background, positioning and more. CSS rules can be applied via internal, inline and external stylesheets and the different styles cascade together following certain precedence rules.
JavaScript is the programming language of the web. It can dynamically manipulate HTML content by changing element properties like innerHTML. Functions allow JavaScript code to run in response to events like button clicks or timeouts. JavaScript uses objects and prototypes to define reusable behaviors and properties for objects. It is an important language for web developers to learn alongside HTML and CSS.
HTML forms allow users to enter data into a website. There are various form elements like text fields, textareas, dropdowns, radio buttons, checkboxes, and file uploads that collect different types of user input. The <form> tag is used to create a form, which includes form elements and a submit button. Forms submit data to a backend application using GET or POST methods.
This document provides an overview of HTML forms and their various elements. It discusses the <form> tag and its attributes like action and method. It then describes different form elements like text fields, password fields, radio buttons, checkboxes, textareas, select boxes, and button controls. It provides examples of how to create each of these elements in HTML and explains their purpose in collecting user input for processing on the server-side.
The document discusses various HTML form elements and their attributes. It describes the <form> element which defines an HTML form, and common form elements like <input>, <select>, <textarea> and <button>. It provides examples and explanations of different input types such as text, password, checkbox, radio and submit. It also covers attributes like name, value, readonly and disabled.
The Browser Object Model (BOM) in JavaScript includes the properties and methods for JavaScript to interact with the web browser.
BOM provides you with window object, for example, to show the width and height of the window. It also includes the window.screen object to show the width and height of the screen.
This document provides an overview of basic HTML structure and elements. It discusses what HTML is, how it uses markup tags to describe web page structure with elements like headings, paragraphs, and links. It also covers HTML syntax and documents, how to structure a basic HTML page with tags for the root, head, title, and body. The document demonstrates using block and inline elements and attributes to build out web pages. It provides examples of different text formatting tags and tags for things like quotes, lines, and comments.
Using this presentation you will learn dividing the browser window into different parts(frame). With frames, several Web pages can be displayed in the same browser window.
The presentation provides an introduction to the Document Object Model (DOM) and how it allows JavaScript to access and modify HTML documents. It discusses how the DOM presents an HTML document as a tree structure, and how JavaScript can then restructure the document by adding, removing, or changing elements. It also gives examples of how DOM properties and methods allow accessing and manipulating specific nodes, such as changing the background color of the document body.
This document discusses JavaScript data types including numbers, strings, Booleans, objects, undefined, and null. It notes that JavaScript is a dynamically typed language where variables do not need to be declared. The key data types are described, for example numbers can be integers or floats, strings are immutable sequences of characters, Booleans have two values of true or false, and objects store keyed collections of values that can be changed. The differences between null and undefined are presented as a question for an exercise.
Video links: Part 1 : http://www.youtube.com/watch?v=lWSV4JLLJ8E Part2 : http://www.youtube.com/watch?v=-MvSBqPlMdY
This document provides an overview of how to create forms in HTML. It discusses the main components of forms, including common form controls like text fields, checkboxes, radio buttons, selection menus, file uploads, and buttons. It explains how to set attributes like name, value, size for each form control. The document also covers how form data is passed via the GET and POST methods, and how hidden fields can be used to pass additional data without the user seeing it. The overall purpose is to teach the fundamentals of creating HTML forms for collecting user input.
This document summarizes various CSS text properties including color, font-weight and style, font-family, letter-spacing, text-align, text-decoration, text-transform, line-height, and word-spacing. It provides possible values and examples for setting each property to control text styling and formatting.
CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of HTML documents. CSS allows you to control the color, font, size, spacing, and other aspects of HTML elements. CSS properties like background, text, font, links, lists and box model can be used to format HTML elements. CSS rules have selectors that specify the element to which a declaration applies, and declarations that contain property-value pairs that define the presentation of the element.
There are 6 types of CSS selectors: simple, class, generic, ID, universal, and pseudo-class selectors. Simple selectors apply styles to single elements. Class selectors allow assigning different styles to the same element on different occurrences. ID selectors define special styles for specific elements. Generic selectors define styles that can be applied to any tag. Universal selectors apply styles to all elements on a page. Pseudo-class selectors give special effects like focus and hover.
- CSS3 is made up of modular components at different stages of development rather than a single specification. These include selectors, properties, and other modules.
- CSS selector capabilities were expanded in CSS3 with things like attribute selectors that select elements based on attributes, pseudo-classes for dynamic states like hover and active, and structural pseudo-classes for things like first-child.
- CSS4 is extending selector functionality further with things like the :matches pseudo-class to apply rules to groups of selectors, pseudo-classes for time-based states, and grid selector features. Support for CSS4 selectors is starting to appear in modern browsers.
The document discusses HTML tables and their structure and attributes. It explains that HTML tables allow arranging data into rows and columns using <table>, <tr>, and <td> tags. It then describes various table attributes like border, width, height, bgcolor, background, frame, align, valign, and rules that can customize a table's appearance and layout.
Tables are a useful tool for organizing data in HTML. They are made up of rows and columns, with <table>, <tr>, and <td> tags. Additional tags like <th>, <caption>, <thead>, <tbody>, and <tfoot> allow for structured table headings, titles, and division into different sections. Attributes specify table styling, sizing, cell merging, and more. Tables provide a flexible way to display various types of information on web pages.
CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML or XML. CSS saves lots of work as formatting elements only need to be applied to one CSS file rather than individually formatting every HTML page. CSS rules consist of selectors that point to the HTML element to style paired with a declaration block containing CSS properties and values to determine how that element will look. Common CSS properties include those to control text formatting, background effects, borders, lists, links and positioning.
JavaScript is a scripting language that can be inserted into HTML pages and used to program the behavior of web pages. It allows web pages to be dynamic and interactive. JavaScript code is placed between <script> and </script> tags and can manipulate HTML elements and write to the document. Variables, functions, conditional statements, and operators allow JavaScript code to run conditionally based on events or user input. JavaScript is case sensitive, uses semicolons, and has both local and global variables. Common data types include numbers, strings, arrays, and objects.
The document discusses the Document Object Model (DOM), which defines a standard for accessing and manipulating HTML, XML, and SVG documents. It defines the nodes that make up an HTML document as well as the relationships between the nodes. The DOM represents an HTML document as nodes and objects that can be manipulated programmatically. Key points covered include the DOM node tree structure, common node types like elements and attributes, and methods for accessing nodes like getElementById() and getElementsByTagName().
HTML allows images and tables to be inserted into web pages. Images are added using the <IMG> tag which specifies attributes like the image source URL, height, width, and alternative text. Tables organize data into rows and columns and use <TABLE>, <TR>, <TH>, and <TD> tags. Attributes control table properties such as borders, cell padding, alignment, column spans, and row spans. Captions can be added above or below tables using <CAPTION> tags.
Introduction to JavaScript course. The course was updated in 2014-15.
Will allow you to understand what is JavaScript, what's it history and how you can use it.
The set of slides "Introduction to jQuery" is a follow up - which would allow the reader to have a basic understanding across JavaScript and jQuery.
What is the DOM?
The DOM is a W3C (World Wide Web Consortium) standard.
The DOM defines a standard for accessing documents:
"The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document."
The W3C DOM standard is separated into 3 different parts:
Core DOM - standard model for all document types
XML DOM - standard model for XML documents
HTML DOM - standard model for HTML documents
The HTML DOM (Document Object Model)
When a web page is loaded, the browser creates a Document Object Model of the page.
The HTML DOM model is constructed as a tree of Objects.
With the HTML DOM, JavaScript can access and change all the elements of an HTML document.
The document discusses the three types of CSS - internal, external, and inline. Internal CSS is defined within the HTML document using <style> tags. External CSS is defined in a separate .css file and linked using <link> tags. Inline CSS is defined directly in HTML elements using the style attribute. IDs and classes are also discussed as ways to target elements with CSS selectors.
Presentation to WordPress Memphis meetup group on December 2, 2010, CSS Basics. By designer Irina McGuire.
http://www.irinamcguire.com
This document discusses the ListBox control in VB.Net, including its properties like AllowSelection, BorderStyle, ColumnWidth, and events like Click and SelectedIndexChanged. It lists methods for adding items like Add and Insert. The document is from Prof. Neeraj Bhargava and Kapil Chauhan of MDS University, Ajmer and is intended as an assignment to explain the methods and events of the ListBox with examples.
The document provides an introduction to basic HTML tags and concepts. It begins with an overview of HTML as a markup language and covers common tags such as headings, paragraphs, links, and images. It then discusses HTML page structure using tags like <html>, <head>, <body>, and the <DOCTYPE> declaration. The document also covers other important topics such as attributes, headings, comments, text formatting, links, tables, lists, forms, and basic page layouts using <div> tags. Throughout, it provides examples to illustrate each concept and refers the reader to external resources for more details.
The document discusses various HTML form elements and attributes. It describes common form controls like text fields, checkboxes, radio buttons, select boxes, buttons and file uploads. It explains how to create forms using the <form> tag and how to structure inputs using tags like <input>, <select>, <textarea> and <button>. The document also provides details on attributes for each form control that specify properties like name, value, type and more.
The document discusses various HTML form controls that can be used to collect user input data on a web page. It describes text input controls like single-line text, password, and multi-line text boxes. It also covers other controls like checkboxes, radio buttons, select boxes, file uploads, buttons, and hidden inputs. For each control, it provides the HTML tag used to create it (like <input>, <textarea>, <select>) along with attributes and examples.
The presentation provides an introduction to the Document Object Model (DOM) and how it allows JavaScript to access and modify HTML documents. It discusses how the DOM presents an HTML document as a tree structure, and how JavaScript can then restructure the document by adding, removing, or changing elements. It also gives examples of how DOM properties and methods allow accessing and manipulating specific nodes, such as changing the background color of the document body.
This document discusses JavaScript data types including numbers, strings, Booleans, objects, undefined, and null. It notes that JavaScript is a dynamically typed language where variables do not need to be declared. The key data types are described, for example numbers can be integers or floats, strings are immutable sequences of characters, Booleans have two values of true or false, and objects store keyed collections of values that can be changed. The differences between null and undefined are presented as a question for an exercise.
Video links: Part 1 : http://www.youtube.com/watch?v=lWSV4JLLJ8E Part2 : http://www.youtube.com/watch?v=-MvSBqPlMdY
This document provides an overview of how to create forms in HTML. It discusses the main components of forms, including common form controls like text fields, checkboxes, radio buttons, selection menus, file uploads, and buttons. It explains how to set attributes like name, value, size for each form control. The document also covers how form data is passed via the GET and POST methods, and how hidden fields can be used to pass additional data without the user seeing it. The overall purpose is to teach the fundamentals of creating HTML forms for collecting user input.
This document summarizes various CSS text properties including color, font-weight and style, font-family, letter-spacing, text-align, text-decoration, text-transform, line-height, and word-spacing. It provides possible values and examples for setting each property to control text styling and formatting.
CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of HTML documents. CSS allows you to control the color, font, size, spacing, and other aspects of HTML elements. CSS properties like background, text, font, links, lists and box model can be used to format HTML elements. CSS rules have selectors that specify the element to which a declaration applies, and declarations that contain property-value pairs that define the presentation of the element.
There are 6 types of CSS selectors: simple, class, generic, ID, universal, and pseudo-class selectors. Simple selectors apply styles to single elements. Class selectors allow assigning different styles to the same element on different occurrences. ID selectors define special styles for specific elements. Generic selectors define styles that can be applied to any tag. Universal selectors apply styles to all elements on a page. Pseudo-class selectors give special effects like focus and hover.
- CSS3 is made up of modular components at different stages of development rather than a single specification. These include selectors, properties, and other modules.
- CSS selector capabilities were expanded in CSS3 with things like attribute selectors that select elements based on attributes, pseudo-classes for dynamic states like hover and active, and structural pseudo-classes for things like first-child.
- CSS4 is extending selector functionality further with things like the :matches pseudo-class to apply rules to groups of selectors, pseudo-classes for time-based states, and grid selector features. Support for CSS4 selectors is starting to appear in modern browsers.
The document discusses HTML tables and their structure and attributes. It explains that HTML tables allow arranging data into rows and columns using <table>, <tr>, and <td> tags. It then describes various table attributes like border, width, height, bgcolor, background, frame, align, valign, and rules that can customize a table's appearance and layout.
Tables are a useful tool for organizing data in HTML. They are made up of rows and columns, with <table>, <tr>, and <td> tags. Additional tags like <th>, <caption>, <thead>, <tbody>, and <tfoot> allow for structured table headings, titles, and division into different sections. Attributes specify table styling, sizing, cell merging, and more. Tables provide a flexible way to display various types of information on web pages.
CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML or XML. CSS saves lots of work as formatting elements only need to be applied to one CSS file rather than individually formatting every HTML page. CSS rules consist of selectors that point to the HTML element to style paired with a declaration block containing CSS properties and values to determine how that element will look. Common CSS properties include those to control text formatting, background effects, borders, lists, links and positioning.
JavaScript is a scripting language that can be inserted into HTML pages and used to program the behavior of web pages. It allows web pages to be dynamic and interactive. JavaScript code is placed between <script> and </script> tags and can manipulate HTML elements and write to the document. Variables, functions, conditional statements, and operators allow JavaScript code to run conditionally based on events or user input. JavaScript is case sensitive, uses semicolons, and has both local and global variables. Common data types include numbers, strings, arrays, and objects.
The document discusses the Document Object Model (DOM), which defines a standard for accessing and manipulating HTML, XML, and SVG documents. It defines the nodes that make up an HTML document as well as the relationships between the nodes. The DOM represents an HTML document as nodes and objects that can be manipulated programmatically. Key points covered include the DOM node tree structure, common node types like elements and attributes, and methods for accessing nodes like getElementById() and getElementsByTagName().
HTML allows images and tables to be inserted into web pages. Images are added using the <IMG> tag which specifies attributes like the image source URL, height, width, and alternative text. Tables organize data into rows and columns and use <TABLE>, <TR>, <TH>, and <TD> tags. Attributes control table properties such as borders, cell padding, alignment, column spans, and row spans. Captions can be added above or below tables using <CAPTION> tags.
Introduction to JavaScript course. The course was updated in 2014-15.
Will allow you to understand what is JavaScript, what's it history and how you can use it.
The set of slides "Introduction to jQuery" is a follow up - which would allow the reader to have a basic understanding across JavaScript and jQuery.
What is the DOM?
The DOM is a W3C (World Wide Web Consortium) standard.
The DOM defines a standard for accessing documents:
"The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document."
The W3C DOM standard is separated into 3 different parts:
Core DOM - standard model for all document types
XML DOM - standard model for XML documents
HTML DOM - standard model for HTML documents
The HTML DOM (Document Object Model)
When a web page is loaded, the browser creates a Document Object Model of the page.
The HTML DOM model is constructed as a tree of Objects.
With the HTML DOM, JavaScript can access and change all the elements of an HTML document.
The document discusses the three types of CSS - internal, external, and inline. Internal CSS is defined within the HTML document using <style> tags. External CSS is defined in a separate .css file and linked using <link> tags. Inline CSS is defined directly in HTML elements using the style attribute. IDs and classes are also discussed as ways to target elements with CSS selectors.
Presentation to WordPress Memphis meetup group on December 2, 2010, CSS Basics. By designer Irina McGuire.
http://www.irinamcguire.com
This document discusses the ListBox control in VB.Net, including its properties like AllowSelection, BorderStyle, ColumnWidth, and events like Click and SelectedIndexChanged. It lists methods for adding items like Add and Insert. The document is from Prof. Neeraj Bhargava and Kapil Chauhan of MDS University, Ajmer and is intended as an assignment to explain the methods and events of the ListBox with examples.
The document provides an introduction to basic HTML tags and concepts. It begins with an overview of HTML as a markup language and covers common tags such as headings, paragraphs, links, and images. It then discusses HTML page structure using tags like <html>, <head>, <body>, and the <DOCTYPE> declaration. The document also covers other important topics such as attributes, headings, comments, text formatting, links, tables, lists, forms, and basic page layouts using <div> tags. Throughout, it provides examples to illustrate each concept and refers the reader to external resources for more details.
The document discusses various HTML form elements and attributes. It describes common form controls like text fields, checkboxes, radio buttons, select boxes, buttons and file uploads. It explains how to create forms using the <form> tag and how to structure inputs using tags like <input>, <select>, <textarea> and <button>. The document also provides details on attributes for each form control that specify properties like name, value, type and more.
The document discusses various HTML form controls that can be used to collect user input data on a web page. It describes text input controls like single-line text, password, and multi-line text boxes. It also covers other controls like checkboxes, radio buttons, select boxes, file uploads, buttons, and hidden inputs. For each control, it provides the HTML tag used to create it (like <input>, <textarea>, <select>) along with attributes and examples.
HTML forms allow users to enter data into a website. Form elements like text fields, checkboxes, and dropdown menus are used to collect user input. A <form> element defines a form and includes attributes like action and method. The action attribute specifies where the form data will be sent, and method defines how it will be sent (GET or POST). Common form controls include text inputs, buttons, checkboxes/radio buttons, dropdowns, file uploads, and hidden fields. Forms make use of various input field types like text, password, textarea, submit, reset, checkbox, radio, and file to collect different types of user data.
This document discusses HTML forms and form elements. It begins by explaining that forms allow websites to collect information from users rather than just display static content. It then covers the main HTML form tags like <form> and various form field elements like <input>, <textarea>, and <select>. It details the different attributes associated with these elements, such as name, type, value, and how they determine what data is collected and how it is passed to the server. Finally, it discusses concepts like GET vs POST methods, and how submitted form data is handled by server-side variables like $_GET, $_POST, and $_REQUEST in PHP.
The document discusses HTML forms and form elements. It provides objectives and descriptions of how to create forms using HTML tags like <form> and <input>. It explains various form elements including text fields, password fields, text areas, drop-down menus, checkboxes, radio buttons, and their attributes. The document provides examples of code for each form element.
Forms allow users to enter data into a website. They contain form elements like text fields, drop-down menus, and buttons. The <form> element defines a form, while <input>, <textarea>, <select>, and <button> elements create specific form controls. Forms submit data via GET or POST requests, and attributes like action, method, and target control submission. Common elements include single-line text, passwords, textareas, checkboxes, radio buttons, drop-downs, file uploads, hidden fields, and submit/reset buttons.
This document provides information about CSS forms including:
- Forms allow users to enter information and perform actions online like searching, registering on websites, shopping online, and signing up for newsletters.
- The <form> element defines a form and includes attributes like action and method. Action specifies the URL that receives the submitted form data and method can be get or post.
- Common form controls include text fields, checkboxes, radio buttons, submit buttons, textareas, password fields, and select boxes. Each has an <input> or <select> element that defines its type.
- When a user submits a form, the data is sent to the server specified in the action attribute.
HTML forms are used to collect data from users on websites. A form contains input elements like text fields, checkboxes, radio buttons, and dropdown menus to collect information. When submitted, the form sends the user data as a POST request to a backend application which then processes the data using server-side scripts like PHP, ASP, or CGI scripts. Common form elements include single-line and multi-line text inputs, checkboxes for multiple selections, radio buttons to select a single option among groups, and dropdown menus to choose from a list.
The document provides information about HTML forms and form elements. It defines a form as an area that can contain input elements like text fields, checkboxes, radio buttons, and select lists. The <form> tag is used to enclose these elements and submit the user-entered data to a server using either GET or POST methods. Common form input elements are described, including text, checkbox, radio, submit, reset, hidden, and select elements. Their attributes and usage are explained.
The document discusses HTML forms, input elements, and drop-down menus. It describes how forms are used to collect user input and pass data to servers. Common input elements include text fields, checkboxes, radio buttons, and submit buttons. Drop-down menus provide a compact way for users to select single or multiple options from a list, though not all options are visible at once without customization.
Forms are used to create graphical user interfaces on web pages to collect user input. A form contains elements like text fields, checkboxes, radio buttons and dropdown menus. JavaScript can be used to add interactivity to forms, such as validating user input before submitting. The <form> tag defines a form region and the action and method attributes specify where and how user input data is sent. Common form elements include text <input>, buttons, checkboxes, radio buttons and dropdown <select> menus. Hidden <input> fields allow including extra data without displaying it to the user.
Forms are used to create graphical user interfaces on web pages to collect user input. A form contains elements like text fields, checkboxes, radio buttons, and dropdown menus. When the user submits the form, the data from these elements is sent to the server. JavaScript can be used to add interactivity to forms, like validating user input before submitting.
Forms are used to collect data from users on a website. A form contains input elements like text fields, checkboxes, and select menus. When submitted, the form sends the user-entered data to a backend script for processing. Common form attributes include name, action, and method. Different input types like text, password, radio buttons, and file uploads are used to collect different data from users.
Forms are used in HTML to collect user input on web pages. The <form> tag defines a form area that contains form elements like text fields, checkboxes, radio buttons, and dropdown menus. When the user submits the form, the data from these elements is sent to the server. Common form elements include <input>, <textarea>, and <select>. The <input> tag defines different element types like text, checkbox, radio, submit, and hidden using the "type" attribute. Forms allow collecting user data to send to a server for processing.
Forms allow users to enter information and submit it to a server for processing. A form contains input elements like text fields, checkboxes, and menus that collect user data. When submitted, the form data is sent to a processing application on the server via GET or POST requests. The application then processes the information and returns a response to the user, such as a confirmation message. Accessible form design includes properly labeling each input field to help users understand the purpose, especially for users relying on screen readers.
This document provides an overview of HTML forms. It defines HTML forms as a way to create graphical user interfaces on web pages to collect user input. The <form> tag is used to define a form and includes attributes like action and method. Common form elements include text fields, checkboxes, radio buttons, dropdown menus, and buttons, which are typically defined using the <input> tag along with attributes like type, name and value. The document provides examples of how to code different types of form elements in HTML.
The document provides an overview of HTML forms, including:
- Forms allow users to enter information into a webpage which is then sent to a server.
- Forms contain elements like text fields, checkboxes, radio buttons, and dropdown menus to collect user input.
- JavaScript can be used to add interactivity to forms, like validating user input before submitting.
- The <form> tag defines a form and attributes like "action" and "method" control where submitted data is sent.
- Common form elements like text, buttons, checkboxes are defined using <input> tags while dropdowns use <select>.
TO UNDERSTAND about stdio.h in C.
TO LEARN ABOUT Math.h in C.
To learn about ctype.h in C.
To understand stdlib.h in c.
To learn about conio.h in c.
To learn about String.h in c.
TO LEARN ABOUT process.h in C.
TO UNDERSTAND about Structure in C.
TO LEARN ABOUT How to Declare Structure in C.
To learn about how to store Structure in Memory.
To understand copy of structure elements in c.
To understand about nested structure in C.
TO LEARN ABOUT how to use Array of structure in C.
To learn about Union in C.
TO UNDERSTAND about Preprocessor Directives IN C.
TO LEARN ABOUT #define.
TO LEARN ABOUT how to use macro with arguments.
To learn about file inclusion.
To learn about Conditional Compilation.
To learn about #pragma in C
TO LEARN ABOUT #if define and #ifndefine in C.
TO LEARN ABOUT #undef in C.
TO LEARN ABOUT # and ## in C Language.
This document discusses file handling in C programming. It covers objectives like understanding different file types, modes for opening files, functions for reading and writing files. Specific functions covered are fopen(), fprintf(), fscanf(), fgetc(), fputc(), fclose(), fseek(). It provides examples to open and read text files, write and read from binary files using functions like fwrite() and fread(). The last example shows storing and retrieving student record from a file using structure and file handling.
This document provides an introduction to bit fields, command line arguments, and enums in the C programming language. It defines bit fields as a data structure that allocates memory to structures and unions in bit form for efficient utilization. Command line arguments refer to arguments passed to the main function, with argc representing the number of arguments and argv being a pointer array to each argument. Enums are enumerated types that consist of integral constants and are used to provide meaningful names to constants to make code more understandable and maintainable. Examples of each concept are provided.
This document discusses pointers in the C programming language. It begins by listing the chapter objectives, which are to understand pointers, arrays and pointers, pointer arithmetic, dynamic memory allocation, pointers to arrays, arrays of pointers, pointers to functions, and arrays of pointers to functions. It then provides examples and explanations of pointers, pointer declarations, the relationship between arrays and pointers, pointer arithmetic, dynamic memory allocation functions like malloc(), calloc(), free(), and realloc(), pointers to arrays, arrays of pointers, pointers to functions, and arrays of pointers to functions.
To understand about Array in C.
To learn about declaration of array.
To learn about initialization of Array
To learn about Types of Array.
To learn about One Dimensional Array in C.
To learn about Two Dimensional Array in C.
To learn about Multi Dimensional Array (Three Dimension & Four dimension in C.
To understand about Storage Class in c.
To learn about why we use storage class.
To learn about automatic storage class.
To learn about Regular Storage class.
To learn about static storage class in C.
To learn about external storage class in C.
To understand about Function in C.
To learn about declaration of function.
To learn about types of function.
To learn about function prototype.
To learn about calling function and called function in C.
To learn about function arguments or parameter in C.
To learn about call by value and call by references.
To understand about recursion in C Language.
To understand about conditional statement.
To learn about if statement , if else , nested if else , if elseif else etc.
To learn about break and continue statement.
To use of switch statement in C.
To learn about Loop in C.
To learn about for loop in C.
To learn about while loop in C.
To learn about Do While in C (Entry and Exit control loop) in C.
To learn about goto statement.
To understand about Operator.
To learn about how many types of Operator.
To learn about Arithmetic Operator in C.
To use of Bitwise Operator in C.
To use of Relational Operator in C.
To learn about Logical Operator in C.
To learn about Assignment Operator in C.
To learn about Ternary Operator in C.
To learn about Unary & Binary Operator.
Describe about C Programming?
What is the Characteristics of C Language?
What is Constant? Explain types of Constant.
What is variable ? Types of Variable.
What is Identifier?
What is Keyword in C?
What is Tokens in C?
What is Software or System ?
How to develop a good Software or System ?
What attributes of designing a good Software or System ?
Which methodology should be to design a good Software or System ?
What is SDLC ?
How many phases available in SDLC ?
In this slide explaining mobile commerce and some consideration points related to Mobile Commerce like Ethical consideration , Technological , social consideration in E-Commerce.
In This slide explaining about E-Commerce applications which is used in E-Commerce. There are various applications or types available in E-Commerce. So that today there are lots of technologies or applications used in E-Commerce.
In this PPT contains Functional Dependency , Armstrong Inferences Rules and Data Normalization like 1NF,2NF and 3NF. Explain also full functional dependencies , multivalued dependency and Transitive Dependency.
Explain security issues and protection about unwanted threat in E-Commerce. Explain Security E-Commerce Environment. Security Threat in E-Commerce Environment.
The document discusses the key features of the entity-relationship (E-R) model. The E-R model allows users to describe data in terms of objects and relationships. It provides concepts like entities, attributes, and relationships that make it easy to model real-world data. Entities represent objects, attributes describe entity features, and relationships define connections between entities. The document also discusses different types of relationships and modeling techniques like generalization, specialization, and aggregation.
The document describes how to connect to a Microsoft Access database using data readers in Visual Studio .NET. It involves the following steps:
1. Create an Employee database in MS Access with a table containing employee fields.
2. Open Visual Studio .NET and add a connection to the Access database file.
3. Write code to perform CRUD (create, read, update, delete) operations on the employee table using OleDbConnection, OleDbCommand and OleDbDataReader objects.
The *nervous system of insects* is a complex network of nerve cells (neurons) and supporting cells that process and transmit information. Here's an overview:
Structure
1. *Brain*: The insect brain is a complex structure that processes sensory information, controls behavior, and integrates information.
2. *Ventral nerve cord*: A chain of ganglia (nerve clusters) that runs along the insect's body, controlling movement and sensory processing.
3. *Peripheral nervous system*: Nerves that connect the central nervous system to sensory organs and muscles.
Functions
1. *Sensory processing*: Insects can detect and respond to various stimuli, such as light, sound, touch, taste, and smell.
2. *Motor control*: The nervous system controls movement, including walking, flying, and feeding.
3. *Behavioral responThe *nervous system of insects* is a complex network of nerve cells (neurons) and supporting cells that process and transmit information. Here's an overview:
Structure
1. *Brain*: The insect brain is a complex structure that processes sensory information, controls behavior, and integrates information.
2. *Ventral nerve cord*: A chain of ganglia (nerve clusters) that runs along the insect's body, controlling movement and sensory processing.
3. *Peripheral nervous system*: Nerves that connect the central nervous system to sensory organs and muscles.
Functions
1. *Sensory processing*: Insects can detect and respond to various stimuli, such as light, sound, touch, taste, and smell.
2. *Motor control*: The nervous system controls movement, including walking, flying, and feeding.
3. *Behavioral responses*: Insects can exhibit complex behaviors, such as mating, foraging, and social interactions.
Characteristics
1. *Decentralized*: Insect nervous systems have some autonomy in different body parts.
2. *Specialized*: Different parts of the nervous system are specialized for specific functions.
3. *Efficient*: Insect nervous systems are highly efficient, allowing for rapid processing and response to stimuli.
The insect nervous system is a remarkable example of evolutionary adaptation, enabling insects to thrive in diverse environments.
The insect nervous system is a remarkable example of evolutionary adaptation, enabling insects to thrive
How to Subscribe Newsletter From Odoo 18 WebsiteCeline George
Newsletter is a powerful tool that effectively manage the email marketing . It allows us to send professional looking HTML formatted emails. Under the Mailing Lists in Email Marketing we can find all the Newsletter.
How to Set warnings for invoicing specific customers in odooCeline George
Odoo 16 offers a powerful platform for managing sales documents and invoicing efficiently. One of its standout features is the ability to set warnings and block messages for specific customers during the invoicing process.
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingCeline George
The Accounting module in Odoo 17 is a complete tool designed to manage all financial aspects of a business. Odoo offers a comprehensive set of tools for generating financial and tax reports, which are crucial for managing a company's finances and ensuring compliance with tax regulations.
*Metamorphosis* is a biological process where an animal undergoes a dramatic transformation from a juvenile or larval stage to a adult stage, often involving significant changes in form and structure. This process is commonly seen in insects, amphibians, and some other animals.
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetSritoma Majumder
Introduction
All the materials around us are made up of elements. These elements can be broadly divided into two major groups:
Metals
Non-Metals
Each group has its own unique physical and chemical properties. Let's understand them one by one.
Physical Properties
1. Appearance
Metals: Shiny (lustrous). Example: gold, silver, copper.
Non-metals: Dull appearance (except iodine, which is shiny).
2. Hardness
Metals: Generally hard. Example: iron.
Non-metals: Usually soft (except diamond, a form of carbon, which is very hard).
3. State
Metals: Mostly solids at room temperature (except mercury, which is a liquid).
Non-metals: Can be solids, liquids, or gases. Example: oxygen (gas), bromine (liquid), sulphur (solid).
4. Malleability
Metals: Can be hammered into thin sheets (malleable).
Non-metals: Not malleable. They break when hammered (brittle).
5. Ductility
Metals: Can be drawn into wires (ductile).
Non-metals: Not ductile.
6. Conductivity
Metals: Good conductors of heat and electricity.
Non-metals: Poor conductors (except graphite, which is a good conductor).
7. Sonorous Nature
Metals: Produce a ringing sound when struck.
Non-metals: Do not produce sound.
Chemical Properties
1. Reaction with Oxygen
Metals react with oxygen to form metal oxides.
These metal oxides are usually basic.
Non-metals react with oxygen to form non-metallic oxides.
These oxides are usually acidic.
2. Reaction with Water
Metals:
Some react vigorously (e.g., sodium).
Some react slowly (e.g., iron).
Some do not react at all (e.g., gold, silver).
Non-metals: Generally do not react with water.
3. Reaction with Acids
Metals react with acids to produce salt and hydrogen gas.
Non-metals: Do not react with acids.
4. Reaction with Bases
Some non-metals react with bases to form salts, but this is rare.
Metals generally do not react with bases directly (except amphoteric metals like aluminum and zinc).
Displacement Reaction
More reactive metals can displace less reactive metals from their salt solutions.
Uses of Metals
Iron: Making machines, tools, and buildings.
Aluminum: Used in aircraft, utensils.
Copper: Electrical wires.
Gold and Silver: Jewelry.
Zinc: Coating iron to prevent rusting (galvanization).
Uses of Non-Metals
Oxygen: Breathing.
Nitrogen: Fertilizers.
Chlorine: Water purification.
Carbon: Fuel (coal), steel-making (coke).
Iodine: Medicines.
Alloys
An alloy is a mixture of metals or a metal with a non-metal.
Alloys have improved properties like strength, resistance to rusting.
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...larencebapu132
This is short and accurate description of World war-1 (1914-18)
It can give you the perfect factual conceptual clarity on the great war
Regards Simanchala Sarab
Student of BABed(ITEP, Secondary stage)in History at Guru Nanak Dev University Amritsar Punjab 🙏🙏
How to manage Multiple Warehouses for multiple floors in odoo point of saleCeline George
The need for multiple warehouses and effective inventory management is crucial for companies aiming to optimize their operations, enhance customer satisfaction, and maintain a competitive edge.
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsesushreesangita003
what is pulse ?
Purpose
physiology and Regulation of pulse
Characteristics of pulse
factors affecting pulse
Sites of pulse
Alteration of pulse
for BSC Nursing 1st semester
for Gnm Nursing 1st year
Students .
vitalsign
A measles outbreak originating in West Texas has been linked to confirmed cases in New Mexico, with additional cases reported in Oklahoma and Kansas. The current case count is 795 from Texas, New Mexico, Oklahoma, and Kansas. 95 individuals have required hospitalization, and 3 deaths, 2 children in Texas and one adult in New Mexico. These fatalities mark the first measles-related deaths in the United States since 2015 and the first pediatric measles death since 2003.
The YSPH Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by faculty and graduate students at the Yale School of Public Health in response to the 2010 Haiti Earthquake. Each year, the VMOC Briefs are produced by students enrolled in Environmental Health Science Course 581 - Public Health Emergencies: Disaster Planning and Response. These briefs compile diverse information sources – including status reports, maps, news articles, and web content– into a single, easily digestible document that can be widely shared and used interactively. Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The “unlocked" format enables other responders to share, copy, and adapt seamlessly. The students learn by doing, quickly discovering how and where to find critical information and presenting it in an easily understood manner.
GDGLSPGCOER - Git and GitHub Workshop.pptxazeenhodekar
This presentation covers the fundamentals of Git and version control in a practical, beginner-friendly way. Learn key commands, the Git data model, commit workflows, and how to collaborate effectively using Git — all explained with visuals, examples, and relatable humor.
2. OBJECTIVES
To understand the concept of Form in HTML.
To understand about different controls in Form.
To understand about the different attributes of form in HTML.
To understand about the form tag which is used in HTML.
3. HTML Form
An HTML form is a section of a document containing normal
content, markup, special elements called controls (checkboxes,
radio buttons, menus, textarea ,text etc.), and labels on those
controls. Users generally "complete" a form by modifying its
controls (entering text, selecting menu items, etc.), before
submitting the form to an agent for processing (e.g., to a Web
server, to a mail server, etc.).
4. Attributes of Form
Form Attributes Description
action Backend script ready to process your passed data.
method Method to be used to upload data. The most frequently used are GET and POST methods.
target Specify the target window or form where the result of the script will be displayed. It takes values
like _blank, _self, _parent etc.
5. HTML Form Controls
There are different types of form controls that you can use to collect data using HTML form
−:
1. Text Input Controls
2. Submit Button/ Clickable Buttons Controls( image button)
3. Checkboxes Controls
4. Radio Box Controls
5. Drop-down list or select controls
6. Field set / Grouping Form Controls
7. HTML output Tag
8. File upload controls
9. Some Other Input Type attributes in Form
6. 1. Text Input Controls
Input text controls are used to collect User data as a free text. On the web page, it will form a
rectangle box where Users can input the data. There are different types of input text controls that
can be used in the HTML forms. There are three types of text input used on forms −
1. Single-line text input controls − This control is used for items that require only one line of
user input, such as search boxes or names. They are created using HTML <input> tag. This allows the
user to enter only a single line of data. A typical example of such input text controls is for entering
the name, search box, city, etc.
2. Password input controls − This is also a single-line text input but it masks the character as soon
as a user enters it. They are also created using HTMl <input> tag. As the name suggests this is typically
used for the password field. This works in the same way as the input text field but the text gets
masked for safety purposes.
3. Multi-line text input controls − This is used when the user is required to give details that may
be longer than a single sentence. Multi-line input controls are created using HTML <textarea> tag.
This input control type allows the user to enter data of multiple lines. Typical usage of such input
controls is for comments, addresses, description and so on.
7. Attributes of Text Input
Sr.No Attribute & It's Description
1type (Common for all controls)
Indicates the type of input control and for text input control it will be set to text.
2name (Common for all controls)
Used to give a name to the control which is sent to the server to be recognized and get the
value.
3value (Common for all controls)
This can be used to provide an initial value inside the control.
4size (Common for Text, Password and Text area)
Allows to specify the width of the text-input control in terms of characters.
5maxlength (Common for Text, Password and Text area)
Allows to specify the maximum number of characters a user can enter into the text box.
6rows (Use for Multiline Controls)
Indicates the number of rows of text area box.
7cols (Use for Multiline Controls)
Indicates the number of columns of text area box
11. 2. Button Input Controls
A submit button is used to send the form data to a web server. When submit button is clicked the form data is
sent to the file specified in the form's action attribute to process the submitted data. A reset button resets all
the forms control to default values.
Sr.No Type & It's Description
1submit
Form submit buttons usually send the form data to the script that was specified in the action attribute of the form tag.
2reset
The reset button type is used to reset the contents of the form to their original values. This means that each form field will change
back to the value it had when the form loaded – either null (empty), or the default value set with the value attribute.
3button
This creates a button that is used to trigger a client-side script when the user clicks that button.
4image
This creates a clickable button but we can use an image as background of the button. It is use some other attributes like:
src -: this attributes used to set an image on button.
width -: set the width of image.
height -: set the height of image.
border -: set the border of image.
align -: set the alignment of image button.
hspace -: set hspace of image.
vspace -: set vspace of image.
13. 3. Check Box Controls
Sr.No Type & It's Description
1
checked
Set to checked if you want to select it by default.
A checkbox lets the User select whatever information is true in his case. It is a very convenient way of
accepting the data when the possible input is already known. For example, if you want to select your hobbies
so that checkbox is good input control to selection of your hobbies.Checkboxes are used when more than one
option is required to be selected.
14. Checkbox Example
<html>
<head>
<title>Hobbies</title>
</head>
<body>
<p> Select Your Hobbies-------::: </p>
<form>
<input type = "checkbox" name = "Hacking" value = "on" checked="checked"> Hacking <br>
<input type = "checkbox" name = "Music" value = "on"> Music <br>
<input type = "checkbox" name = "Reading" value = "on"> Reading <br>
<input type = "checkbox" name = "Writing" value = "on"> Writing <br>
<input type = "checkbox" name = "Fashion" value = "on"> Fashion <br>
<input type = "checkbox" name = "Ice Skating" value = "on"> Ice Skating <br>
<input type = "checkbox" name = "Graphic Design" value = "on"> Graphic Design <br>
<input type = "checkbox" name = "Bowling" value = "on"> Bowling <br>
</form>
</body>
</html>
15. 4. Radio Button Controls
Sr.No Type & It's Description
1
checked
Set to checked if you want to select it by default.
Radio buttons are used when you expect Users to fill data as a Boolean value or you expect only one input as
true out of multiple options. Some common use case of radio buttons is gender determination which is male or
female and employee type (Regular / Adhoc / Visiting) and so on. Radio buttons are used when out of many
options, just one option is required to be selected.
16. RadioButton Example
<html>
<head>
<title>Hobbie</title>
</head>
<body>
<form>
<p> Gender </p>
<input type = "radio" name = "gender" id="male"> male <br>
<input type = "radio" name = "gender" id="female"> female <br>
<p> Employee Type </p>
<input type = "radio" name = "type" value = "r1"> Regular <br>
<input type = "radio" name = "type" value = "ad"> Adhoc <br>
<input type = "radio" name = "type" value = "vi"> Visting <br>
</form>
</body>
</html>
17. 5. Drop Down List
A drop-down list (abbreviated drop-down; also known as a drop-down menu, drop menu, pull-down list, pick
list) is a graphical control element, similar to a list box, that allows the user to choose one value from a list.
When a drop-down list is inactive, it displays a single value.
Attribute Value Description
id Select id Defines which form the drop-down list belongs to
multiple multiple The HTML <select> multiple attribute is a Boolean Attribute. It specifies that the
user is allowed to select more than one value that presents in <select> element.
name name Defines a name for the drop-down list
required required Specifies that the user is required to select a value before submitting the form
number number Defines the number of visible options in a drop-down list
18. Drop Down List Example
<html>
<body>
<h1> Drop Down List Example </h1>
<p>Drop Down List is create a list</p>
<label for=“state">Select State:</label>
<select id=“state">
<option value=“UP">UP</option>
<option value=“MP">MP</option>
<option value=“Delhi">Delhi</option>
<option value=“Chhattisgarh"> Chhattisgarh </option>
</select>
</body>
</html>
19. 6. Field Set
The <fieldset> tag in HTML5 is used to make a group of related elements in the form and it creates the box
over the elements. The <fieldset> tag is new in HTML5. The HTML <fieldset> tag is found within the <form>
tag and is used to group related elements in an HTML form. Use a <legend> tag to create a caption for the
<fieldset>.This tag is also commonly referred to as the <fieldset> element.
Attribute Value Description
align left
right
center
top
bottom
Deprecated − Specifies the content alignment.
disabled disabled Specifies that a group of related form elements should be disabled.
form form_id Specifies forms which belongs to fieldset.
name text Specifies a name for fieldset.
20. Field Set
<html>
<head>
<title>Field Set Tag used as a group box or box</title>
</head>
<body>
<form>
<fieldset>
<legend>Employee Information</legend>
Employee id: <input type = "text" name="eid"><br>
Employee Name:<input type = "text" name="ename"><br>
Eage:<input type = "text" name = "eage"> <br>
Esite:<input type = "url" name = "esite">
</fieldset>
</form>
</body>
</html>
21. 7. HTML output Tag
The <output> tag is one of the HTML5 elements. It defines a place for representing the result of a
calculation performed by a script or user’s interaction with a form element (<form> tag). The <output> tag
is designed for complex calculations, new tag in HTML 5 and it requires a starting and end tag.
Attribute Description
for This attribute contains an attribute value element_id which is used to specify the relation between result
and calculations.
form This attribute contains an attribute value form_id which is used to specify the one or more forms of output
elements.
name This attribute contains an attribute value name which is used to specify the name of output element.
Oninput This attributes is used to store input value of form controls.
22. Output Tag:
<html>
<form
oninput="sum1.value=parseInt(t1.value)+parseInt(t2.value)+parseInt(t3.value)+parseInt(t4.value)+parseInt
(t5.value)">
<label for="Marks"> Enter Hindi Marks </label><br>
<input type="number" name="t1" value=""><br>
<label for="Marks"> Enter English Marks </label><br>
<input type="number" name="t2" value=""><br>
<label for="Marks"> Enter Chemistry Marks </label><br>
<input type="number" name="t3" value=""><br>
<label for="Marks"> Enter Physics Marks </label><br>
<input type="number" name="t4" value=""><br>
<label for="Marks"> Enter History Marks </label><br>
<input type="number" name="t5" value=""><br><br>
Sum of Five Subject Marks:<output name="sum1"></output> <br>
</form>
</html>
1. Input type Color
23. 8. File upload controls
The upload form is a very practical form to allow the users to send photos, documents or any other kind of
files to the server.To create an upload form we will only have to establish the file value to the <input
type=“file"> tag.
Attribute Description
Type Mention attributes type means it is file ,text,number etc.
25. 9. Some Other Input Type attributes in Form
Attribute Value Description
type hidden
number
text
radio
checkbox
Color
Date
Email
url
Button
File
Image
Password
Month
Range
Reset
Tel
Time
Week
A control that is not displayed but whose value is submitted to the server.
A control for entering a number.
A control for entering a text.
A control used for single selection at a time.
A control used for multiple selection at a time.
A control for entering a color
A control for entering a date.
A field for editing an email address.
A control for entering a url.
A control for used button.
A control that lets the user select a file.
A control for entering a image on button.
A single-line text field whose value is obscured. Will alert user if site is not secure.
A control for entering a month.
Displays as a range of given value.
A button that resets the contents of the form to default values. Not recommended.
A control for entering a telephone number.
A control for entering a time.
A control for entering a week.
26. <html>
<form>
enter week<input type="week" name="w"><br> <br> <br>
enter month<input type="month" name="m"> <br> <br> <br>
enter email<input type="email" name="e"> <br><br> <br>
enter color<input type="color" name="c"><br> <br> <br>
enter date<input type="date" name="d"> <br> <br> <br>
enter range<input type="range" name="r"> <br> <br> <br>
enter tel<input type="tel" name="t"> <br> <br> <br>
enter time<input type="time" name="t"> <br> <br> <br>
<label for="ename">Employee Name:</label> <br> <br> <br>
<input type="text" id="ename" name="e1"><br><br><br>
<input type="hidden" id="eid" name="eid" value="101"><br>
<input type="submit" value="Submit">
</form>
</html>