Web development and programming
191828 questions • Page 291 / 3837
1.Which of the following statements about representing inheritance relationship
1.Which of the following statements about representing inheritance relationship between two classes in a UML class diagram are true? a.The arrowhead must be a hollow triangle. b. …
1.Which one of the following would NOT be a possible source of risk data? Past a
1.Which one of the following would NOT be a possible source of risk data? Past and Active Audit Findings Past Security Incidents Spending and Project Lists List of Executive Manag…
1.Which term below defines the identification and assessment of levels of risk w
1.Which term below defines the identification and assessment of levels of risk within an organization? A) Risk assessment B) Risk management C) Risk analysis D) Risk identificatio…
1.Which term below defines the identification and assessment of levels of risk w
1.Which term below defines the identification and assessment of levels of risk within an organization? A) Risk assessment B) Risk management C) Risk analysis D) Risk identificatio…
1.Which term below defines the identification and assessment of levels of risk w
1.Which term below defines the identification and assessment of levels of risk within an organization? A) Risk assessment B) Risk management C) Risk analysis D) Risk identificatio…
1.Which term below describes the point in time, prior to a disruption or outage,
1.Which term below describes the point in time, prior to a disruption or outage, to which mission / business process data can be recovered? A) Recovery Point Objective (RPO) B) Re…
1.Which type of webpages will automatically adjust the size of the content to di
1.Which type of webpages will automatically adjust the size of the content to display appropriately relative to the size of the screen of the device on which it is displayed? 2. W…
1.Which would NOT likely be an entity on a car insurance ERD? a.Customer b.Polic
1.Which would NOT likely be an entity on a car insurance ERD? a.Customer b.Policy c.Agent d.Zip code e.Car 2.A data flow diagram: a.Depicts the flow of data through a system b.Use…
1.Why do experts predict that wars will be fought over water in this century? 2.
1.Why do experts predict that wars will be fought over water in this century? 2. In what ways do you think global climate might affect the hydrologic cycle?In what ways might it a…
1.Why do we use access specifiers? a)To ensure that only certain kinds of data g
1.Why do we use access specifiers? a)To ensure that only certain kinds of data get stored. b)Prevent other programmers from using the object. c)Informs other programmers of the in…
1.Why is the data type of an identifier important? What is the difference betwee
1.Why is the data type of an identifier important? What is the difference between a weakly typed (python) and strongly data typed (java) programming language. 2. What i…
1.Why must IEEE 802.11 wireless networks employ collision avoidance instead of s
1.Why must IEEE 802.11 wireless networks employ collision avoidance instead of simply collision detection? 2.Must all MAC addresses employed worldwide by IEEE 802.11 interface car…
1.Why should you useStringBuilder objects instead of String objects in a program
1.Why should you useStringBuilder objects instead of String objects in a program that makes lots of changes to strings? 2.A good program reads a string as input from the user for …
1.Why the hardwired zero register is important in RISC architectures? 2.The, MIP
1.Why the hardwired zero register is important in RISC architectures? 2.The, MIPS, ISA, does not include a negate, instruction. Provide, another ,MIPS assembly instruction that ne…
1.With any low-latency system, long delays may occur within an organization. It
1.With any low-latency system, long delays may occur within an organization. It is essential to avoid these days in order to remain successful in any high competition market.What …
1.With respect to UML: What is a state transition? What is an event? (In 100 wor
1.With respect to UML: What is a state transition? What is an event?(In 100 words) 2. List the different computing architectures (note: not computer architectures – make sure you …
1.With this as your input abcd e f g hij k l and this code char ch1, ch2; cin >>
1.With this as your input abcd e f g hij k l and this code char ch1, ch2; cin >> ch1; cin.ignore(12, ' '); cin >> ch2; What is the value of ch2 ? 2. Given this input 1…
1.Workers at a particular company have won a 7.6% pay increase retroactive for 6
1.Workers at a particular company have won a 7.6% pay increase retroactive for 6 months.Write a program that takes an employee's previous annual salary as input, and outputs the a…
1.Workout the following sorting algorithms for the following array. Clearly show
1.Workout the following sorting algorithms for the following array. Clearly show array and other variables at each step. A={22, 91, 24, 78, 6, 89, , 98, 99} a) Selection sort b) M…
1.Write C++ statements to do the following: a. Declare an array alpha of 15 comp
1.Write C++ statements to do the following: a. Declare an array alpha of 15 components of type int. b. Set the value of the 4th component of the alpha array to three times the val…
1.Write Python code that reads a temperature and prints a message indicating whe
1.Write Python code that reads a temperature and prints a message indicating whether the temperature is above, below, or at the freezing point of water. Input consists (on a singl…
1.Write a C program that take file names as command line arguments. It will read
1.Write a C program that take file names as command line arguments. It will read each named file and write the first 10 lines to standard output. If there are no command line argu…
1.Write a C program that take file names as command line arguments. It will read
1.Write a C program that take file names as command line arguments. It will read each named file and write the first 10 lines to standard output. If there are no command line argu…
1.Write a C++ program making use of a switch statement but without the explicit
1.Write a C++ program making use of a switch statement but without the explicit use of any if statements. The program reads in an integer number from the user and then display acc…
1.Write a GUI program called SwingTemperatureConverter to convert temperature va
1.Write a GUI program called SwingTemperatureConverter to convert temperature values between Celsius and Fahrenheit. User can enter either the Celsius or the Fahrenheit value, in …
1.Write a Java program called Password that handles encrypting and decrypting a
1.Write a Java program called Password that handles encrypting and decrypting a password. 2.The program must perform encryption as follows: a.Ask the user for a password. b.Check …
1.Write a Java program that plays a mathematical game called “Taking Stones” whi
1.Write a Java program that plays a mathematical game called “Taking Stones” which is based on the Chinese game of Tsyan-shiz. In this game, the person who runs your program will …
1.Write a Java program to track how many times the program has been executed. Yo
1.Write a Java program to track how many times the program has been executed. You will store the number (integer) representing the count into a file (count.dat). If the count.dat …
1.Write a SELECT statement that returns one row for each vendor in the Invoices
1.Write a SELECT statement that returns one row for each vendor in the Invoices table that contains these columns: The vendor_id column from Vendor table The sum of the invoice_to…
1.Write a SeLECT statement that returns these columns; The counts of the number
1.Write a SeLECT statement that returns these columns; The counts of the number of orders in the Orders table The sum of the TaxAmount columns in the Ordeers table. --------------…
1.Write a bool function, answerIsYes, that prompts the user to answer a question
1.Write a bool function, answerIsYes, that prompts the user to answer a question. The question is the function’s constant string reference parameter. The parameter’s default value…
1.Write a class For implementing a simple binary search tree capable of storing
1.Write a class For implementing a simple binary search tree capable of storing numbers. The class should have member functions: void insert (double x) bool search(double x) void …
1.Write a class called NumberOfGoals that represents the total number of goals s
1.Write a class called NumberOfGoals that represents the total number of goals scored by a football team. The NumberOfGoals class should contain a single integer as instance data,…
1.Write a class named Car that has the following fields: yearModel. The yearMode
1.Write a class named Car that has the following fields: yearModel. The yearModel field is an int that holds the car’s year model. make. The make field references a String object …
1.Write a class with a static method that accepts a string, displays the number
1.Write a class with a static method that accepts a string, displays the number of characters, and throws an exception if any character in the string is not in the set {'a'..'z', …
1.Write a class with a static method that accepts a string, displays the number
1.Write a class with a static method that accepts a string, displays the number of characters, and throws an exception if any character in the string is not in the set {'a'..'z', …
1.Write a class “Actor” that contains these attributes with the appropriate leve
1.Write a class “Actor” that contains these attributes with the appropriate level of visibility explicitly defined: “Name” which is a String, “numberOfAwards” which is an integer …
1.Write a function called DisplayArea that displays the area of a room when the
1.Write a function called DisplayArea that displays the area of a room when the width and length are passed as arguments. 2.Write a function called CalculateArea that calculates t…
1.Write a function concat vec to input two vectors and return a vector with the
1.Write a function concat vec to input two vectors and return a vector with the “concatenated” elements of the two vectors. vector concat_vec(const vector &vs1, const vector &…
1.Write a function named filterOnMax that takes a queue of integers and an integ
1.Write a function named filterOnMax that takes a queue of integers and an integer value named max as parameters and returns a new queue of integers that contains only the values …
1.Write a function that converts an input of some integer number of nickels into
1.Write a function that converts an input of some integer number of nickels into outputs of integer numbers of dollars, quarters, and nickels. Do not write a main function. Your f…
1.Write a function that simulates tossing a coin. The function will need to gene
1.Write a function that simulates tossing a coin. The function will need to generate a random number and then decide whether to display "HEADS" or "TAILS". The function will…
1.Write a function that takes inputs of quarts and pints (whole numbers), then c
1.Write a function that takes inputs of quarts and pints (whole numbers), then calculates and returns an output of the total number of gallons (a floating-point value). There are …
1.Write a program in java where you prompt the user to choose how many numbers h
1.Write a program in java where you prompt the user to choose how many numbers he/she wants to calculate the average of. When the user provides you with the input, say 5, then pro…
1.Write a program that asks the user to enter two numbers. The program should us
1.Write a program that asks the user to enter two numbers. The program should use the conditional operator/expression to determine which number is the smaller and which is the lar…
1.Write a program that executes the “cat –b –v –t filename” command. Call your e
1.Write a program that executes the “cat –b –v –t filename” command. Call your executable myfork Details: a.The call to your program will be made with the following command myfork…
1.Write a program that plays the game of Mad Libs. 2.Your program must prompt th
1.Write a program that plays the game of Mad Libs. 2.Your program must prompt the user to enter the following information as strings in this order: a. Your first name b. Your inst…
1.Write a program that reads in an array of five integers al5] and passes the ar
1.Write a program that reads in an array of five integers al5] and passes the array to a fiunction largest that returns the value of the largest element in the array. 2.Write a pr…
1.Write a program that takes the radius of a sphere (a floating-point number) as
1.Write a program that takes the radius of a sphere (a floating-point number) as input and outputs the sphere’s diameter, circumference, surface area, and volume. 2.An employee’s …
1.Write a program that uses two structures Name and Student to store the followi
1.Write a program that uses two structures Name and Student to store the following information for multiple students: Create a NAME structure that consists of First Name, Middle I…
Subject
Web development and programming
Use Browse or pick another subject.