Install Magento on WSL wsl --install Apache2 sudo apt install apache2 sudo service apache2 restart PHP 8.0 sudo apt update sudo apt install lsb-rel… Written By Yempally Mahesh Kumar Sunday, 16 April 2023 Comment Edit
Birthday Cake Candle Code You are in charge of the cake for a child's birthday. You have decided the cake will have one candle for each year of their … Written By Yempally Mahesh Kumar Friday, 11 March 2022 Comment Edit
Mini-Max Sum Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five in… Written By Yempally Mahesh Kumar March 11, 2022 Comment Edit
Staircase This is a staircase of size :4 # ## ### #### // Complete the staircase function below. function staircase($n) { $m… Written By Yempally Mahesh Kumar March 11, 2022 Comment Edit
Given an array of integers, calculate the ratios of its elements that are positive, negative, and zero. Print the decimal value of each fraction on a new line with places after the decimal. // Complete the plusMinus function below. function plusMinus($arr) { $pos=0; $neg=0; $zero=0; for(… Written By Yempally Mahesh Kumar Wednesday, 9 March 2022 Comment Edit
You are required to calculate and print the sum of the elements in an array, keeping in mind that some of those integers may be quite large. Function Description Complete the aVeryBigSum function in the editor below. It must return the sum of all array elements. aVer… Written By Yempally Mahesh Kumar March 09, 2022 Comment Edit
Alice and Bob each created one problem . A reviewer rates the two challenges, awarding points on a scale from 1 to 100 for three categories: problem clarity, originality… Written By Yempally Mahesh Kumar March 09, 2022 Comment Edit