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

1.Consider the following Java declarations and assignment statements. byte num1;
1.Consider the following Java declarations and assignment statements. byte num1; short num2; num1 = <some unknown value>; num2 = num1; In the first assignment statement, som…
1.Consider the following code snippet: int numAxles = 4; String s = \"Number of
1.Consider the following code snippet: int numAxles = 4; String s = "Number of axles is " + numAxles; Which of the following statements is correct? Answer a. The toString() method…
1.Consider the following program written in C syntax: void fun ( int first, int
1.Consider the following program written in C syntax: void fun (int first, int second) { first += first; second += second; } void main() { int list[2] = {1, 3}; fun(list[0], list[…
1.Consider the following relational data: Products: pid Name Price Description -
1.Consider the following relational data: Products: pid                   Name             Price               Description --------------------------------------------------------…
1.Consider the following threats to Web security, and describe how each is count
1.Consider the following threats to Web security, and describe how each is countered by a particular feature of SSL. a.Brute-Force Cryptanalytic Attack: An exhaustive search of th…
1.Consider the following three variants of minimax: the simple version, alpha-be
1.Consider the following three variants of minimax: the simple version, alpha-beta search, and depth-limited search, and consider the games of tic-tac-toe and chess. For each comb…
1.Consider two binary search trees A and B. BST A has m nodes, and BST B has n n
1.Consider two binary search trees A and B. BST A has m nodes, and BST B has n nodes. Assume m is much greater than n. We wish to find the intersection of values from the two tree…
1.Convert 1NF to 2NF a. Rule1 - be in 1NF b. Rule 2- Single Column Primary Key A
1.Convert 1NF to 2NF a. Rule1 - be in 1NF b. Rule 2- Single Column Primary Key Assignment: A video library maintains a database of movies rented out. Without any normalization, al…
1.Convert the following binary representation to its equivalent base 10 notation
1.Convert the following binary representation to its equivalent base 10 notation 010001 19 17 18 20 2.In a 2's complement system what decimal value is represented by 1111 ? 15 -1 …
1.Convert the following pseudo code into Java code using nested for loops. set x
1.Convert the following pseudo code into Java code using nested for loops. set x to 2 while x <= 3 set y to 1 while y <= 3 print x increment y newline increment x 2. Assume …
1.Create a Java program to implement the salary and tax paying methods and main
1.Create a Java program to implement the salary and tax paying methods and main method should implement objects (if needed). There should be minimum four methods and return type i…
1.Create a SQL query that shows the first_name, last_name, hire_date, and the nu
1.Create a SQL query that shows the first_name, last_name, hire_date, and the number of days that the employee has worked from the EMPLOYEES table. Use the concatenation operator …
1.Create a class called Date212 to represent a date. It will store the year, mon
1.Create a class called Date212 to represent a date. It will store the year, month and day as integers (not as a String), so you will need three private instance variables. The co…
1.Create a class called Date212 to represent a date. It will store the year, mon
1.Create a class called Date212 to represent a date. It will store the year, month and day as integers (not as a String), so you will need three private instance variables. The co…
1.Create a class called FileTest. Create a method called createFile that prompts
1.Create a class called FileTest. Create a method called createFile that prompts the user to enter a filename and then allows the user to type any number of characters and save th…
1.Create a class called Lab6 with one private field called lab that is a primiti
1.Create a class called Lab6 with one private field called lab that is a primitive array of 100 integers. 2.Create a constructor that populates the primitive array lab with even n…
1.Create a class called Lab6 with one private field called lab that is a primiti
1.Create a class called Lab6 with one private field called lab that is a primitive array of 100 integers. 2.Create a constructor that populates the primitive array lab with even n…
1.Create a class called Lab6 with one private field called lab that is a primiti
1.Create a class called Lab6 with one private field called lab that is a primitive array of 100 integers. 2.Create a constructor that populates the primitive array lab with even n…
1.Create a class named Square that contains only two data fields that contain th
1.Create a class named Square that contains only two data fields that contain the height and width . You must declare these fields as ‘private’. 2.The constructor should take para…
1.Create a directory ~/UnixCourse/makeAsst . Within that directory, create a pai
1.Create a directory ~/UnixCourse/makeAsst. Within that directory, create a pair of subdirectories, project1 and project2 Copy the .h and .cpp files from your earlier “Compilation…
1.Create a new Microsoft Word document and write your full name at the top of th
1.Create a new Microsoft Word document and write your full name at the top of the document. 2.Log into your Teradata account and write and run an SQL statement for the problem des…
1.Create a new view name as LEFTVIEW get the column, EMPLOYEE_ID, LASTNAME conca
1.Create a new view name as LEFTVIEW get the column, EMPLOYEE_ID, LASTNAME concatenated to FIRSTNAME (with ‘,’ in between) rename the column as “NAME”, DEPARTMENT_ID (either from …
1.Create a procedure that converts miles to kilometers. Allow the user to choose
1.Create a procedure that converts miles to kilometers. Allow the user to choose which way to convert: miles to kilometers or kilometers to miles. Have the user input the amount i…
1.Create a program (name of the program is ans2), that will display a name,a cou
1.Create a program (name of the program is ans2), that will display a name,a course name, and a date . Each 'string' should first be placed i.nto a variable before it is displayed…
1.Create a stored procedure named spWhichTable that accepts a column name and re
1.Create a stored procedure named spWhichTable that accepts a column name and returns the name of the table or tables that have a column by that name. Code a statement that calls …
1.Create a stored procedure named spWhichTable that accepts a column name and re
1.Create a stored procedure named spWhichTable that accepts a column name and returns the name of the table or tables that have a column by that name. Code a statement that calls …
1.Create a table called “tblActor”. The tblActor should have the following field
1.Create a table called “tblActor”. The tblActor should have the following fields (name, description, dob, country, image).Populate the table “tblActor” with information about you…
1.Create a table that demonstrates the required constraint (i.e., not null).Crea
1.Create a table that demonstrates the required constraint (i.e., not null).Create several INSERT statements that test this constraint (i.e., at least one record passes and one fa…
1.Create a view that includes all of the fields from tblCompanies and tblContact
1.Create a view that includes all of the fields from tblCompanies and tblContacts. 2.Using the view created in #1, provide the top 5 rows. 3.Go back and make 2 comments in #1. 4.U…
1.Create a view that includes all of the fields from tblCompanies and tblContact
1.Create a view that includes all of the fields from tblCompanies and tblContacts. 2.Using the view created in #1, provide the top 5 rows. 3.Go back and make 2 comments in #1. 4.U…
1.Create a webpage that, when visited, displays a propt asking for the user\'s n
1.Create a webpage that, when visited, displays a propt asking for the user's name. If they don't input a name, keep asking for one. I a second prompt, ask for the user's age. If …
1.Create an ER Diagram to show the entities, associations, and cardinalities for
1.Create an ER Diagram to show the entities, associations, and cardinalities for the following requirements: An INVOICE is written by a SALESREP. Each sales representative can wri…
1.Create an object called person with name = John, age = 50.Then, access the obj
1.Create an object called person with name = John, age = 50.Then, access the object to display "John is 50 years old”. I have written some code here. Hint: Create an object with t…
1.Create one XML data file and one DTD file for the entire data set below [Use o
1.Create one XML data file and one DTD file for the entire data set below [Use of ID and IDREF are not required.] Data to be used for this assignment Employee Name street city gen…
1.Creates the following folder structure on the C:\\ drive of your computer: Scr
1.Creates the following folder structure on the C: drive of your computer: Scripts_New Networking User Management In this script the Networking, User , and Management folders shou…
1.Declare a student structure that contains : - Student\'s first and last name -
1.Declare a student structure that contains : - Student's first and last name -Student ID 2. Create the following functions: -getStudentInfo(void) Declares a single student, uses …
1.Declare and create a String array , named stringArray , of length 100 , such t
1.Declare and create a String array , named stringArray, of length 100 , such that its elements contain the userids of students. Obtain the userids from the user , one by one, and…
1.Declaring a variable is the same as initializing a variable. true false ------
1.Declaring a variable is the same as initializing a variable. true false --------------------------------------------------------------------- 2.An object name that is followed b…
1.Define a Boolean predicate for each of the following statements: Tom\'s truck
1.Define a Boolean predicate for each of the following statements: Tom's truck is red John's house is yellow Mary's car is blue 2.Declare a Java boolean variable for each of the B…
1.Define the following for a disk system: ts = seek time; average time to positi
1.Define the following for a disk system: ts = seek time; average time to position head over track r = rotation speed of the disk, in revolutions per second n = number of bits per…
1.Define the following terms with simple PHP snippet codes. You don’t have to wr
1.Define the following terms with simple PHP snippet codes. You don’t have to write the entire code and compile, but the code should use correct syntax. (For example, don’t leave …
1.Define the simulation parameters 2.Initialize the simulation: A.Particle locat
1.Define the simulation parameters 2.Initialize the simulation: A.Particle locations: place NxN particles randomly on a two dimensional plane. E.g., determine the (x0, y0) coordin…
1.Describe the different phases of an application development cycle. 2.Explain h
1.Describe the different phases of an application development cycle. 2.Explain how a program goes from source code to execution code.
1.Describe what is the Machine Learning , and what is the difference between Mac
1.Describe what is the Machine Learning , and what is the difference between Machine Learning and Data mining. Provide a real world example of machine learning in action, and expl…
1.Design a JAVA TEXTPAD program with a class named Payroll that contains the fol
1.Design a JAVA TEXTPAD program with a class named Payroll that contains the following data fields, constructor and methods. 2.The data fields:    A private String data field name…
1.Design a JAVA TEXTPAD program with a class named Payroll that contains the fol
1.Design a JAVA TEXTPAD program with a class named Payroll that contains the following data fields, constructor and methods. 2.The data fields:    A private String data field name…
1.Discover ambiguities or omissions in the following statement of requirements f
1.Discover ambiguities or omissions in the following statement of requirements for part of a ticket-issuing system: An automated ticket-issuing system sells rail tickets. Users se…
1.Do research online to identify several companies that have implemented an ente
1.Do research online to identify several companies that have implemented an enterprise system in the last few years. Classify the implementation as a success, partial success, or …
1.Document and code Stack hierarchy including all 3 ADT levels and relevant clas
1.Document and code Stack hierarchy including all 3 ADT levels and relevant classes described in Chapter 3 text, diagrams and source code. 2.Create3 new methods for StackInterface…
1.Does the popular press accurately depict commercial and military espionage? 2.
1.Does the popular press accurately depict commercial and military espionage? 2.Compare consumer cyber risk with the primary cyber risks of commercial enterprises. 3. The key diff…