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 3554 / 3837

c# .net questions if false explain why T/F - Entity Framework is the only way to
c# .net questions if false explain why T/F - Entity Framework is the only way to interact with a database using C# 2. T/F – Entity Framework allows for async access to the databas…
c# .net questions if false explain why T/F - Entity Framework is the only way to
c# .net questions if false explain why T/F - Entity Framework is the only way to interact with a database using C# 2. T/F – Entity Framework allows for async access to the databas…
c# 1- The purpose of a looping statement is to __________________________ reduce
c# 1- The purpose of a looping statement is to __________________________ reduce the time that a program takes to run repeatedly execute a piece of code enable inputs to be stored…
c# This assignment requires that you write, compile and test a program named Inv
c# This assignment requires that you write, compile and test a program named InventoryRecords. This program will make use of a class named InventoryItem that contains the followin…
c# Using visual studio Your task is to create a Die\' class, which will allow fo
c# Using visual studio Your task is to create a Die' class, which will allow for the rolling of a single die, which can have a variable number of sides, and the number of sides is…
c# What is the following C# code segment doing? int n = int.Parse(Console.ReadLi
c# What is the following C# code segment doing?    int n = int.Parse(Console.ReadLine()); do { Console.Write( n%10 ); n = n/10; } while ( n > 0 ); Console.WriteLine(" "); findi…
c# Windows APP Hi! I am developing a windows form application that will perform
c# Windows APP Hi! I am developing a windows form application that will perform as a tool for data analyzation. I have two checkedlistbox's , two datetimepicker's, a data grid vie…
c# Write compile and test a GUI program named NinasCookieSource. At form load, t
c# Write compile and test a GUI program named NinasCookieSource. At form load, the following object properties should be set: • Chocolate Chip cookie radio button Checked property…
c# Write compile and test a program named DemoJobs. The program will instantiate
c# Write compile and test a program named DemoJobs. The program will instantiate three Job objects and demonstrate their methods as described below. 1. The Job class contains four…
c# Write compile and test a program named IntegerStatistics. The programs Main()
c# Write compile and test a program named IntegerStatistics. The programs Main() method will: 1. Declare an array of 10 integers. 2. Call a method to interactively fill the array …
c# coding question you need to create code which insert, Traverse (you only need
c# coding question you need to create code which insert, Traverse (you only need one traversal),Find (note that in the splay tree “Find” puts the found node at the root) FindAndDe…
c# help with these methods for Windows Form... public void SetAngle(float angle)
c# help with these methods for Windows Form... public void SetAngle(float angle){ //This method alters the value of the UpDownNumeric used to control the angle, setting it to the …
c# help with this method i have this... public Game(int numPlayers, int numRound
c# help with this method i have this... public Game(int numPlayers, int numRounds) { if ((numPlayers >=1 && numPlayers <= 8) && (numRounds >= 1 &&…
c# help... Create a RangedInteger class. This class will need to keep track of a
c# help... Create a RangedInteger class. This class will need to keep track of a single value and ensure that it remains between a provided minimum or maximum, which are specified…
c# poker game [B] Let the user replace one of their cards in their hand, and aut
c# poker game [B] Let the user replace one of their cards in their hand, and auto-replace a low card in the computer's hand [C] Recognize if entire hand is all the same suit (a "f…
c# program With this assignment you will start to learn how to write a practical
c# program With this assignment you will start to learn how to write a practical menu driven program that manages a list of data. You will use an array of structs to organize the …
c# queston Rename Program class “FriendDriver” and place the following in the Ma
c# queston Rename Program class “FriendDriver” and place the following in the Main class: class FriendDriver { static void Main(string[] args) { Console.WriteLine("A list of my fr…
c# visual studio This program will be used to order a pizza. The user will make
c# visual studio This program will be used to order a pizza. The user will make selections from the form to specify what kind of pizza she wants. The program will calculate the pr…
c# with Visual Studio Create an interface called IActions Create a public method
c# with Visual Studio Create an interface called IActions Create a public method called Holler - Takes in nothing - Returns a string Create a class called Person Implements the in…
c#, .net questions, if false provide a reason why T/F - Running two threads that
c#, .net questions, if false provide a reason why T/F - Running two threads that do a simple print out of 1-10000 will generate the same results in the same order each time you ru…
c#6 Read in the following data from a text file (has been saved in JSON format )
c#6 Read in the following data from a text file (has been saved in JSON format ) Output the data to the console: [{"Name":"4 Person Tent","SKU":"CA24398","Color":"Blue","Quantity"…
c#6 Read in the following data from a text file (has been saved in JSON format )
c#6 Read in the following data from a text file (has been saved in JSON format ) Output the data to the console: [{"Name":"4 Person Tent","SKU":"CA24398","Color":"Blue","Quantity"…
c#: Hello i need help. How can i use the returned list \"allDates\" as a portion
   c#: Hello i need help. How can i use the returned list "allDates" as a portion of my directory.GetFiles(***********) . The dates are in the names of the files so i wanted use t…
c) (10 marks) Explain the function f_c(n, a[]) where n is a positive integer and
c) (10 marks) Explain the function f_c(n, a[]) where n is a positive integer and a is an array. void f_c1(int i, int j, int a[]); void f_c(int n, int a[n]) { f_c1(0, n-1, a); } vo…
c) (10 pnts) (Lab not required) Search in Metasplot\'t framework for the file th
c) (10 pnts) (Lab not required) Search in Metasplot't framework for the file that perform the payload window/add user open the file and discuss how this exploit is composed, the l…
c) (5 points) Can these two operators be overloaded as member operators? Explain
c) (5 points) Can these two operators be overloaded as member operators? Explain your reason. (2) (5 points) Write a code fragment to (a) declare a Box object using the default co…
c) 10/25: Review the example from class: RollingDice which uses Die. RollingDice
c) 10/25: Review the example from class: RollingDice which uses Die. RollingDice is a driver class whose main method instantiates (i.e. creates) 2 Die objects, then calls the comp…
c) Correcting mistakes immediately and telling the public you have done so. d) A
c) Correcting mistakes immediately and telling the public you have done so. d) All of the above. Save Question 30 (2 points) B The Society of Professional Journalists is clear abo…
c) For (ii), describe the algrorithm, step by step, to output the top k streamed
c) For (ii), describe the algrorithm, step by step, to output the top k streamed movies in genre g in year y. Describe additional data structures, if any, used in this process. An…
c) On a running Linux kernel (version >2.6) at some point the thread_info.preemp
c) On a running Linux kernel (version >2.6) at some point the thread_info.preempt_count field for a kernel task we call A is equal to 2. (Linux kemel synchronization is discuss…
c) On a running Linux kernel (version> 2.6) at some point the thread_info.preemp
c) On a running Linux kernel (version> 2.6) at some point the thread_info.preempt_count field for a kernel task we call A is equal to 2. (Linux kernel synchronization is discus…
c) Suppose you take a size n array (assume that n = 2m), and start dividing the
c) Suppose you take a size n array (assume that n = 2m), and start dividing the array into halves until you have one element in the bottom level. Show that the height of the tree …
c) The figure below depicts the entire memory space of a microprocessor. Each me
c) The figure below depicts the entire memory space of a microprocessor. Each memory address occupies one byte. (12 pts) - What is the size (in bytes, KB, or MB) of the memory spa…
c) What the function f_c(n) do ? where n is a positive integer. Hint : don not i
c) What the function f_c(n) do ? where n is a positive integer. Hint: don not interprete this question as explaining each line of the code, without understanding what the piece of…
c) stresses events that have occurred today or yesterday d) All of the above. Sa
c) stresses events that have occurred today or yesterday d) All of the above. Save Question 29 (2 points) B To the Society of Professional Journalists, seeking and reporting the t…
c) {X->Y, X->W, WY->Z} |= {X->Z} d) {XY->Z, Y->W} |= {XW->Z} e) {X->Z, Y->Z} |=
c) {X->Y, X->W, WY->Z} |= {X->Z} d) {XY->Z, Y->W} |= {XW->Z} e) {X->Z, Y->Z} |= {X->Y} f) {X->Y, XY->Z} |= {X->Z} Question: Prove or disprov…
c)Which is heavier, the hippo or the elephant? d) An unfortunate fish swam into
c)Which is heavier, the hippo or the elephant? d) An unfortunate fish swam into the crocodile pen, please increase its weight by 2 kg. e) The giraffe is annoyingly tall, please re…
c++ #1 1. Write function headers for the following: Point 4 A function named One
c++ #1 1. Write function headers for the following: Point 4 A function named One(), which has two arguments. The first argument should accept an integer number, the second argumen…
c++ #3 c) Multiple Choice: Circle the correct answer Assume that the following f
c++ #3 c) Multiple Choice: Circle the correct answer Assume that the following function header is for a display V alue function void display Value (int value Assume that the follo…
c++ #ifndef NETWORK #define NETWORK struct Node{ int x; int y; string label; Nod
c++ #ifndef NETWORK #define NETWORK struct Node{ int x; int y; string label; Node()=default; Node(int i, int j, string l) : x(i), y(j), label(l) {} ; string to_string () const; bo…
c++ #include #include using namespace std; #define MAX_SIZE 50 // Define maximum
c++ #include #include using namespace std; #define MAX_SIZE    50        // Define maximum length of the queue class Queue {     private:         int head, tail;           // Inde…
c++ (5 pts) Review: Arrays, Structs, Pointers, etc. In this lab, you will create
c++ (5 pts) Review: Arrays, Structs, Pointers, etc. In this lab, you will create a dynamic two dimensional array of structs that contain the multiplication and division table of t…
c++ (Complex Class) #include #include #include #in
c++ (Complex Class) #include <iostream> #include <iomanip> #include <string> #include <algorithm> using namespace std; void stretch2(); class Complex { pri…
c++ (OPTIONAL. Lastname Lab4_p6.cpp.) (Pythagorean Triples) A right triangle can
c++ (OPTIONAL. Lastname Lab4_p6.cpp.) (Pythagorean Triples) A right triangle can have sides that are all integers. The set of three integer values for the sides of a right triangl…
c++ (create cat.cpp) implement your own version of the cat systems program, a st
c++ (create cat.cpp) implement your own version of the cat systems program, a standard Unix utility that reads files sequentially, writing them to standard output. The name is der…
c++ (create cat.cpp) implement your own version of the cat systems program, a st
c++ (create cat.cpp) implement your own version of the cat systems program, a standard Unix utility that reads files sequentially, writing them to standard output. The name is der…
c++ * Be sure to add your name as a cout in the first lines of each program - el
c++ * Be sure to add your name as a cout in the first lines of each program - else 0 credit.        * Add constructors - a default and parameterized constructor to each.        * …
c++ - Create a file of at least 20 student records sorted by student ID. Read st
c++ - Create a file of at least 20 student records sorted by student ID. Read student records into a vector in C++ or Java program. (For Vectorrefer to Chapter 7.11) - Student rec…
c++ - Lab Assignment 8:Due: April 15 Write a program that reads the following in
c++ - Lab Assignment 8:Due: April 15 Write a program that reads the following income amounts from a file named inc.txt (in your z drive in C+t folder). The program should count nu…
c++ - i have multiple float variables that represent the probability of a specif
c++ - i have multiple float variables that represent the probability of a specific outcome occuring. These are all initialized as 0.33 initialy, but i have a function that passes …