Coder Baba
Open in Telegram
Everything about programming for beginners. 1 and only official telegram channel of CODERBABA India. Content: .NET Developer, Programming (ASP. NET, VB. NET, C#, SQL Server), & Projects follow me https://linktr.ee/coderbaba *Programming *Coding *Note
Show more2 228
Subscribers
-124 hours
-147 days
-3630 days
Posts Archive
2 227
Project TRAINING ON β Online shopping Website in asp .net
,Industrial Training
Online Shopping Project ,CSE Project ,
Part-1
https://youtu.be/fu6xBX2u1fw
2 227
Top 15 reasons why you should learn C# in 2021 :
-------------------------------------------------------ββββ-
1. C# is simple, readable and easy to use
2. C# is all about developer productivity
3. C# is a multi-paradigm programming language
4. C# is a flexible general-purpose language
5. C# runs on a solid well-engineered .NET runtime
6. C# is cross-platform
7. C# is mature, popular and in very active development
8. C# is Open-Source and led by Microsoft
9. C# has an active and vibrant community
10. C# is a well-documented language
11. C# has built-in design patterns and best practices
12. C# can leverage an extensive collection of libraries
13. C# can run very fast
14. C# can run in the browser
15. C# developers are in high demand
βββββββββββββββββββββββββ
@ "C# skills are in demand and big and small organizations are using C# daily to develop their critical systems."
@ There is no shortage of C# developers jobs in the world and this means C# is a secure investment to your future career.
@ I hope this article helped you to better understand the role of C# in the software development industry and why it is such a loved and productive language.
@ C# is a well-designed language in high demand in top software companies around the world.
Subscribe:
www.youtube.com/coderbaba
2 227
*what is W3css: *
W3.CSS is a modern CSS framework with support for desktop, tablet, and mobile design by default.
W3.CSS is smaller and faster than similar CSS frameworks.
W3.CSS was designed to be a high-quality alternative to Bootstrap.
It was designed to be smaller, faster, easier to learn, and easier to use. It was also designed to be
independent of jQuery or any other JavaScript library.
W3.CSS are Cascading Style Sheets which are developed by the W3schools.com. These style sheets are more useful
to create faster, beautiful and responsive websites and these Style Sheets are very smaller and very faster
when compared to the other frameworks. W3.CSS use only standard frameworks and these are very easy to learn
when compared to the other frameworks.
W3.CSS speedups the processes and simplify the web development and which supports responsive designs by default
and provides equality for all browsers and all devices. The image below demonstrates to adding the w3.CSS link
to the HTML elements as shown below.
Standard CSS:
Standard CSS Means Which use standard style sheets only because which are easy to learn and these are not
dependent on external JavaScript libraries. Whatever the websites created using W3.CSS these are fully
compatible with all the devices.
Key Points:
* W3.CSS Uses only standard CSS.
* W3.CSS inspired from Google Material Design.
* W3.CSS have no dependency.
2 227
Welcome to the CoderBaba Community.
The journey of a thousand miles begins with one step.
πJoin:
https://t.me/joinchat/AFf4NRTZGzAzNzdl
2 227
Welcome to the CoderBaba Community.
The journey of a thousand miles begins with one step.
Join:
https://t.me/joinchat/AFf4NRTZGzAzNzdl
2 227
Topics coverd
---------------
1-pseudo classes in CSS
2-pseudo class type
* Link pseudo class
* Visited pseudo class
* focus pseudo class
2 227
Free Course: Microsoft SQL Server For Beginners | Crash Course
https://www.udemy.com/course/basic-concepts-of-databases-and-writing-query-in-sql-server/?couponCode=MAY_MANIA3
2 227
Watch all Error Solution related to E Shopping website...
How to fix forgot password
https://youtu.be/VqBnePijFnw
2 227
E Shopping Website Password Recovery gmail Error Solution in asp.net C#
https://youtu.be/VqBnePijFnw
2 227
Python class and Objects:
Python is an Object Oriented programming language.
Object is simply a collection of data (variables) and
methods (function) that act on those data. and, class
is a blueprint for the object.
an object is also called an instance of a class and
the process of creating this object is called instantiation.
2 227
Python variables:
in python variable is a named location used to store data
in the memory. each variable must have a unique name called
identifier.
In python variables do not need declaration to reserve memory
space . The variable declaration or variable initialization
happens automatically when we assign a value to a variable.
as example:
salary=100
Emp_Name= "Ravi"
Age1, Age2, Age3=20,24,25
