Skip to main content

Posts

Featured Post

Variables In C# | WaoFamHub

What Are Variables In C#. Variables are specific names given to locations in the memory for storing and dealing with data. The values of a variable can be changed or reused as many times as possible. Every variable name has a specific type that resolves the size and layout of memory the variable will hold as well as the range of values that variable within your program can hold. Also, programmers can determine which variables can be applied to which type of operation. Types Of C# Variables. The basic types of variables that can be formed in a C# program are: Integral typessbyte, byte, short, ushort, int, uint, long, ulong, and char Floating-point types float and double Decimal types decimal Boolean types true or false values, as assigned Nullable types Nullable data types Define Variables In C#. For implementing variables in a C# program, you have to define them before use. To do this, the syntax is: <data_type> <variable_names> ; Here data_types will be a valid data type (...
Recent posts

C# Programming Structure | WaoFamHub

C# Programming Structure. The lists of elements that are commonly used in a C# program are: Library invoked by the keyword "using". Declaring namespace using the "namespace" keyword. Declaring a class using the keyword "class". Class members and attributes. The Main() method. Other statements and expressions. Writing comments for user understanding and non-executable statements. Let's look into various parts of the above C# program. /* Comments */ /* Print, some string in C# */, is the comment statement that does not get executed by the compiler and is used for code readers or programmers' understanding. using Here, using keyword is employed for fetching all the associated methods that are within the System namespace. Any C# program can have multiple using statements. namespace Next statement is used for declaring a namespace, which is a collection of classes under a single unit; here "printHelloCsharp". Class Next, you have declared a cl...

Introduction Of C# | WaoFamHub

Introduction Of C#. There are a lot of object-oriented programming (OOP) languages ​​on the market, and C # is one of the purest forms of the OOP language. C# is a Dot Net Framework's programming language. This language was designed for both professionals and newbie programmers to start learning and implementing it. What Is C# ? C# comes under internationally accepted general-purpose, high level, an object-oriented programming language developed by the Microsoft Corporation and approved by the International Standards Organization (ISO) and the European Computer Manufacturers Association (ECMA) to be considered as a standard and professionally used programming language. Anders Hejlsberg was involved as the lead developer who developed it when the Dot Net Framework was created. C# was designed for complex computational logic and was mainly designed for Command Line Interface (CLI) that deals with executable code in a runtime environment. The term C# is pronounced as C-Sharp, which r...

What Is Cloud Computing Explanation | WaoFamHub

Cloud Computing What Is Cloud Computing? (V1) Cloud computing is the on-demand availability of computer system resources, especially data storage (cloud storage) and computing power, without direct active management by the user. The term is generally used to describe data centers available to many users over the Internet. What Is Cloud Computing? (V2) Simply put, cloud computing is the delivery of computing services—including servers, storage, databases, networking, software, analytics, and intelligence—over the Internet (“the cloud”) to offer faster innovation, flexible resources, and economies of scale. What Is Cloud Computing? (V3) Cloud Computing is the use of hardware and software to deliver a service over a network (typically the Internet). With cloud computing, users can access files and use applications from any device that can access the Internet. An example of a Cloud Computing provider is Google's Gmail. What are the 3 types of cloud computing? Cloud computing can be bro...

What Is Google Schemas? And Types | WaoFamHub

Google Schema What is Google Schema? (V1) Schema.org (often called Schema) is a semantic vocabulary of tags (or microdata) that you can add to your HTML to improve the way search engines read and represent your page in SERPs. What Is Google Schemas ? (V2) Website Schemas are essentially words or tags in a “shared vocabulary” that can be used by your on-line marketing company (like us!) to talk to search engines like Google & Bing to provide refined searches. What Is Google Schemas? (V3) Schema markup, also known as structured data, is the language of search engines, using a unique semantic vocabulary. It is code used to more clearly provide information to search engines in order to understand your content. In turn, this helps provide users with better, more accurate information in the rich snippets that are displayed beneath the page title. What is schema and why is it important? Schema is powerful and important. By being able to implement and use this information. You'll not o...

AMP Website VS Normal Website | WaoFamHub

AMP Site VS Normal Site What Is AMP Site? AMP (originally an acronym for Accelerated Mobile Pages) is an open source HTML framework developed by the AMP Open Source Project. It was originally created by Google as a competitor to Facebook Instant Articles and Apple News. AMP is optimised for mobile web browsing and intended to help webpages load faster. What Is Website? A website (also written as web site) is a collection of web pages and related content that is identified by a common domain name and published on at least one web server. ... Websites are typically dedicated to a particular topic or purpose, such as news, education, commerce, entertainment, or social networking. Whay AMP Site Load Fast? AMP-built web pages have a lightning bolt indicator in the search result. This is what an AMP page looks compared to a normal web page: The reason why AMP pages load instantly is because AMP restricts HTML/CSS and JavaScript, allowing faster rendering of mobile web pages. How To Make AMP ...

Software Engineering - Agile Model | WaoFamHub

Agile Model The meaning of Agile is swift or versatile."Agile process model" refers to a software development approach based on iterative development. Agile methods break tasks into smaller iterations, or parts do not directly involve long term planning. The project scope and requirements are laid down at the beginning of the development process. Plans regarding the number of iterations, the duration and the scope of each iteration are clearly defined in advance. Each iteration is considered as a short time "frame" in the Agile process model, which typically lasts from one to four weeks. The division of the entire project into smaller parts helps to minimize the project risk and to reduce the overall project delivery time requirements. Each iteration involves a team working through a full software development life cycle including planning, requirements analysis, design, coding, and testing before a working product is demonstrated to the client. Phases of Agile Model...