Showing posts from September, 2021

C++ Program to reverse array number

#include <bits/stdc++.h> using namespace std; void printarray(int arr[],…

C Program to reverse number

//reverse the array #include <stdio.h> void rev(int arr[],int size) { pr…

Java Hello World Program

What Is Java Programming? Just as a quick refresher,  Java  is a programming la…

Unix Exercises, Practice, Solution

UNIX is an operating system which was first developed in the 1960s, and has bee…

PHP Exercises, Practice, Solution | PHP programming exercises

PHP started out as a small open source project that evolved as more and more pe…

C programming examples, exercises and solutions for beginners

Introduction of C:-  C Language was originally developed by an American compute…

Write a PHP script to calculate and print the factorial of a number using a for loop

factorial:- The factorial of a number is the function that multiplies the numb…

Write a PHP script using a for loop to add all the integers between 0 and 20 and display the sum

code:-   <?php $sum = 0; for($x=1; $x<=20; $x++) { $sum +=$x; } echo &quo…

Write a PHP script that displays 1 2 3 4 5 6 7 8 9 10 numbers on one line

code:-  <?php for($num=1; $num<=10; $num++) { echo "$num"; } ?&…

Write a PHP script to select first 4 words from the following string

array_slice():- The array_slice() function returns selected parts of an array. …

Write a PHP script to print letters from 'a' to 'z'.

chr():- The chr() function returns a character from the specified ASCII value. …

Write a PHP script to get the first word of a sentence

explode():- The explode() function breaks a string into an array. code:- <?p…

Write a PHP script to remove comma(s) from the following numeric string

str_replace():- The str_replace() function replaces some characters with some o…

Write a PHP script to remove all leading zeroes from a string

ltrim():-  The ltrim() function removes whitespace or other predefined characte…

Write a PHP script to insert a string at the specified position in a given string

substr_replace():- The substr_replace() function replaces a part of a string wi…

Write a PHP script to remove a part of a string from the beginning

substr():- The substr() function returns a part of a string. strlen():- The str…

Write a PHP script to print the next character of a specific character

strlen():- The strlen() function returns the length of a string. code:- <?ph…

Write a PHP script to generate simple random password from a given string

Write a PHP script to generate simple random password from a given string str_s…

Write a PHP script to Replace the first word with another word

Write a PHP script to replace the first 'what' of the following string…

Write a PHP script to get the last three characters of a string

Write a PHP script to get the last three characters of a string substr():- The…

Write a PHP script to extract the user name from the email ID

Write a PHP script to extract the user name from the email ID strstr():- The s…

Write a PHP script to split the following string

Write a PHP script to split the following string chunk_spilt():- The chunk_spli…

Write a PHP script to convert first character of all the words uppercase

Write a PHP script to convert first character of all the words uppercase ucword…

Write a PHP script to convert first character uppercase

Write a PHP script to convert first character uppercase ucfirst():- The ucfirst…

Write a PHP script to convert uppercase string to lowercase

Write a PHP script to convert uppercase string to lowercase      strtolower():-…

Write a PHP script to convert lowercase string to uppercase

Write a PHP script to convert lowercase string to uppercase         strtoupper(…

Write a shell script that takes your name as input and display

Write a shell script that takes your name as  input and display script:- read n…

Write a PHP program to remove duplicates from a sorted list

Write a PHP program to remove duplicates from a sorted list array_unique():- Th…

How do you print sentence PHP is best programming language in PHP?

How do you print sentence PHP is best programming language in PHP? code:- PHP…

Write a PHP script to get the names of the functions of a module

Write a PHP script to get the names of the functions of a module   What is a …

Load More That is All