Write a program to sort an array in C with detailed explanation Shubham Prajapati December 11, 2022 //WAP to sort the array //input 7,4,9,2. output 2 4 7 9 //Steps 1:first use conio.h Library and take some variables as much required //...
introduction of python classXI Shubham Prajapati August 07, 2021introduction of python classXI python is computer programming language
Python - Data handling 04 ClassXI Computer Science Python (Theory+Pract... Shubham Prajapati August 07, 2021Python - Data handling 04 ClassXI Computer Science Python (Theory+Pract...
Python Fundamentals 02 | ClassXI Computer Science (Theory+Practical) Shubham Prajapati August 07, 2021Python Fundamentals 02 | ClassXI Computer Science (Theory+Practical)
Write a function in python named SwapHalfList(Array) ,which accepts a list Array of numbers and sawps the element of 1st Half of the list with the 2nd Half of the list ONLY if the sum of 1 st Half is greater than 2nd Half of the list Shubham Prajapati July 31, 2021 """ """ Write a function in python named SwapHalfList(Array) ,which accepts a list Array of numbers and sawp...
Write a program that generate a series using a function which take first and last values of series and then generates 4 terms that are equidistant Shubham Prajapati July 30, 2021 Write a program that generate a series using a function which take first and last values of series and then generates 4 terms that are equ...
Write a function that receive two numbers and generate a random number from the range Shubham Prajapati July 08, 2021 Write a function that receive two numbers and generate a random number from the range This program is easy to understand . Let us understan...
computer organisation Shubham Prajapati May 19, 2021 Computer Organisation Computer is an electronic device. Computer works are IPO cycle (input à Process à Output). Computer process a ...
modules in python | Library,packages and modules Shubham Prajapati May 18, 2021 Modules in Python What is modules ? Modules are the files that are saved in a python library . Module is a collection of functions ,...
Google kickstart solution In python| Alice presented her friend Bob with an array of N positive integers, indexed from 1 to N. She challenged Bob with many queries of the form "what is the sum of the numbers between these two indexes?" But Bob was able to solve the problem too easily. Shubham Prajapati May 15, 2021GOOGLE KICKSTART SOLUTION Problem Alice presented her friend Bob with an array of N positive integers, indexed from 1 to N . She challeng...