Nikitha N has Published 72 Articles

Increase or decrease the size of a font with CSS

Nikitha N

Nikitha N

Updated on 30-Jan-2020 10:16:10

673 Views

The font-size property is used to increase or decrease the font size. The font-size property is used to control the size of fonts. Possible values could be xx-small, x-small, small, medium, large, x-large, xx-large, smaller, larger, size in pixels or in %.                 ... Read More

How can we check the default character sets of all the MySQL databases we have on the server?

Nikitha N

Nikitha N

Updated on 30-Jan-2020 06:21:34

135 Views

The query below will return the name of the database along with the default character set −mysql> SELECT SCHEMA_NAME 'Database', default_character_set_name 'charset' FROM information_schema.SCHEMATA; +--------------------+---------+ | Database           | Charset | +--------------------+---------+ | information_schema | utf8    | | gaurav             ... Read More

How can we insert current year automatically in a YEAR type column of MySQL table?

Nikitha N

Nikitha N

Updated on 28-Jan-2020 12:23:05

587 Views

It can be done by using either CURDATE() or NOW() in MySQL query as follows −mysql> Insert into year1(Year_Copyright) values (CURDATE()); Query OK, 1 row affected, 1 warning (0.06 sec) mysql> Select * from year1; +----------------+ | Year_Copyright | +----------------+ |           2017 | | ... Read More

Implementing tree structure in Sapui5 and restricting parent property

Nikitha N

Nikitha N

Updated on 17-Dec-2019 06:51:18

691 Views

Note that “sap.ui.model.ClientTreeBinding” which is used by TreeTable in JSONModel or XMLModel supports the parameter arrayNames. You need to pass an array of the model property names to create a sublevel. I would suggest to try below:In XML view:      ... In JSON view:treeTable.bindRows({path: '/pathToData', parameters: { arrayNames: ['children'] ... Read More

Properties of SAP ABAP Development Objects

Nikitha N

Nikitha N

Updated on 05-Dec-2019 07:51:37

266 Views

Similar to reflection in JAVA we have RTTS in SAP. RTTS stands for runtime type services. It provides you with ways to retrieve the definitions of variables and lets you create a new variable during program execution. RTTS comprises of two sub-componentsRTTI – Run Time Type IdentificationRTTC – Run Time ... Read More

How to check if a string has a certain piece of text in JavaScript?

Nikitha N

Nikitha N

Updated on 12-Sep-2019 07:21:59

200 Views

The jQuery search() method is used to check whether a string contains a certain text in JavaScript.You can try to run the following code to check whether “Tutorialspoint: Free Video Tutorials” contains the “Free Video” text in JavaScript or not:           JavaScript String search() Method   ... Read More

What is ABAP? Explain ABAP OOP feature in detail?

Nikitha N

Nikitha N

Updated on 30-Jul-2019 22:30:22

420 Views

ABAP stands for Advanced Business Application Programming. It is one of the primary programming languages used for developing programs and applications for SAP R/3 systems and its related modules. It is a high-level language with respect to SAP as it is understood and known only to SAP environment.The latest version ... Read More

What does the method add(E element) do in java?

Nikitha N

Nikitha N

Updated on 30-Jul-2019 22:30:21

481 Views

The add(E e) method of the java.util.ArrayList class appends the specified element E to the end of the list.Example:import java.util.ArrayList; public class ArrayListDemo {    public static void main(String[] args) {       ArrayList arrlist = new ArrayList(5);       arrlist.add(15);       arrlist.add(20);       arrlist.add(25); ... Read More

How to synchronize an ArrayList in Java?

Nikitha N

Nikitha N

Updated on 30-Jul-2019 22:30:21

287 Views

The synchronizedList(List list) method of the Collections class accepts a List object and returns a synchronized list backed by the specified list.Example:import java.util.ArrayList; import java.util.Collections; import java.util.LinkedHashSet; import java.util.Set; public class ArrayListSample {    public static void main(String[] args){       ArrayList list = new ArrayList();       ... Read More

How to convert a list collection into a dictionary in Java?

Nikitha N

Nikitha N

Updated on 30-Jul-2019 22:30:21

2K+ Views

Following is an example to convert a list collection into a dictionary in Java.Example Live Demoimport java.util.ArrayList; import java.util.Dictionary; import java.util.Hashtable; public class CollectionDictionary {    public static void main(String[] args) {       ArrayList list = new ArrayList();       list.add("JavaFx");       list.add("Java");     ... Read More

Advertisements