Samual Sam has Published 2310 Articles

Fade In Up Animation Effect with CSS

Samual Sam

Samual Sam

Updated on 13-Mar-2020 13:16:39

720 Views

To implement Fade In Up Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: ... Read More

Usage of CSS :first-line pseudo-element

Samual Sam

Samual Sam

Updated on 13-Mar-2020 13:03:22

73 Views

Use this element to add special styles to the first line of the text in a selector. The following example demonstrates how to use the :first-line element to add special effects to the first line of elements in the document.ExampleLive Demo                 ... Read More

Java program to display English alphabets

Samual Sam

Samual Sam

Updated on 13-Mar-2020 10:20:56

415 Views

Following is an example to display English alphabets A to Z.ExampleLive Demopublic class DisplayingAtoZ {    public static void main(String args[]){       char ch;       System.out.println("List of alphabets are ::");       for(ch = 'A'; ch

How to write Java program to add two matrices

Samual Sam

Samual Sam

Updated on 13-Mar-2020 06:15:21

6K+ Views

To add two matrices −Create an empty matrixAt each position in the new matrix, assign the sum of the values in the same position from the given two matrices i.e. if A[i][j] and B[i][j] are the two given matrices then, the value of c[i][j] should be A[i][j] + B[i][j]ExampleLive Demopublic ... Read More

Multidimensional Expression and its use in SAP BPC

Samual Sam

Samual Sam

Updated on 12-Mar-2020 12:36:48

500 Views

MDX is a query language developed by Microsoft to query OLAP cubes. In OLAP cubes, data is structured as multidimensional. You have a fact table in middle and dimension tables surrounding fact tables. MDX is used to query STAR schema cubes like this and generate results for different purposes.MDX query ... Read More

How to call RFC in SAP using an ETL job?

Samual Sam

Samual Sam

Updated on 12-Mar-2020 12:34:24

398 Views

You need to expose RFC as Web Service in SAP system. To create a Web Service, you have to open Transaction SE80 and this will open ABAP Workbench.You can define Web Service for −RFC Capable function modulesFunction GroupsBAPIsMessage InterfacesIn Web Service Wizard, enter the name and short text and select ... Read More

How to display MySQL Table Name with columns?

Samual Sam

Samual Sam

Updated on 09-Mar-2020 06:48:28

920 Views

You can use INFORMATION_SCHEMA.COLUMNS table to display MySQL table name with columns. The syntax is as follows −SELECT DISTINCT TABLE_NAME, Column_Name FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'yourDatabaseName';Here, we have a database with the name ‘sample’ with tables. The query is as follows to display table name along with column name ... Read More

What happens when a negative value is inserted to UNSIGNED column in MySQL?

Samual Sam

Samual Sam

Updated on 06-Mar-2020 10:07:02

709 Views

Error occurs when you set a negative value to UNSIGNED column in MySQL. For example, let us first create a table with an UNSIGNED field −mysql> create table UnsignedDemo    -> (    -> Id int UNSIGNED    -> ); Query OK, 0 rows affected (0.79 sec)The error is as ... Read More

Select and filter the records on month basis in a MySQL table?

Samual Sam

Samual Sam

Updated on 06-Mar-2020 07:03:12

670 Views

You can use aggregate function SUM() with GROUP BY clause to achieve this.Let us create a table. The query to create a table is as follows −mysql> create table SelectPerMonthDemo    -> (    -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    -> Price int,    -> PurchaseDate datetime ... Read More

How to compare numbers in Python?

Samual Sam

Samual Sam

Updated on 05-Mar-2020 10:48:16

17K+ Views

You can use relational operators in python to compare numbers(both float and int) in python. These operators compare the values on either side of them and decide the relation among them. Assume variable a holds 10 and variable b holds 20, thenOperatorExample==(a == b) is not true.!=(a != b) is ... Read More

Advertisements