Anvi Jain has Published 648 Articles

List of Keywords in Python Programming

Anvi Jain

Anvi Jain

Updated on 11-Aug-2022 11:37:47

Keywords in Python are reserved words. You cannot use them as variable name, function name, class name, etc. Following are the Keywords in Python − Keywords in Python FALSE await else import pass None break except in ... Read More

How to draw sine waves with HTML5 SVG?

Anvi Jain

Anvi Jain

Updated on 16-Dec-2021 10:30:46

To draw sine waves with SVG, use the following that closely approximates half of a sine wave. I have used a cubic-bezier approximation. Use the element.Example           SVG                     HTML5 SVG Sine Waves                           Output

C++ Program to Implement the RSA Algorithm

Anvi Jain

Anvi Jain

Updated on 17-May-2021 06:43:38

RSA is an asymmetric cryptography algorithm which works on two keys-public key and private key.AlgorithmsBegin    1. Choose two prime numbers p and q.    2. Compute n = p*q.    3. Calculate phi = (p-1) * (q-1).    4. Choose an integer e such that 1 < e < ... Read More

Achieve Responsiveness for background image with CSS

Anvi Jain

Anvi Jain

Updated on 04-Jul-2020 06:10:57

You can try to run the following code to achieve responsiveness for background image with CSS −ExampleLive Demo                          div {             width: 100%;             height: ... Read More

ORDERBY word in MySQL?

Anvi Jain

Anvi Jain

Updated on 03-Jul-2020 12:01:47

To order by word in MySQL, you need to use ORDER BY FIELD(). Let us first create a table −mysql> create table DemoTable (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentFirstName varchar(20),    StudentFavouriteSubject varchar(100) ); Query OK, 0 rows affected (0.52 sec)Insert some records in the ... Read More

Usage of CSS align-content property space-around value

Anvi Jain

Anvi Jain

Updated on 03-Jul-2020 10:25:01

Use the align-content property with value space-around to add space around the flex lines.ExampleYou can try to run the following code to implement the space-around value:Live Demo                    .mycontainer {             display: flex;     ... Read More

Create a transition effect on hover pagination with CSS

Anvi Jain

Anvi Jain

Updated on 03-Jul-2020 08:06:04

To create a transition effect on hover pagination, use the transition property.ExampleYou can try to run the following code to add transition effect −Live Demo                    .demo {             display: inline-block;         ... Read More

Build Horizontal Navigation Bar with Inline List Items in CSS

Anvi Jain

Anvi Jain

Updated on 02-Jul-2020 14:04:12

Use Inline List Items to build a horizontal navigation bar. Set the elements as inline.ExampleYou can try to run the following code to create horizontal navigation bar:Live Demo                    ul {             list-style-type: none; ... Read More

How can I send mail from an iPhone application?

Anvi Jain

Anvi Jain

Updated on 30-Jun-2020 05:25:17

To send an email from our application we'll need to use URL Schemes and some action on event of which the email will be sent. We can not actually send email from the application, unless it is an mailing application and we use MessageUI framework of iOS, but we can ... Read More

How to create a WebView in iOS/iPhone?

Anvi Jain

Anvi Jain

Updated on 30-Jun-2020 05:24:12

To create a web view in iOS we'll use Webkit framework of iOS. Previously UIWebView was used to create web views but that has been deprecated now.We'll use WebKit View in this project.Create a new project and from object library drag and drop webKit View to the ViewController.Give constraints as ... Read More

1 2 3 4 5 ... 65 Next
Advertisements