Playtime Guide – Age appropriate toys for babies?

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

87 Views

Toys for newbornsSensory toysWind chimesLightweight rattleshand-held toysActivity centerMusic player suitable for babiesToys for 3 to 6 months oldBoard booksSoft stuffed animalsUnbreakable mirrorActivity barsColorful teething ringsSqueaky rubber toysSoft books with high-contrast patternsToys for 6 to 9 months oldBusy boardBallsMoving toysBooksHousehold itemsWood or soft blocksSoft dolls or stuffed animalsToys for 9 to 12 months oldBallsBlocksToy telephoneBooksPush toysShape sortersToys for 12 to 18 months oldPush and pull toysBallsPicture booksLarge building bricksClimbing gymRide-on vehiclesWashable crayons and paperSorting and nesting toysToys for 18 to 24 months oldToy instrumentsTrain setsBallsArt suppliesDress-up clothesPuzzles and manipulativeToys to play houseLarge and small blocksPuzzlesIllustrated books and COsWashable crayons and paperRide-on ... Read More

Connecting to MySQL database from the command line?

George John
Updated on 30-Jul-2019 22:30:24

2K+ Views

To connect MySQL from the command line, firstly open command prompt. You can do this with the help of shortcut key “Windows + R”. On clicking, a panel will open and you need to type CMD and need to press OK button as shown below −After pressing the OK button, you will get command line window.Reach the MySQL Server “bin” directory as shown in the following screenshot −Now you have reached the bin directory. Type the following statement in order to connect with MySQL.mysql -u yourUserName -pApply the above statement to connect with MySQL. The snapshot is as follows with ... Read More

How can I add a Boolean field to MySQL?

Arjun Thakur
Updated on 30-Jul-2019 22:30:24

1K+ Views

You can use tinyint(1) or bool or boolean. All are synonym. If you use bool or boolean datatype, then it nternally change into tinyint(1).In PHP, the value 0 represents false and 1 represents true. Any other number except 0 is also true.Let us check the internal representation of bool or boolean using a table. The query to create a table is as follows.mysql> create table AddBoolDemo -> ( -> isToggle bool -> ); Query OK, 0 rows affected (1.24 sec)To check the DDL of the table, the following is the query.SHOW CREATE TABLE yourTableName;Let us check the representation of bool ... Read More

8085 program to add numbers in an array

Vrundesha Joshi
Updated on 30-Jul-2019 22:30:24

2K+ Views

In this program we will see how to add a blocks of data using 8085 microprocessor.Problem StatementWrite 8085 Assembly language program to add numbers in an array, where the size of the array is N. The value of N is provided.DiscussionIn this problem we are using location 8000H to hold the length of the block. The main block is stored from address 8010H. We are storing the result at location 9000H and 9001H. The 9000H holding the lower byte, and 9001H is holding the upper byte.Repeatedly we are taking the number from the memory, then adding it with accumulator and ... Read More

What is special about the Tirupathi deity?

Knowledge base
Updated on 30-Jul-2019 22:30:24

142 Views

Tirupathi is the highest visited temple on this earth till date, having Lord Venkateswara or Balaji as the main deity. Tirupathi is the city which is below the hill whereas Tirumala is the set of seven hills on top of which is situated the temple of Lord Venkateswara Swamy.This temple was constructed centuries ago and attracts a huge number of visitors all over the world. Lord Venkateswara Swamy is addressed with a lot of names such as Balaji, Govinda, Perumaal, Srinivasa etc. The names of these seven hills are Vrushabhadri, Anjanadri, Neelaadri, Garudadri, Seshaadri, Narayanadri and Venkatadri, where Adri means ... Read More

What are some of the honest slogans of big brands?

Knowledge base
Updated on 30-Jul-2019 22:30:24

83 Views

Any brand gets noticed with a catchy slogan or caption under it. The slogans are a group of words or catchy phrases that help the customers to remember the product easily. The unique brand names with funny but honest slogans or captions can easily catch the eye of a customer. This has been a popular trend nowadays that really gathers much attention.Even the popular social media sites have honest slogans, such as YouTube says broadcast Yourself, while LinkedIn says, “Connect with people for no reason” following one of its options for connecting with people.The recent sensational tinder app has a ... Read More

How to remove double or more spaces from a string in MySQL?

Ankith Reddy
Updated on 30-Jul-2019 22:30:24

638 Views

You can create a function to remove double or more spaces from a string. The syntax is as follows:DELIMITER // create function yourFunctionName(paramter1, ...N) returns datatype; begin //your statement. end; // DELIMITER ;Here’s how to create a function:mysql> delimiter // mysql> create function function_DeleteSpaces(value varchar(200)) returns varchar(200)    -> begin    -> set value = trim(value);    -> while instr(value, ' ') > 0 do    -> set value = replace(value, ' ', ' ');    -> end while;    -> return value;    -> END;    -> // Query OK, 0 rows affected (0.20 sec) mysql> delimiter ;Now you ... Read More

Develop Notepad using Tkinter in python

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

2K+ Views

Tkinter is a GUI library from python from which we can create multiple GUI apps. Here, using tkinter we will develop a notepad like text editor. This notepad will have the menu where we can create new file, open existing file, save the file, editing, cut and paste, all functionality will there.PrerequisitePython installed.Tkinter installed.Note: tkinter comes as a standard library with python 3.x.Adding menu items:Our notepad will have four main menu items: File, Edit, Commands & Help. Our file menu item will have four sub-items- New, Open, Save & Exit.Our edit menu item will have three sub-items- cut, copy & ... Read More

Change MySQL default character set to UTF-8 in my.cnf?

Chandu yadav
Updated on 30-Jul-2019 22:30:24

1K+ Views

To change MySQL default character set to UTF-8 in my.cnf, firstly reach the location of my.cnf file.The following is the screenshot of “my.cnf” file. Firstly, open the C: directory and the “Program Data” folder −Now, click on “MySQL” folder −Now, click the MySQL Server 8.0 folder and open it −After opening MySQL Server 8.0, you will get “my.cnf” file location.After opening my.cnf file, you will get the character-set. Open the file and the following contens are visible −Now you can change the character-set to utf8.

How to form a MySQL Conditional Insert?

George John
Updated on 30-Jul-2019 22:30:24

2K+ Views

For this, you can insert using MySQL dual table. Let us create a table to understand the concept conditional insert. The query to create a table is as follows −mysql> create table ConditionalInsertDemo    -> (    -> UserId int,    -> TotalUser int,    -> NumberOfItems int    -> ); Query OK, 0 rows affected (0.58 sec)Insert some records in the table using insert command. The query is as follows −mysql> insert into ConditionalInsertDemo values(101, 560, 780); Query OK, 1 row affected (0.19 sec) mysql> insert into ConditionalInsertDemo values(102, 660, 890); Query OK, 1 row affected (0.20 sec) ... Read More

Advertisements