Web development and programming
191828 questions • Page 36 / 3837
(1) Create a C server program and a C client program. The client program reads a
(1) Create a C server program and a C client program. The client program reads a line from a text file, converts everything to upper case letters, and send it to the server, using…
(1) Create a City class with the following instance variables and methods: Insta
(1) Create a City class with the following instance variables and methods: Instance variables: name (String), province (String) Methods: constructor, get/set methods for the insta…
(1) Create a table dynamically (20 pts) : The format of the file is similar to J
(1) Create a table dynamically (20 pts): The format of the file is similar to JSON, but it is actually just a JavaScript object. This data is part of a real-world organization dat…
(1) Create a text (data) file containing data for three different employees. In
(1) Create a text (data) file containing data for three different employees. In your main method (of course, in a separate "main module"), do the following: (a) Create three Emplo…
(1) Create a text (data) file containing data for three different employees. Let
(1) Create a text (data) file containing data for three different employees. Let each data item sit on its own line in the text file. (The file will therefore be 18 lines long.) F…
(1) Create a text (data) file containing data for three different employees. Let
(1) Create a text (data) file containing data for three different employees. Let each data item sit on its own line in the text file. (The file will therefore be 18 lines long.) F…
(1) Create two files to submit: ItemToPurchase.java - Class definition ShoppingC
(1) Create two files to submit: ItemToPurchase.java - Class definition ShoppingCartPrinter.java - Contains main() method Build the ItemToPurchase class with the following specific…
(1) Create two files to submit: ItemToPurchase.java - Class definition ShoppingC
(1) Create two files to submit: ItemToPurchase.java - Class definition ShoppingCartPrinter.java - Contains main() method Build the ItemToPurchase class with …
(1) Create two files to submit: ItemToPurchase.java - Class definitionShoppingCa
(1) Create two files to submit: ItemToPurchase.java - Class definitionShoppingCartPrinter.java - Contains main() method Build the ItemToPurchase class with the following specifica…
(1) Create two files: ItemToPurchase.java - Class definition ShoppingCartPrinter
(1) Create two files: ItemToPurchase.java - Class definition ShoppingCartPrinter.java - Contains main() method *NOTE* this is in Java. Please do not use floats or "printf". Build …
(1) Describe a scenario that justifies the requirement to check the return value
(1) Describe a scenario that justifies the requirement to check the return value from fclose(). (2) Describe the four parameters to fread(). (3) Describe the second parameter to f…
(1) Design an HTML form, hw6q1.php, for entering a product record (please refer
(1) Design an HTML form, hw6q1.php, for entering a product record (please refer to the Products table in the Northwind database). The form must contain input types that support th…
(1) Exercise1 Write a program that gets an input line from the user (ends with ‘
(1) Exercise1 Write a program that gets an input line from the user (ends with ‘ ’) and displays the number of times each letter appears in it. Example: For the input line: hello,…
(1) For each assertion below, indicate if it is true (T) or false (F) by circlin
(1) For each assertion below, indicate if it is true (T) or false (F) by circling the correct response. (a) (T, F) The statement, “this statement is false” is a proposition. (b) (…
(1) Generate a data file to save students\' grade. Allow the user toenter id, na
(1) Generate a data file to save students' grade. Allow the user toenter id, name and grade of each student as well as the totalnumber of students. There should be a header in the…
(1) Generate a data file to save students\' grade. Allow the user toenter id, na
(1) Generate a data file to save students' grade. Allow the user toenter id, name and grade of each student as well as the totalnumber of students. There should be a header in the…
(1) Generate a data file to save students\' grades. Allow the user to enter id,
(1) Generate a data file to save students' grades. Allow the user to enter id, name and grade of each student as well as the total number of students. There should be a header as …
(1) Generate a power plant output (random numbers between 500 and 1000 ) in mega
(1) Generate a power plant output (random numbers between 500 and 1000 ) in megawatts over a period of 10 weeks. Each row of data contains 7 floating-point numbers that represent …
(1) Generate a power plant output (random numbers between 500 and 1000 ) in mega
(1) Generate a power plant output (random numbers between 500 and 1000 ) in megawatts over a period of 10 weeks. Each row of data contains 7 floating-point numbers that represent …
(1) Generate a power plant output (random numbers between 500 and 1000 ) in mega
(1) Generate a power plant output (random numbers between 500 and 1000 ) in megawatts over a period of 10 weeks. Each row of data contains 7 floating-point numbers that represent …
(1) Generate a power plant output (random numbers between 500 and 1000 ) in mega
(1) Generate a power plant output (random numbers between 500 and 1000 ) in megawatts over a period of 10 weeks. Each row of data contains 7 floating-point numbers that represent …
(1) Generate a power plant output (random numbers between 500and 1000 ) in megaw
(1) Generate a power plant output (random numbers between 500and 1000 ) in megawatts over a period of 10 weeks. Each row of datacontains 7 floating-point numbers that represent 1 …
(1) Given a complete binary tree with N nodes and each node have a distinct inte
(1) Given a complete binary tree with N nodes and each node have a distinct integer a, attached with it, find the minimum number of swaps you can make to convert the binary tree i…
(1) IF THEN structure Illinois\'s basic speeding law prohibits driving at a spee
(1) IF THEN structure Illinois's basic speeding law prohibits driving at a speed that is "greater than is reasonable and proper with regard to traffic conditions and the use of th…
(1) If a class contains a pointer to dynamically allocated memory, which of the
(1) If a class contains a pointer to dynamically allocated memory, which of the following defaults is likely to be unacceptable? (a) copy constructor (b) destructor (c) operator =…
(1) If you are reading a character, like char someChar , what is the difference
(1) If you are reading a character, like char someChar, what is the difference between cin.get(someChar); and cin >> someChar ? Select one: a. all of the choices (except 'no…
(1) Implement the concepts of a union, and difference as defined noted in Chapte
(1) Implement the concepts of a union, and difference as defined noted in Chapter 1 questions 6, and 8 using a linked list. You should not use arrays, dynamic arrays or the STL ve…
(1) Implementing a stack that uses a dynamically allocated array to represent st
(1) Implementing a stack that uses a dynamically allocated array to represent stack items. In the constructor you allocate an array of certain size (the size can be passed as a va…
(1) In a software life cycle, what is produced just after the design phase? (a)
(1) In a software life cycle, what is produced just after the design phase? (a) coding (b) maintenance (c) specification (d) testing (2) For the linked list implementation of the …
(1) In one short sentence explain what the purpose of the algorithm is. Be as sp
(1) In one short sentence explain what the purpose of the algorithm is. Be as specific as possible by referring to program variables (e.g., P and S, and use simple math notation s…
(1) In the derived class, which data members of the base class are visible? (a)
(1) In the derived class, which data members of the base class are visible? (a) those in the public section only (b) those in the protected section only (c) those in the public or…
(1) In what circumstances will random numbers generated using the Random class (
(1)In what circumstances will random numbers generated using the Random class (e.g., using the nextInt method) appear to be completely non-random? (2)What rules must be adhered to…
(1) Install MySQL in your computer. You may also install xampp instead of just M
(1) Install MySQL in your computer. You may also install xampp instead of just MySQL. Install the 'Big' PVFC database of the textbook in MySQL and call the database 'bigpvfc'. You…
(1) Install MySQL in your computer. You may also install xampp instead of just M
(1) Install MySQL in your computer. You may also install xampp instead of just MySQL. Install the 'Big' PVFC database of the textbook in MySQL and call the database 'bigpvfc'. You…
(1) Install MySQL in your computer. You may also install xampp instead of just M
(1) Install MySQL in your computer. You may also install xampp instead of just MySQL. Install the 'Big' PVFC database of the textbook in MySQL and call the database 'bigpvfc'. You…
(1) Install MySQL in your computer. You may also install xampp instead of just M
(1) Install MySQL in your computer. You may also install xampp instead of just MySQL. Install the 'Big' PVFC database of the textbook in MySQL and call the database 'bigpvfc'. You…
(1) Install MySQL in your computer. You may also install xampp instead of just M
(1) Install MySQL in your computer. You may also install xampp instead of just MySQL. Install the 'Big' PVFC database of the textbook in MySQL and call the database 'bigpvfc'. You…
(1) List all the coaches and their respective total number of coaching hours tha
(1) List all the coaches and their respective total number of coaching hours that are ever booked for. Expecting answere in SQL management Studio, if need to do any changes with t…
(1) Locate the error in the following statement and show how to fix it: try i =
(1) Locate the error in the following statement and show how to fix it: try i = Integer.parseInt (str) ; catch (NumberFormatException e) System.out.println ("Input was not an …
(1) Microsoft switched FAT-16 to FAT-32 in late 90\'s. Why (i.e., what was the m
(1) Microsoft switched FAT-16 to FAT-32 in late 90's. Why (i.e., what was the main reason)? (2) Which of the following real-time process scheduling algorithms can be used for hard…
(1) Modify the above program to ask the user to specify a number of tree trunk l
(1) Modify the above program to ask the user to specify a number of tree trunk levels (“Enter trunk height: “), then use a loop to draw that many levels. Testing suggestion: If th…
(1) Objective: Binary Search Tree traversal (2 points) Use traversal.pptx as gui
(1)Objective: Binary Search Tree traversal (2 points) Use traversal.pptx as guidance to write a program to build a binary search tree Dictionary. I of BST <Key,E> have the s…
(1) Objective: Create java Class to implement Iterable interface (2 points) (a)
(1)Objective: Create java Class to implement Iterable interface (2 points) (a)Write a java class that implements Iterable interface to: (1)Read the input file “CourseForProgram.tx…
(1) Objective: Create java Class to implement Iterable interface (2 points) (a)
(1)Objective: Create java Class to implement Iterable interface (2 points) (a)Write a java class that implements Iterable interface to: (1)Read the input file “CourseForProgram.tx…
(1) Objective: Implement java.util.Comparator to determine the order of arbitrar
(1)Objective: Implement java.util.Comparator to determine the order of arbitrary objects. (1 points) Write a java program to determine the order of two shape objects by comparing …
(1) Objective: Implement java.util.Comparator to determine the order of arbitrar
(1)Objective: Implement java.util.Comparator to determine the order of arbitrary objects. (1 points) Write a java program to determine the order of two shape objects by comparing …
(1) Objective: Manage Dictionaries use Set & Map (2 points) Use java.util.TreeSe
(1)Objective: Manage Dictionaries use Set & Map (2 points) Use java.util.TreeSet; to implement Dictionary data structure to perform verification of an employee for the company…
(1) Pet store The pet store program should start with the user being able to cho
(1) Pet store The pet store program should start with the user being able to choose to adopt a pet or give a pet the to the shop. If the user wants to adopt a pet, they should be …
(1) Please complete the assembly language program to compute: ~ {[10 * 2) & (48
(1) Please complete the assembly language program to compute: ~{[10 * 2) & (48 / 4)] ^ [(10 * 2)] | (48 / 4)]} The symbols are operations defined as below: * : multiplication …
(1) Print the following menu that shows character sequence operations and read t
(1) Print the following menu that shows character sequence operations and read the user's operation choice. Implement the following function to print the menu: int user_menu(void)…
Subject
Web development and programming
Use Browse or pick another subject.