Posts

Showing posts from November, 2023

C# Programming

Image
 Dotnet Framework Topics : 01. Dotnet Environment 02. Console Application 03. What is programming 04. Compiler 05. Interpreter 06. types of compiler 07. C# statement 08. C# function 09. How to create function 10. How to access function 11. Function parameter 12. User input 13. How to create multiple parameter 14. Named parameter 15. Unnamed parameter 16. Local and global variable in function 17. Function Methodology 18. Container variable 19. How to return multiple value in function 20. How to create tuple 21. How to return multiple value using tuple 22. Default Argument 23. C# Mathematical Functions 24. C# Arrays 25. Types of Allocation 26. Array Property 27. Array Separator 28. Error Representation 29. How to Create Array in C# 30. How to Store data element in Array 31. Types of loop in Array 32. Array Initialization 33. Array Methods 34. Array Sorting Using sort() 35. For Each 36. Double Dimensional Array 37. C# Structure 38. How to access structure members 39. Types o...

CSS

  1.HTML - use to page only - html used to disconnnect architecture 2.JavaScript 3.CSS (Cascading style sheet) - css is use to create a sheet - all sheet is communicate multiple web pages (using cascading structure) - html attribute is use to equal operator ex height=100 - css attribute is use to : operator ex. height:100 - html is colletion of tags - css is collection of attribute - all type of numerical data represent using pixels types os CSS 1. Internal css 2. External css 3. Inline css 4. Cross css 1.Inline CSS - inline css is used to html tag with style attribute Division tag (<div>) - use to create architecture of website there are following attribute 1. id 2.style backgraund-color height width top left position - by default div is use to fixed position position = absolute(flexible) 2. Internal CSS - internal css is use to inside html page - extension of internal css is (.html) - structure of internal css <html> <head> <style type = ...

JavaScript

Syllabus : 1. What is java script 2. Structure of JavaScript 3. JavaScript statements 4. JavaScript variable      - property      - terminology      - scope 5. Cascading 6. User Input 7. Program management 8. Switch Case 9. Looping     - Types of loop      - loop variable 10. JavaScript function      - how to create function      - types of function      - how to access function      - function approach      - how to access multiple functions      - function parameter      - types of parameter      - create multiple parameter      - local and global variables 11. JavaScript string handling functions  12. JavaScript objects 13. JavaScript Validation 1. JavaScript -javascript is use to inside the html -javascript is case sensetive language -scripting is use inside the head...

HTML Language

HTML Hyper text markup language hyper : hyper is representing next location ex. home, about text : text is collection of number character and symbols. ex. raj@123 markup : markup is a library it contain defination of all tags.    (html cannot use compiler) Programming categories 1.code based programming : we workout based on code 2.form based programming : we workout on tools HTML Syntax(tags) <> : less than and greater than <b> <u> types of tag 1. Open tag - <> <b> 2. close tag - <> </> ex: <u> </u>     <i> </i> what is slash (/) -tag closing operator  HTML structure: <html> -- representing web browser <body> -- reperenting output location    All Tags </body> </html> how to create first html program 1. create your directories(folder) (without space) 2. development directories cannot use blank space 3. inner html : any types of message is called inner html wri...