__________________ An alternative to the insanity defense; permits finding that defendants were mentally ill but not insane at the time they committed the crimes charged. They are guilty, and they may be punished, but generally the jurisdictions that have this concept require that these defendants must receive psychiatric treatment while they are confined.
__________________ A state of mind that negates a defendant's responsibility for his or her actions.
__________________ Provides that persons cannot be held accountable for a criminal act if they have a mental disease or defect that results in their inability either to appreciate the fact that the act is wrong or to conform their conduct to the law.
__________________ One who commits a trespass.
__________________ A defense stating that a defendant would not have committed a criminal act if he or she had possessed accurate knowledge of the law or the facts.
__________________ In criminal law, a condition in which an individual is coerced or induced by the wrongful act of another to commit a criminal act. May be used as a defense.
__________________ Condition in which an act, though criminal in other circumstances, may not be considered criminal because of the compelling force of the circumstances.
__________________ Evidence showing that, on the whole, it supports the fact in question. This burden of proof in a civil case is less than the criminal standard of beyond a reasonable doubt.
__________________ An assumption of a fact based on other facts.
__________________ A presumption that may be refuted by evidence.
__________________ A test for insanity stating that an accused cannot be found guilty for a criminal act if he or she is unable to control the actions leading to a crime even though the accused may have known the act was wrong.
__________________ Stress that occurs after forced sex. Now considered a posttraumatic stress disorder. Evidence of the syndrome is permitted in an increasing number of courts.
__________________ A term applied to people who kill someone else, often at that person's request, because of a terminal illness, considerable pain, or a debilitating handicap.
__________________ The condition that exists when a person consumes alcohol or other drugs to the extent that his or her mental or physical abilities are significantly affected.
__________________ Intoxication without choice or will, for example, when someone slips drugs into the food or drink of an unsuspecting person.
5. Consider the predicates: C(x): "x is in the class." M(x): "x is a computer science major." Express each of the following statements using these predicates, quantifiers, and logical connectives, where the universe is the set of all college students. (a) There is a computer science major who is not in the class. (b) At least one computer science major is in the class. (c) Every computer science major is in the class.2. Write a program that uses parallel arrays to keep track of 5 courses. Each course will have a discipline code (like MTH or CS), a course number (use only integers), and a course title (like "Computer Science I"). There should be 5 functions: 1. intro ( ) - instructions about what is coming up 2. void fillCourses( ..... with parameters for the 3 arrays .... ) 3. int courseSearch( .... with parameter for the titles array and for a course title .... ) - the function returns -1 if the course title is not found; otherwise, it returns the element number of the array where the course title was found (There should be a prompt and input in the main() function, where the user enters a course title.) 4. void showCourses( .... with parameters for the 3 arrays ... ) 5. void showOneCourse( ... with parameters for the 3 arrays and for the element number of where the course searched for is found) - displays the discipline and course number of the course searched for. I SAMPLE RUNS:Question 1.1) The main issue in the above mentioned network is 1. The issue in transferring large sized files across the network. 2. Physically it is difficult to add computers to the network, because the ceiling is at too high, so installing cable for the new addition to the network is bit difficult. Question 1.2) is it a peer-peer or client server technology. The technology used here is client server technology, it has a centralized control in the network. Question 1.3) The changes in need in the equipment It is better to use a switch in the network to achieve the centralized control, that using a Ethernet Hub. Because switches will have it own memory with all the hosts in the network, so it will avoid the broadcasting effort before starting the transfer of data. It will communicate precisely with the intend receiver over the network. Question 2) Below are the reasons if a computer in the network is not getting the internet. 1. Basic thing was the cable might not plugged well to the computer. 2. Gateway of the internet was not properly configured. 3. Ethernet drivers are not updated to current version. Question 3.1): Type of cable used. Since the network was defined in star topology it is better to go with "Twisted Palr Fiber" cable. Question 4): Network Address: It is a unique identification for a host that was connected to any kind of network. Host Address: It is the physical address of a computer, popularly called as the mac address. It comes with a range under the network. Subnet Mask: It is a 32 bit identification of a host in the network, used to identify the IP address by doing the AND operation bitwise on the netmask. Name one Network service: Helps to achieve client-server technology across all the computers, provides easy way to communicate host to host.. Filter the data so that you can separate the number of exercise days for female students and the number of exercise days for male students. (There is nothing to submit for this part.) . Use Excel to compute the summary statistics for each sample. Since you will use these values in calculations. write x and s with four decimals. For this part. submit only the completed table. . Identify whether the two samples are independent or dependent. Provide an explanation. . Use the sample data to construct a 95% condence interval by hand to estimate the mean difference of the exercise days between female students and male students. Show your work. including all calculations. . Check your answer for part d. using the Brock Excel calculator. Submit a screenshot of that sheet. including all input values and output results. Report the 95% condence interval with three decimal places. Interpret this condence interval in the context of the problem. . Does the condence interval suggest there is a difference between the number of days that female MATH 1P98 students exercise and the number of days that male MATH 1P93 students exercise? Explain how you know. If there is a difference. identify which group exercises on more days. on average. The schema of the database is provided below (keys are in bold, field types are omitted): . student (sid, sname, sex, age, year, gpa) . dept(dname, numphds) . prof(pname, dname) course (cno, cname, dname) major (dname, sid) section (dname, cno, sectno, pname) . enroll(sid, grade, dname, cno, sectno) Before you start writing SQL, it is a good idea to take a look at the database and familiarize yourself with its contents. Dataset can be downloaded here: project data.7z If you have problems in extract the zipped file, here are the unzipped dataset files (7 files in total) course.txt dept.txt enroll.txt major.txt prof.txt section.txt student.txt SQL Questions