Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Web development and programming

191828 questions • Page 3800 / 3837

void doubleArray (int array[],int s) { for (int i = 0; i < s; i++) array[i] = ar
void doubleArray (int array[],int s) { for(int i = 0; i &lt; s; i++) array[i] = array[i]*2 ; } void selectionSort (int array[], int s) { int largestIndex ; // index of largest num…
void forr() { ofstream fout; fout.open(\"FileName.TXT\"); fout
void forr() { ofstream fout; fout.open("FileName.TXT"); fout&lt;&lt;For loop is printed:&lt;&lt;endl; int counter=1; for(counter=1;counter&lt;=10;counter++) fout&lt;&lt;counter&lt…
void fun(int n) { Stack S; // Say it creates an empty stack S while (n > 0) { //
void fun(int n) {     Stack S; // Say it creates an empty stack S     while (n &gt; 0)     {       // This line pushes the value of n%2 to stack S       push(&amp;S, n%2);       n…
void k_stars(int numberOfStars) { if(numberOfStars==1) { cout
void k_stars(int numberOfStars) {     if(numberOfStars==1)     {           cout&lt;&lt;"*"&lt;&lt;endl&lt;&lt;"*"&lt;&lt;endl;     }     else     {           for (int i=0;i&lt;num…
void method1(Board b, int numOfRows, int numOfColumns) { Board bb = copyBoard(b,
void method1(Board b, int numOfRows, int numOfColumns) {    Board bb = copyBoard(b, numOfRows, numOfColumns); } Board copyBoard(Board* b, int numOfRows, int numOfColumns) {    int…
void normalizeBigNum(odPtr&tmpPtr;) // Task: Remove leading zeroes from a BigNum
void normalizeBigNum(odPtr&amp;tmpPtr;) // Task: Remove leading zeroes from a BigNum represented by a linked list. I/ Pre: tmpPtr points to the first node of a list, or is nullptr…
void order_two_players(player_t* player1_p, player_t* player2_p) { player_t *tmp
void order_two_players(player_t* player1_p, player_t* player2_p) { player_t *tmp = player1_p; player1_p = player2_p; player1_p = tmp; /* This function compares two players. If *pl…
void perm_rec_1(int N, int nr_values) - A recursive SOLUTION. The wrapper functi
void perm_rec_1(int N, int nr_values) - A recursive SOLUTION. The wrapper function that will be called from main() must have the signature shown here "void perm_rec_1(int N, int n…
void printOutput(ofstream&, int, string, string, double ); // prototype //inside
void printOutput(ofstream&amp;, int, string, string, double ); // prototype //inside of main... { int masterAccount; // holds account from old master file int transactionAccount; …
void readFile(vector &dealerVector) { ifstream infile; infile.open(\"in.txt\");
void readFile(vector &amp;dealerVector) { ifstream infile; infile.open("in.txt"); if (!infile) { cout&lt;&lt;"No file was found"; } else { string VIN, make, model, dealerName; int…
void rehash( ) { vector oldArray = array; // Create new double-sized,
void rehash( ) {     vector&lt;HashEntry&gt; oldArray = array;     // Create new double-sized, empty table     array.resize( 2 * oldArray.size( ) );     for( auto &amp; entry : ar…
void repl (){ while ( 1 ){ while ( words [ a ]!= \'\\0\' ){ if ( isNumeric ( wor
void repl(){ while(1){ while(words[a]!=''){ if(isNumeric(words[a])){ push(words[a]); }else if(strcmp(words[a],"add")==0){ strcpy(value1, pop()); strcpy(value2, pop()); sum2 = (int…
void reverseListyString(ListyString *listy); Description: Reverse the linked lis
void reverseListyString(ListyString *listy); Description: Reverse the linked list contained within listy. Be careful to guard against segfaults in the cases where listy is NULL or…
void set flag(int flag holder int flag position Snt check flag(int flag holder,
void set flag(int flag holder int flag position Snt check flag(int flag holder, int flag position int nain(int arge, char argvlj) int flag holder int i set flag(&amp; flag holder,…
void set_flag(unsigned int flag_holder[], int flag_position); void unset_flag(un
void set_flag(unsigned int flag_holder[], int flag_position); void unset_flag(unsigned int flag_holder[], int flag_position); int check_flag(unsigned int flag_holder[], int flag_p…
void set_flag(unsigned int flag_holder[], int flag_position); void unset_flag(un
void set_flag(unsigned int flag_holder[], int flag_position); void unset_flag(unsigned int flag_holder[], int flag_position); int check_flag(unsigned int flag_holder[], int flag_p…
void show( ) { cout
   void show( )       { cout &lt;&lt; "Name " &lt;&lt; name &lt;&lt; endl; } That is the base version of show(). It will print the string "Name " followed by the private value of …
void show( const Address address[], unsigned addressElements, const unsigned des
void show( const Address address[], unsigned addressElements, const unsigned desiredZip[], unsigned desiredZipElements ); Output all the addresses in address whose zip code matche…
void sig_handler(){ printf(\"Beep\ \"); alarm(1); } int main(){ if(signal(SIGALR
void sig_handler(){ printf("Beep "); alarm(1); } int main(){ if(signal(SIGALRM, sig_handler) == SIG_ERR){ printf("Failed to bind handler "); } printf("Going into an infinite loop …
void sort(book_info bo[], int k) { string temp, temp1, temp2, temp3, temp4, temp
void sort(book_info bo[], int k) { string temp, temp1, temp2, temp3, temp4, temp7; int temp5, temp6, temp8; bool swap; do{swap=false; for(int pos=0; pos&lt;k-1; pos++) if(bo[pos].…
void sort(double &num1, double &num2, double &num3) { double temp; if(num1 > num
void sort(double &amp;num1, double &amp;num2, double &amp;num3) { double temp; if(num1 &gt; num2) { temp = num1; num1 = num2; num2 = temp; } if(num2 &gt; num3) { temp = num2; num2…
void spiral( centerX, centerY, maxRadius, spinRate, numSegments) This will draw
void spiral( centerX, centerY, maxRadius, spinRate, numSegments) This will draw a spiral centered at (x, y). The maxRadius determines how large the spiral can be. A low spin rate …
void totalcat(fstream &file) // i get 0 for every catagory { int cat,sale = 0; i
void totalcat(fstream &amp;file) // i get 0 for every catagory {     int cat,sale = 0;     int i = 0;     inventory items;     file.open("data.dat",ios::in|ios::binary);     cout …
volunteerhours - volunteer_xnumber VARCHAR(6) volunteer date DATE VAR num_hours
volunteerhours - volunteer_xnumber VARCHAR(6) volunteer date DATE VAR num_hours INT (11) volunteer xnumber VARCHAR(6) last_name VARCHAR(30) first_nam e VARCHAR(30) -volunteer know…
volunteerhours - volunteer_xnumber VARCHAR(6) volunteer date DATE VAR num_hours
volunteerhours - volunteer_xnumber VARCHAR(6) volunteer date DATE VAR num_hours INT (11) volunteer xnumber VARCHAR(6) last_name VARCHAR(30) first_nam e VARCHAR(30) -volunteer know…
vowels to the same vowel is a first step. word should be a string---otherwise re
vowels to the same vowel is a first step. word should be a string---otherwise return boolean value False when word is a string, return word with all vowels changed to the letter e…
vue.js is there a way to create a text input box with a dropdown menu for the us
vue.js is there a way to create a text input box with a dropdown menu for the user to select from, that allows the user to edit the text box after they select an option? For examp…
vvvvvvvv Instructions: For this part of the project, you will add a menu to your
vvvvvvvv Instructions: For this part of the project, you will add a menu to your program in Part 2 and add functionality to create and display mailing labels by reading input from…
w = 1.05 * 10 - 8 | 1.05 * 10 - 8 | Problem 15 : Two very long, parallel wires a
w = 1.05 * 10- 8| 1.05 * 10- 8| Problem 15: Two very long, parallel wires are separated by d = 0.035 m. The first wire carries a current of I1 = 0.15 A. The second wire carries a …
w Pg. 02 Question Two Leaming Outcomers) Question Two 10 Marks Create a SQL stat
w Pg. 02 Question Two Leaming Outcomers) Question Two 10 Marks Create a SQL statement to retrieve information from a relational database Consider the relations: requested STUDENT …
w rite an asm code fragment that performs the indicated task or function: copy t
write an asm code fragment that performs the indicated task or function: copy the higher order 4 bits from the AL register and the lower order 4 bits from the AH register into the…
w rite an asm code fragment that performs the indicated task or function: copy t
write an asm code fragment that performs the indicated task or function: copy the higher order 4 bits from the AL register and the lower order 4 bits from the AH register into the…
w tab CS200-1-HW6 (2).pdf | ? cs-200-FinalExarm-Spnn × + ? cs-200 FinalExam Spri
w tab CS200-1-HW6 (2).pdf | ? cs-200-FinalExarm-Spnn × + ? cs-200 FinalExam Spring2018.pdf Problem 2 Write a Java method countMultiplesofN that accepts an integer array named arr …
w: write database to a file. The function name should be writeToFile with no par
w: write database to a file. The function name should be writeToFile with no parameter. -3 pts if a different name is used. Write to a file named, musicLibrary.txt, the contents o…
wAnswer in C++ only using files: main.cpp and WorldLadder.cpp 22.7 Lab: Word lad
wAnswer in C++ only using files: main.cpp and WorldLadder.cpp 22.7 Lab: Word ladder Write a word ladder program. Read this wikipedia article that describes what a word ladder is: …
wRITE A PSEUDOCODE FOR THIS PROGRAM #include #include #include
wRITE A PSEUDOCODE FOR THIS PROGRAM #include&lt;stdio.h&gt; #include &lt;time.h&gt; #include &lt;stdlib.h&gt; #include &lt;string.h&gt; #define MAX_PASSES 3 /*constant for maximum…
want a clearly explanation thank u soooo much 3. (20 points) Let a1,---, an be n
want a clearly explanation thank u soooo much 3. (20 points) Let a1,---, an be n distinct real numbers, and wi, .., wn be a set of n positive weights with wit . . . + wn-1. The we…
want to know who is logged on to the machine a long time. Using \"last\" and oth
want to know who is logged on to the machine a long time. Using "last" and others provide me with one command line that shows the time logged in, from greatest to least, a screen …
want to use processing to create a creature\"Fizzy\"...which is a ball with a re
want to use processing to create a creature"Fizzy"...which is a ball with a red face and black eyes.... when the user presses 'w', The Fizzy should turn and move up, 'a' will make…
want to write if staement giving the tax for 2017 and 2018. so the users that ty
want to write if staement giving the tax for 2017 and 2018. so the users that typy a different year sould display they are putting different year . in other word we work for the t…
wanted to change from triangles or square maybe use the circles to make squares
wanted to change from triangles or square maybe use the circles to make squares and for some reason i got it flip upside down. heres what i have import java.awt.*; import java.awt…
warningl Due to inacbv)(/ aTake Test Exam 2-SR2e x à Secure https//learn access,
warningl Due to inacbv)(/ aTake Test Exam 2-SR2e x à Secure https//learn access, place your bookmarks here on the bookmarks bar. Import bookmarks nw. assessment/take/launch.jsp?co…
watched Christiane Amanpour & Chris Anderson How to Seek Truth in the Era of Fak
watched Christiane Amanpour &amp; Chris Anderson How to Seek Truth in the Era of Fake News (TED Talk video): Discussion: Amanpour mentioned that she wished that the proliferation …
watson elementary school contains 30 classrooms numbered 1 through 30. Each clas
watson elementary school contains 30 classrooms numbered 1 through 30. Each classroom can contain up to 35 students. Each student takes an achievement test at the end of the year …
way around this is to use virtunlization; creating a virtual \"guest\" Oos on a
way around this is to use virtunlization; creating a virtual "guest" Oos on a virtual computerd nain "bost" computer. The guest virtual maclhine will still have acces to the es, a…
way selection : Suppose that the cost of sending an international fax is calcula
way selection : Suppose that the cost of sending an international fax is calculated as follows: the service charge is $3.00, $.2 per page for the first 10 pages, and $.10 for each…
ways to award colored medals to athletes: In a running race, a among a number of
ways to award colored medals to athletes: In a running race, a among a number of participants will be awarded colored medals. The lored number of people that are awarded medals is…
we are given a file that has the following data: 6.9 100 0.9 200 0.6 300 0.3 150
we are given a file that has the following data: 6.9 100 0.9 200 0.6 300 0.3 150 0.2 the first number represents intensity level= i the first column under 6.9 represent Area and t…
we are going to be creating a basic encryption/decryption function. The principl
we are going to be creating a basic encryption/decryption function. The principle function we are writing will call an encrypt function and/or a decrypt function. Normally, I woul…
we are going to be creating a basic encryption/decryption function. The principl
we are going to be creating a basic encryption/decryption function. The principle function we are writing will call an encrypt function and/or a decrypt function. Normally, I woul…