Transform Background Image Using CSS3

Harshit Sachan
Updated on 20-Feb-2023 15:52:46

2K+ Views

HTML stands for Hyper Text Markup Language. It functions as a tool for constructing Web pages as well as an illustration of how one is put together. It consists of a number of parts. Its components provide the browser instructions on how to render the content. The appearance of HTML components in different print and digital media, such as displays and other print and digital forms, is controlled by CSS, or cascading style sheets. Time is significantly reduced when CSS is used. It enables the concurrent control of several web page designs. In this post, we'll discover how to ... Read More

Create Accordion Hover Effect with Box Shadows in CSS

Harshit Sachan
Updated on 20-Feb-2023 15:48:37

664 Views

Hyper Text Markup Language is what HTML is. It serves as both an example of how a Web page is put together and a tool for creating Web pages. It is made up of several components. Its elements provide instructions to the browser on how to render the content. CSS, or cascading style sheets, define how HTML elements appear in various print and digital media, such as displays and other print and digital forms. The use of CSS considerably reduces time. It allows for the simultaneous management of many webs page designs. This article, we will learn how to ... Read More

Difference Between Array and Pointer

Kiran Kumar Panigrahi
Updated on 20-Feb-2023 15:47:39

10K+ Views

Array and pointers have a very close relationship in programming, but there are several differences between them. Read this article to find out how Arrays are different from Pointers. But let us first discuss some basics of arrays and pointers. What is an Array? An array is one that stores the values of a homogeneous data type. It refers to a collection that consists of elements of homogenous/same data type. Arrays are considered as a primitive data type. They are declared using the '[ ]' and are stored in contiguous memory locations. Also, arrays use subscripts/ '[ ]' (square brackets) ... Read More

Create Non-Rectangular Header Using HTML and CSS

Harshit Sachan
Updated on 20-Feb-2023 15:47:03

507 Views

Hyper Text Markup Language is referred to as HTML. It is used for building Web pages; it explains how a Web page is put together. There are several components to it. The components in it instruct the browser on how to render the material. Cascading style sheets, or CSS, define how HTML components should appear in various print and digital media, including displays and other print and digital forms. The use of CSS saves a lot of time. It can control the design of several web pages at once. In this article, we will learn about how to create ... Read More

Difference Between Array and Linked List

Kiran Kumar Panigrahi
Updated on 20-Feb-2023 15:45:40

13K+ Views

The basic difference between an array and a linked list is in their structure. An array relies on the index-based data structure, whereas a liked list is based on the references. Read this article to find out more about Arrays and Linked Lists and how they are different from each other. What is an Array? An array is a consistent set of fixed number of data items. Array stores elements in contiguous memory locations. This means the specific elements can be accessed using easily calculable addresses. Hence, an array provides fast access to find element at a specific index. Another ... Read More

Golang Program to Demonstrate String Interpolation

Akhil Sharma
Updated on 20-Feb-2023 15:33:10

3K+ Views

In Go programming language, string interpolation is the process of integrating expressions into a string literal. When it's necessary to include dynamic values in strings for log statements, error messages, and other purposes, string interpolation is frequently used. We will use two methods in this program to demonstrate string interpolation. The first example demonstrates use of sprintf and the second example shows how to use printf to execute string interpolation. Method 1: Using sprintf with fmt package In this method, the name and age variables' values are combined into a string using fmt.Sprintf() function which demonstrate interpolation.  Here,  Strings are ... Read More

Difference Between Alpha and Beta Testing

Kiran Kumar Panigrahi
Updated on 20-Feb-2023 15:32:15

1K+ Views

Alpha and Beta testing are types of testing which are based on feedback from real customers using real products in real environments, but they are driven by distinct goals and processes. Read this article to find out more about Alpha and Beta testing and how they are different from each other. What is Alpha Testing? Alpha testing is the testing that is performed at the developer's site by the internal teams, before releasing the product to the external customers. The primary goal of alpha testing is basically to find bugs, and determine does the product work how it is expected ... Read More

Create a String Object in Go

Akhil Sharma
Updated on 20-Feb-2023 15:31:01

551 Views

In Golang, a string cannot be modified after they have been created. A built-in type in Go, the string type can be used in a variety of ways much like any other data type. In this article, we will use three methods to create a string object. The first method involves using of double quotes and backticks, in the second method strings.Replace() function is used and in the third method, a byte function is used to execute the program. Method 1: Using double quotes and backticks Two string objects, str1 and str2, are created in this program. Backticks (') are ... Read More

Convert Vector to List in Go

Akhil Sharma
Updated on 20-Feb-2023 15:29:15

1K+ Views

In Golang, a vector is referred to as an array or a slice. Slice is a dynamic array whose size can be changed whereas a linked list data structure is one type of list, where each node has a value and is pointing to the next element. We will use two examples in this program to convert vector to a list. In the very first example a built-in copy function will be used and in the second example we will iterate the slice in the reverse order to obtain the output. Method 1: Using Copy Function In this method, we ... Read More

Convert Primitive Types to Objects in Go

Akhil Sharma
Updated on 20-Feb-2023 15:23:48

1K+ Views

In this Golang program, converting primitive data types (such as int, char, float, etc) to objects is known as "Boxing". It is a procedure that transforms a primitive type into the matching object type, such as an integer into a float, a character into a char, etc. This enables the programmer to use the fields and methods of the relevant object type and treat primitive data types as objects. We will use two methods to execute this program. Method 1: Using Reflect In this method, the primitive types are transformed into objects using the reflect package. The type and data ... Read More

Advertisements