How to fix Google cloud FTP permission denied

Are you using google cloud WordPress hosting for your website? Although WordPress provides a lot of settings to manage the site sometimes you have to modify the WordPress file in the host server. In this tutorial, we learn how to modify the file using FTP so that you didn’t get google cloud FTP permission deniedAre you using google cloud WordPress hosting for your website? Although WordPress provides a lot of settings to manage the site sometimes you have to modify the WordPress file in the host server. In this tutorial, we learn how to modify the file using FTP so that you didn’t get google cloud FTP permission denied […]

Read More…

Python get last element from list

In this tutorial, I show you how to get the last element of the list in Python. This is a very common scenario when you manipulate any list in python.     There are two ways in python to get the last element from the list – The popular way using the list[-1] method. TheIn this tutorial, I show you how to get the last element of the list in Python. This is a very common scenario when you manipulate any list in python.     There are two ways in python to get the last element from the list – The popular way using the list[-1] method. The […]

Read More…

C program to store information of 10 students using structure

In this tutorial, we write a c program to store information of 10 students using structure. The information contains the name, roll number, marks, and city of 10 students.     You will learn how to store student information in structure and display it on the console as the output.   Let’s write a programIn this tutorial, we write a c program to store information of 10 students using structure. The information contains the name, roll number, marks, and city of 10 students.     You will learn how to store student information in structure and display it on the console as the output.   Let’s write a program […]

Read More…

Choose the correct html tag to make a text italic

In this tutorial, we understand how to choose the correct HTML tag to make a text italic. The HTML tag is used to format the webpage.     Html tag to make a text italic   The <i> Html tag is used to make a text italic in HTML below is the format <i></i> WriteIn this tutorial, we understand how to choose the correct HTML tag to make a text italic. The HTML tag is used to format the webpage.     Html tag to make a text italic   The <i> Html tag is used to make a text italic in HTML below is the format <i></i> Write […]

Read More…