[solved] – Question 74003
Your job in this assignment is to take the First Normal Form table and turn it into Third Normal Form design, complete with primary and foreign keys.
Expert Answer
[solved] – Question 74032
Hello, I’m not sure how to start my assignment and was hoping you could help
Expert Answer
[solved] – Question 74033
Please if you can help me with this.. I would very much appreciate it.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int grade;
int nGrades = 0;
double sum = 0.0;
boolean done = false;
System.out.println(“Enter grades (-1 to quit)”);
while (!done) {
grade = scan.nextInt();
if (grade != -1) {
sum += grade;
nGrades++;
}
else {
done = true;
}
}
double average = sum / nGrades;
System.out.println(“Average grade: ” + average);
}
}
I need to be able to put grades -5 to 20
Use any other number as a sentinel value other than -5 to 20
fix NaN error that comes up if you input -1 and press enter
Expert Answer
[solved] – Question 7405
C++ programing to input for integers.find out the largest value and then print it on the screen by using nested if structur
Expert Answer
[solved] – Question 741
Change this into vb code
function update(class,train) {
‘OUTPUT: changes to the globals.
‘ INPUT: a “train”ing example
‘ containing attribute/
‘ value pairs in some
‘ “class”
I++ ‘ update number of instances
if (++N[class]==1) ‘ update counts for each class
then C++
fi()
for <attr,value> in train
do if (value != “?”)
Expert Answer
[solved] – Question 7429
The initial conditions are y(t = 0) = 2 and dy(t = 0)/dt = 0. The file VdP with the resulting right hand side
has been coded up for the given equation. Solve the equation for t = [0 : 0.01 : 32] using ode45. Is this the right code to solve for y(t)?
y0 = [2; 0];
[t,y1]=ode45(@VdP,[0:0.01:32],y0);
A4 = y1(:,1);
Expert Answer
[solved] – Question 74318
Search the Internet for an article where physical security failed.
Propose and discuss possible changes in that organization’s physical security that could have prevented the breach/failure for that scenario.
Expert Answer
[solved] – Question 74325
Hi, I’m trying to figure out and fix a memory leak problem. So far, I dont have any success. Some help would be good. Do I post the code here or? Thanks in advance for the help. Joe
Expert Answer
[solved] – Question 74391
I have two homework questions in Visual Basic 2017 that I need help with- we are studying ADO.NET with VB and I am stuck. The first question if based off of a database created in Access. The database table is named SouthernStates. It has a total of 11 records. Each row (record) has the State Name, the State Capital, and the Population (in that order). Record/Row 6 is the state of Alabama, in which the capital is Montgomery. The homework question is write a statement that references the capital of Alabama and assign the value to the strCapital variable.
The second question is not related to the database; it’s write a line of code to initialize a String variable named strCafe to a Select SQL statement that would select all the fields from a table named Java.
Expert Answer
[solved] – Question 74421
write a menudriven
program which makes use of the following types of loops as appropriate: while, dowhile,
for, for-each. You need to use each specific loop type at least once in the assignment.
Your program should present the user with the following options
• Option A: Your program must output the following sequence (the number of terms in
the sequence is given by the user): 2, 4, 4, 8, 6, 12, 8, 16, 10, 20, 12, 24, 14, 28, 16,
32, 18, 36, 20, 40, …
• Option B: Your program must allow the user to specify all of the parameters for a
counting sequence by asking the user for the following:
◦ a starting value
◦ a stopping value
◦ a step value
Your program must then display the resulting sequence. For example if the user
enters 0 ,10, and 2 the sequence must be: 0 2 4 6 8 10
• Option C: Your program must count the number of alphabetic characters (both upper
and lower case) in a string input by the user.
• Option X: The program must exit
Expert Answer

