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

Browse H

Alphabetical listing with fast deep pagination.
34653 items • Page 441 / 694

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
How can I just declare an array without specifying a size? 1. create a VS C++ Pr
How can I just declare an array without specifying a size? 1. create a VS C++ Project, according to the steps in Appendix A in the textbook. Call the project "Sales_Bar_Chart". 2.…
How can I keep the Home tab selected in Excel 2010? With Excel 2010, in order to
How can I keep the Home tab selected in Excel 2010? With Excel 2010, in order to format cells, I must first select the cells, then select the Home tab to access the format tools. …
How can I keep the Home tab selected in Excel 2010? With Excel 2010, in order to
How can I keep the Home tab selected in Excel 2010? With Excel 2010, in order to format cells, I must first select the cells, then select the Home tab to access the format tools. …
How can I load my file successfully with Load Data Local File on mysql workbench
How can I load my file successfully with Load Data Local File on mysql workbench, I keep getting an error. Error # 2 3e MySQL Workbench Local instance 3306 File Edit View Query Da…
How can I make 1 class (base, generic or something else) from these two classes?
How can I make 1 class (base, generic or something else) from these two classes? class A { A Link { get; set; } } class B { B Link { get; set; } } UPD: This is what I have now: cl…
How can I make a dynamic top navigation bar that gets populated with AJAX from a
How can I make a dynamic top navigation bar that gets populated with AJAX from a SharePoint List. (Not using PHP or Sql database) Example: I create a list in SharePoint 365 Test1 …
How can I make a method to fit this criteria? sort the list using insertion into
How can I make a method to fit this criteria? sort the list using insertion into an initially empty list. Do not insert duplicate words. PLEASE DO NOT ANSWER WITH ANYTHING THAT DO…
How can I make it read the counts of 0\'s -9\'s from an index of100 generating b
How can I make it read the counts of 0's -9's from an index of100 generating between 0-9? public class CountNumber { public static void main(String[] args) { // declare an integer…
How can I make my program to read from file and export the result in another fil
How can I make my program to read from file and export the result in another file? #include <stdio.h> #include <string.h> #include <time.h> #include <ctype.h&…
How can I make the numbers in this code right adjusted? a = 4 ; b = 4 ; c = 1 ;
How can I make the numbers in this code right adjusted? a = 4 ; b = 4 ; c = 1 ; x = 2 ; Root = (-1*b + Math.sqrt( Math.pow(b,2) - 4*a*c)/ 2*a ); CoefficientOfXSquared = (-(b*x+c)/…
How can I make the numbers that I print right justified? Please provide an expla
How can I make the numbers that I print right justified? Please provide an explanation. import java.util.Scanner; public class JKansas { static Scanner sc = new Scanner(System.in …
How can I make the third case a binary search and not a linear search still? I n
How can I make the third case a binary search and not a linear search still? I need help figuring out how to do a binary target value search with my output files that were created…
How can I make the word which is a string the user inputs into an array right no
How can I make the word which is a string the user inputs into an array right now I am getting an error that size of word cannot be determined but if i changed the variable to "Mo…
How can I make the word which is a string the user inputs into an array right no
How can I make the word which is a string the user inputs into an array right now I am getting an error that size of word cannot be determined but if i changed the variable to "Mo…
How can I make these two separate for loops into one nested for loop? When I try
How can I make these two separate for loops into one nested for loop? When I try, I keep getting dimesion error? clc, clear A = [1:11; 2:12; 3:13; 4:14; 5:15; 6:16; 7:17 ] [M N] =…
How can I make this code look like the assignment requirements? I need the progr
How can I make this code look like the assignment requirements? I need the program to prompt the user for an input file and output file name. Create variables with meaningful name…
How can I make this generate 100 random integers between 0-9and and display the
How can I make this generate 100 random integers between 0-9and and display the count for each? (My prof says use an array often integers, say counts, to store the counts for the …
How can I make this graph that extends through the Y axis given these points: (6
How can I make this graph that extends through the Y axis given these points: (6, 124.86) (94,148.1) and (6,85.92) (93,148.1) and what is the value of the absolute zero of both li…
How can I make this write and read into the read only textbox, textbox 6? Also h
How can I make this write and read into the read only textbox, textbox 6? Also how can I make it have a debugging log file? Form1.cs using System; using System.Collections.Generic…
How can I modify my code so that ,when the input is not a integer, display \"Inv
How can I modify my code so that ,when the input is not a integer, display "Invalid input, try again", and when the input is not in the range of 1~100, display "Guess out of bound…
How can I modify my program to use dynamic array in which theprogram asks how ma
How can I modify my program to use dynamic array in which theprogram asks how many rows the plane has, and will handle that manyrows instead of assuming that the plane has 7 rows …
How can I modify the following Linked List code to become a Circular Doubly Link
How can I modify the following Linked List code to become a Circular Doubly Linked List? public class LinkedList {     public Node head;         public LinkedList()     {         …
How can I modify the following MATLAB code to solve the problem on the picture?
How can I modify the following MATLAB code to solve the problem on the picture? clc; clear; close all; %Definitions: tmin=0; tmax=8; stepSize=1e-3; %Create time vector: t=tmin:ste…
How can I modify the following MATLAB code to solve the problem on the picture?
How can I modify the following MATLAB code to solve the problem on the picture? clc; clear; close all; %Definitions: tmin=0; tmax=8; stepSize=1e-3; %Create time vector: t=tmin:ste…
How can I modify the following code using GUI, for example adding JButton, JFram
How can I modify the following code using GUI, for example adding JButton, JFrame, JLabel or other examples that can be used to create a GUI. Here is the code: //VirtualATM.java i…
How can I modify the inOrder method in order to make it work for any class type,
How can I modify the inOrder method in order to make it work for any class type, for Example Staff. You need to use WriteOutput to print out an object of type Staff. This is my in…
How can I modify this code so I can get something like 01:05:879890 instead of g
How can I modify this code so I can get something like 01:05:879890 instead of getting 00:65:879890. It cannot get my minutes working, is only doing it in seconds. #include int16 …
How can I modify this code so that it doesn\'t show variable values for 0\'s. Fo
How can I modify this code so that it doesn't show variable values for 0's. For example, Amount due is $101.27, amount paid is $150. Change is $48.73. Currently my output for this…
How can I pass the variables exported to the second middleware (pass elements an
How can I pass the variables exported to the second middleware (pass elements and data_fsq from 1.js to 2.js)? how can I callback the elements and data_fsq when they receive the d…
How can I personalize the way my calculator will look like on theapplet screen?
How can I personalize the way my calculator will look like on theapplet screen? Can I add colors, change font, etc.?
How can I plot the functions Sin Cos and Tan in the same axis in Mathlab? this i
How can I plot the functions Sin Cos and Tan in the same axis in Mathlab? this is what the instruction says: Issue the figure(1) command, and then plot sin, cos, and tan on the sa…
How can I prepare for an introductory CS college course? I am currently in Grade
How can I prepare for an introductory CS college course? I am currently in Grade 12 and next year I will be studying Computer Science at a university in South Africa (syllabus is …
How can I prevent users from inputting alphabetic characters? For example, if th
How can I prevent users from inputting alphabetic characters? For example, if they inputting "a", it will print out "Invaild input, please enter again" Below is my codes *********…
How can I produce the graph below in Python? (I plotted in excel from a csv file
How can I produce the graph below in Python? (I plotted in excel from a csv file.) Below are the 1st 10 entries for the csv file. The first column is time, the others are independ…
How can I push my student object onto my stack? My student class has different d
How can I push my student object onto my stack? My student class has different data types (string,int,string,int) for a student record. There are 15 student records in an array an…
How can I put multiple rows of lines into a single row in Python. For example if
How can I put multiple rows of lines into a single row in Python. For example if I have lets say a list of 50 references and eah reference had at least 4 rows of lines, how can I …
How can I put the class definisions in a separate header file. I\'ve been stuck
How can I put the class definisions in a separate header file. I've been stuck on this for a while. Complete code below: // Header #pragma once #include <iostream> using nam…
How can I raise a matrix to the nth power in C? Here is what I have so far. wher
How can I raise a matrix to the nth power in C? Here is what I have so far. where: dim = dimensions of the matrix powernum = the power the matrix is being raised to. matrix = the …
How can I read 1 line of words ( string ) into individual words and compare them
How can I read 1 line of words ( string ) into individual words and compare them to another word? (C++, without array and vector and .find) for example, I have 2 files : 1- senten…
How can I reduce this 15 lines or less in the main code? #include #in
How can I reduce this 15 lines or less in the main code? #include <iostream> #include <cmath> using std::cin; using std::cout; using std::endl; double func_1(double); …
How can I replace arrays that are not in the main fucntion with pointers. Arrays
How can I replace arrays that are not in the main fucntion with pointers. Arrays can only be used in the main function #include<stdio.h> #define N 10//n is defined as 10 voi…
How can I replace commas with a line feed in a single cell? I am building an imp
How can I replace commas with a line feed in a single cell? I am building an import spreadsheet to go into a particular database. The database vendor has a very specific format th…
How can I return the second highest value in an array? (C Programming) This is t
How can I return the second highest value in an array? (C Programming) This is the input. Column one is the "category", two is the "id", and three is the "scores" for example, if …
How can I run all as one source code? import java.io.IOException; import org.apa
How can I run all as one source code? import java.io.IOException; import org.apache.hadoop.io.IntWritable; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.Te…
How can I run below 2 java file and output the .txt file on the java import java
How can I run below 2 java file and output the .txt file on the java import java.io.*; public class SmallAreaIncomePovertyReport {     // creates a Console instance used to print …
How can I save all the output in txt file? My program needs to automatically loa
How can I save all the output in txt file? My program needs to automatically load data at the beginning and save data back to the file at the end. Please don't prompt user for dat…
How can I say more than just \"C++\" on my resume, reports or other writings, to
How can I say more than just "C++" on my resume, reports or other writings, to convey clearly what kind of C++ programming I've been doing? Are there well-defined styles of C++? (…
How can I search a Java ArrayList for an already existing customer ID? I am not
How can I search a Java ArrayList for an already existing customer ID? I am not supposed to know if the customer ID has already been entered. I am to enter in the customer ID when…
How can I separate these automatically . I have a list about 3000 rows long that
How can I separate these automatically . I have a list about 3000 rows long that have a listing of Day, Night, Evening and Morning. How can I separate the rows to go in Column B a…
How can I set the maximum and minimum depth of a mouse click? Right now, when I
How can I set the maximum and minimum depth of a mouse click? Right now, when I right click, it goes up 10 feet, but it also goes past zero which shows a negative number. I want i…