Name the data type,value type and array size / name of the followings.
1) 20.4
2) a=5
3) [2 3 8]
4) ' 7 '
5) ' abc'
6) pi
7) b=true
8) 20+2i
9) [ 'a' 'b' 'c' ]
10) [ 'a' ; 'b' ]
11) [1 2 ;4 5;7 8]
12) [20,21,22,23]
13) c= [a;b]
14) c= [b:a]
15) d=[b:a ; b:a]
16) magic(3)
17 uint8(20)
18) int8(d)
In: Computer Science
Name four types of information bias. Name at least one way in which each type of bias can be prevented or minimized.
In: Statistics and Probability
Design a class named Pet, which should have the following fields:
Name – The name field holds the name of a pet.
Type – The type field holds the type of animal that is the pet. Example values are “Dog”, “Cat”, and “Bird”.
Age – The age field holds the pet’s age.
The Pet class should also have the following methods:
setName – The setName method stores a value in the name field.
setType – The setType method stores a value in the type field.
setAge – The setAge method stores a value in the age field.
getName – The getName method returns the value of the name field.
getType – The getType method returns the value of the type field.
getAge – The getAge method returns the value of the age field.
please write in c++ format
In: Computer Science
Name 3 means of communicating that Hard of hearing or deaf people might use?
Name 3 types of cooperative teaching one might find in an ICT class?
PLOP is an important part of every IEP. What is PLOP?
What is your understanding of cultural reciprocity; why is it important?
Discuss your thoughts on Gifted & Talented Education. Some people feel that bright children will learn, no matter what - do you dispute that or agree? What might be the "extras" involved in teaching gifted children?
In: Psychology
Name the three key epigenetic modifications, and name a few key physiological,cellular etc. processes they are important in:
In: Biology
Female reproductive system.
a. Name the female sex hormone(s)
b. Name the phases of the menstrual cycle and indicate the level of each hormone in (a) that is present during each.
c. What is one event or condition in a young woman’s life that can cause her menstrual cycle to pause for a few months? Describe why this occurs.
In: Anatomy and Physiology
In: Anatomy and Physiology
java programming
write a program with arrays to ask the first name, last name, middle initial, IDnumber and 3 test scores of 10 students.
calculate the average of the 3 test scores. show the highest class average and the lowest class average. also show the average of the whole class.
please use basic codes and arrays with loops the out put should look like this:
sample output
first name middle initial last name ID test score1 test score2 test score3
dhdh d djddj. 3456 20 80. 67
the class average is 80
the highest class average is80
the lowest class average is 80
please use printf to format the output
In: Computer Science
Name two endocrine hormones that affect separate body systems. Name the tissue/organ that they target and the effects
In: Anatomy and Physiology
Consider the following three tables, primary and foreign keys.
Table Name SalesPeople
Attribute Name Type Key Type
EmployeeNumber Number Primary Key
Name Character
JobTitle Character
Address Character
PhoneNumber Character
YearsInPosition Number
Table Name ProductDescription
Attribute Name Type Key Type
ProductNumber Number Primary Key
ProductName Character
ProductPrice Number
Table Name SalesOrder
Attribute Name Type Key Type
SalesOrderNumber Number Primary Key
ProductNumber Number Foreign Key
EmployeeNumber Number Foreign Key
SalesOrderDate Date
Assume that you draw up a new sales order for each product sold.
Develop the following queries in SQL:
a. All the Sales People with less than four years in position.
b. All the Product Names sold on April 4th.
c. All the Products sold by Sales People less than 3 years in the position.
In: Computer Science