Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 1407 / 1624
Create a function using VBA to calculate a students score and letter grade. Use
Create a function using VBA to calculate a students score and letter grade. Use the command button to call the function for arguments: 1) assignments, 2) Midterm 1, 3) Midterm 2 t…
Create a function with the header: function [Y] = myinterpfunction(x,y,X,method)
Create a function with the header: function [Y] = myinterpfunction(x,y,X,method) Where x and y are column vectors containing experimental data points, and X is an array. Assume th…
Create a function “find_file” that accepts a full directory path parameter (i.e.
Create a function “find_file” that accepts a full directory path parameter (i.e., C:Userscs401DesktopDocs) and a file name parameter (i.e., MyFile.txt) that recursively searches a…
Create a function “find_file” that accepts a full directory path parameter (i.e.
Create a function “find_file” that accepts a full directory path parameter (i.e., C:Userscs401DesktopDocs) and a file name parameter (i.e., MyFile.txt) that recursively searches a…
Create a function “find_file” that accepts a full directory path parameter (i.e.
Create a function “find_file” that accepts a full directory path parameter (i.e., C:Userscs401DesktopDocs) and a file name parameter (i.e., MyFile.txt) that recursively searches a…
Create a function “my_factorial” that takes in an input argument ‘n’ and returns
Create a function “my_factorial” that takes in an input argument ‘n’ and returns the factorial of a given number. Factorial of a given integer is the product of the integer and al…
Create a function, called spin, in the head section that takes no parameters but
Create a function, called spin, in the head section that takes no parameters but returns a random number between 0 and 6 inclusive. Call this function three times and assign it to…
Create a function, getMetaData(), the get the data from a file named data.in. Th
Create a function, getMetaData(), the get the data from a file named data.in. The data, we have (in this order) A,B, and C. If we use a 1 to mean the data set is present and a 0 t…
Create a function, myProd(), that takes two arguments, x and y, and multiplies t
Create a function, myProd(), that takes two arguments, x and y, and multiplies the two arguments together then adds 14 to the result. Finally, divide the sum by two and return as …
Create a game in Java that players guess a number between 1 and 1000. Have the a
Create a game in Java that players guess a number between 1 and 1000. Have the application display a message indicating whether the player's guess was correct, too high, or too lo…
Create a game like flappy bird or pacman using java that uses two concepts and m
Create a game like flappy bird or pacman using java that uses two concepts and must use images with two classes In Project 3 you will work in teams of 2-3 to develop your own proj…
Create a game of Rock, Paper, Scissors in which the users is playing against the
Create a game of Rock, Paper, Scissors in which the users is playing against the computer. The user has the option to create an account and log-in before playing. If a user is log…
Create a game of Rock, Paper, Scissors using random import, a while loop, and a
Create a game of Rock, Paper, Scissors using random import, a while loop, and a series of if statements. The user should input either “rock”, “paper”, or “scissors”- and the outpu…
Create a game of video poker with a graphical user interface (GUI). The player s
Create a game of video poker with a graphical user interface (GUI). The player should start with $100, and then the system deals out 5 playing cards. After the player sees the car…
Create a game similar to Feud Family Feud. Build a game board that shows the que
Create a game similar to Feud Family Feud. Build a game board that shows the question that was asked of an audience. Have the user guess at a possible answer. Indicate whether the…
Create a game similar to Hangman named GuessAWord in which a player guesses lett
Create a game similar to Hangman named GuessAWord in which a player guesses letters to try to replicate a hidden word. Store at least eight words in an array, and randomly select …
Create a game that consists of a 2 dimensional grid of randomly generated spaces
Create a game that consists of a 2 dimensional grid of randomly generated spaces and obstacles. Have the player start on the left of the game-board and have to move their way to t…
Create a game where Python uses the randrange() function to generate a number be
Create a game where Python uses the randrange() function to generate a number between 1 and 100. Set up a loop to ask the user to guess the number. Your response after each guess …
Create a game where a player and an enemy battle each other. Each has a certain
Create a game where a player and an enemy battle each other. Each has a certain amount of health, which decreases when they are attacked. The battle ends when either the player or…
Create a game where a the user and the computer compete to build the biggest san
Create a game where a the user and the computer compete to build the biggest sandcastle. The game is played in turns. Each turn, the user and the computer decide which tool they w…
Create a game where players convert hexadecimal numbers to decimal ones. a. Disp
Create a game where players convert hexadecimal numbers to decimal ones. a. Display a random hexadecimal value from 00 to ff. b. Player enters decimal equivalent, input is checked…
Create a gameshop database using the diagram below. Implement the GameShop datab
Create a gameshop database using the diagram below. Implement the GameShop database, include all DDL commands. (To create a new database named GameShop you use the command: CREATE…
Create a general journal January 1st Common stock is issued in exchange for cash
Create a general journal January 1st Common stock is issued in exchange for cash in the amount of ………….………….……………………… 295,000 February 8th The company purchases and pays for 160 u…
Create a general journel entry using the following information: During January 2
Create a general journel entry using the following information: During January 2018, the following transactions occur: January 2 Purchase rental space for one year in advance, $6,…
Create a generic bubble sort method. Refer to the pseudo code below for a descri
Create a generic bubble sort method. Refer to the pseudo code below for a description of the sorting algorithm. Your method must be able to sort an array of any type of objects th…
Create a generic class called LinkedList. LinkedList will use nodes that store a
Create a generic class called LinkedList. LinkedList will use nodes that store a value of the generic type to store its contents. The linked list should be doubly-linked and circu…
Create a generic class that implements the interface with the methods directions
Create a generic class that implements the interface with the methods directions given: -------------------------------------------------------------------------------------------…
Create a generic class, MyQueue, with a public Stack fields s1 and s2. Add metho
Create a generic class, MyQueue, with a public Stack fields s1 and s2. Add methods for enqueue, dequeue, and isEmpty. Create a default constructor that initializes the empty stack…
Create a generic class, madLabClass • The class will have 2 fields o One is an i
Create a generic class, madLabClass • The class will have 2 fields o One is an integer for an index o The second is an array of the generic class type • A constructor for the clas…
Create a generic class, madLabClass • The class will have 2 fields o One is an i
Create a generic class, madLabClass • The class will have 2 fields o One is an integer for an index o The second is an array of the generic class type • A constructor for the clas…
Create a generic doubly linked list class using an internal node class: LinkedLi
Create a generic doubly linked list class using an internal node class: LinkedListUM<T> and NodeUM<T> Include these Methods for LinkedListUM<T>: - void insertHea…
Create a generic doubly linked list class using an internal node class: LinkedLi
Create a generic doubly linked list class using an internal node class: LinkedListUM<T> and NodeUM<T> Include these Methods for LinkedListUM<T>: - void insertHea…
Create a genetic mapping homework problem. In the problem you create, the studen
Create a genetic mapping homework problem. In the problem you create, the student is given the results of a testcross involving two of the genes on the map attached and is asked t…
Create a global warming poster. The poster should have anintroduction, current s
Create a global warming poster. The poster should have anintroduction, current situation with a graph that shows pictures and graph, future prediction, prevention of global warmin…
Create a goal model diagram for the patient-monitoring system below and perform
Create a goal model diagram for the patient-monitoring system below and perform obstacle analysis to complete your goal model towards a more robust system. Each patient in an emer…
Create a graphical Swing implementation of Tic Tac Toe. Your layout should have
Create a graphical Swing implementation of Tic Tac Toe. Your layout should have a JFrame with the Tic Tac Toe title, a label at the top of the content pane that gives status (X to…
Create a graphical calculator with buttons that can add, subtract, multiply, div
Create a graphical calculator with buttons that can add, subtract, multiply, divide, +/-, Sin, Cos, Tan, clear and Modulus. Write a method for each of these calculations that will…
Create a graphical database for a library. It should display the information of
Create a graphical database for a library. It should display the information of every book in the library system. Each book should have the following information: Name Author(s) Y…
Create a graphical user interface (GUI) for control and display of the Sierpinsk
Create a graphical user interface (GUI) for control and display of the Sierpinski fractal Use the graphical user interface development environment (guide) to create a graphical us…
Create a graphical user interface program named MoodButtonDemo that will be run
Create a graphical user interface program named MoodButtonDemo that will be run as a regular Java application (meaning it contains a main method). Inside the main method, you will…
Create a graphical user interface that allows the user to define a row vector x
Create a graphical user interface that allows the user to define a row vector x = [xmin:xstep:xmax], by entering the values of xmin, xstep and xmax. It also should be possible to …
Create a graphical user interface that allows the users to enter personal inform
Create a graphical user interface that allows the users to enter personal information such as their names, e-mail addresses, and phone numbers. Include a menu that provides a mini…
Create a graphical user interface that is suitable for use with the program you
Create a graphical user interface that is suitable for use with the program you wrote for below program. Your interface should reflect both the information you need to prompt for …
Create a graphical user interface that is suitable for use with the program you
Create a graphical user interface that is suitable for use with the program you wrote for below program. Your interface should reflect both the information you need to prompt for …
Create a guessing game called \"Does It Have Legs?\" in which you think of an an
Create a guessing game called "Does It Have Legs?" in which you think of an animal and the computer tries to guess what it is. The game continually becomes "smarter" as you play b…
Create a guessing game called \"Does It Have Legs?\", in which you think of an a
Create a guessing game called "Does It Have Legs?", in which you think of an animal and the computer tries to guess what it is. The game continually becomes "smarter" as you play …
Create a guessing game called “Does It Have Legs?”, in which you think of an ani
Create a guessing game called “Does It Have Legs?”, in which you think of an animal and the computer tries to guess what it is. The game continually becomes “smarter” as you play …
Create a guessing game that will run until the user guesses the correct number.
Create a guessing game that will run until the user guesses the correct number. (1) Present brief instructions for the user, (2) generate one random number between 1 and 10, inclu…
Create a hand trace of the following program, using the format and method as sho
Create a hand trace of the following program, using the format and method as shown in class. Do this in a word processing program and upload it in PDF format. Assume the user ente…
Create a handout to inform college students the strategies you are learning abou
Create a handout to inform college students the strategies you are learning about this week. Ensure you include answers to the following in 50 to 175 words: • What are some noteta…