Questions
1. Draw the peptide DCTEVKKR at a ph 7.4 in the trans configuration. 2. Consider the...

1. Draw the peptide DCTEVKKR at a ph 7.4 in the trans configuration.

2. Consider the peptide from #1 for the questions below.  

Calculate the pI of the above peptide. (I recommend showing your work – you can attach it on a separate sheet of paper or insert pictures).

3. Based on it’s sequence of amino acids and the answer to (2) above, suggest a possible function for the peptide.

4.What interactions would contribute most to tertiary structure? Explain your choice.

5.If a neutral mutation occurred, what do you think the peptide might be changed to? Explain your choice. (Multiple correct answers are possible).

In: Biology

home / study / math / statistics and probability / statistics and probability questions and answers...

home / study / math / statistics and probability / statistics and probability questions and answers / dr. francis has determined the sequence of a gene from four fish species. below, it is described ... Question: Dr. Francis has determined the sequence of a gene from four fish species. Below, it is described ... Dr. Francis has determined the sequence of a gene from four fish species. Below, it is described a segment of the sequence of this gene for the 4 species (NA-Sp, North Atlantic species; SA-Sp, South Atlantic species; Pc-Sp, Pacific species; Md-Sp,Mediterranean species). The letters below the codons are the amino acids encoded.

In: Statistics and Probability

What would happen if the follicle could not produce Theca cells? 1) Ovulation would not occur....

What would happen if the follicle could not produce Theca cells?

1) Ovulation would not occur.

2) Granulosa cells would not be able to produce androstenedione.

3) FSH would no longer be able to signal to granulosa cells.

4) All of the above.

Which of the following is TRUE?

1) Fatty acids released in response to increased levels of glucagon can be used as an alternative fuel source for muscles.

2) Cell membranes are very permeable to glucose, making it a good fuel source.

3) The SYN stimulates glucose diffusion into muscle cells.

4) Long exhaustive exercise causes reduced amino acid levels in the blood.

In: Anatomy and Physiology

Bonita Industries has $26000 of ending finished goods inventory as of December 31, 2019. If beginning...

Bonita Industries has $26000 of ending finished goods inventory as of December 31, 2019. If beginning finished goods inventory was $20000 and cost of goods sold was $55000, how much would Bonita report for cost of goods manufactured?

$81000

$61000

$20000

$49000

In: Accounting

1. Which type of bonding is catalyzed by aminoacyl-tRNA-synthetases to form between amino acids and tRNAs?...

1. Which type of bonding is catalyzed by aminoacyl-tRNA-synthetases to form between amino acids and tRNAs?

Select one:

A.
Hydrogen bond

B.
Salt bridge

C.
Peptide bond

D.
Ester bond

E.
Glycosidic bond

2.What is added to methionine when it is used as the start codon?

Select one:

A. Phosphate

B. Formyl

C. N-acetyl

D. Sulphate

E. rRNA

3.

In translation (initiation, elongation and termination), the energy source is provided by ______.

Select one:

A. ATP

B. TTP

C. GTP

D. CTP

E. UTP

4.

Which of the following statements is correct regarding transcription and translation in eukaryotes?

Select one:

A.
During transcription, an mRNA molecule is synthesized from the DNA molecule.

B.
Translation takes place in the nucleus, while transcription takes place in the cytoplasm.

C.
During protein synthesis, translation occurs prior to transcription.

D.
During translation, a DNA sequence is used to synthesize an amino acid sequence.

E.
Transcription and translation occur in nucleus.

In: Biology

C programming - Implement a dynamic array, please read and implement the dynarray.c file with what...

C programming - Implement a dynamic array, please read and implement the dynarray.c file with what is given

dynarray.h

/*
* This file contains the definition of the interface for the dynamic array
* you'll implement. You can find descriptions of the dynamic array functions,
* including their parameters and their return values, in dynarray.c. You
* should not modify anything in this file.
*/

#ifndef __DYNARRAY_H
#define __DYNARRAY_H

/*
* Structure used to represent a dynamic array.
*/
struct dynarray;

/*
* Dynamic array interface function prototypes. Refer to dynarray.c for
* documentation about each of these functions.
*/
struct dynarray* dynarray_create();
void dynarray_free(struct dynarray* da);
int dynarray_size(struct dynarray* da);
void dynarray_insert(struct dynarray* da, void* val);
void dynarray_remove(struct dynarray* da, int idx);
void* dynarray_get(struct dynarray* da, int idx);
void dynarray_set(struct dynarray* da, int idx, void* val);

#endif

dynarray.c

#include

#include "dynarray.h"

/*
* This is the definition of the dynamic array structure you'll use for your
* implementation. Importantly, your dynamic array implementation will store
* each data element as a void* value. This will permit data of any type to
* be stored in your array. Because each individual element will be stored in
* your array as type void*, the data array needs to be an array of void*.
* Hence it is of type void**.
*
* You should not modify this structure.
*/
struct dynarray {
void** data;
int size;
int capacity;
};

/*
* This function should allocate and initialize a new, empty dynamic array and
* return a pointer to it. The array you allocate should have an initial
* capacity of 2.
*/
struct dynarray* dynarray_create() {
return NULL;
}

/*
* This function should free the memory associated with a dynamic array. In
* particular, while this function should up all memory used in the array
* itself (i.e. the underlying `data` array), it should not free any memory
* allocated to the pointer values stored in the array. In other words, this
* function does not need to *traverse* the array and free the individual
* elements. This is the responsibility of the caller.
*
* Params:
* da - the dynamic array to be destroyed. May not be NULL.
*/
void dynarray_free(struct dynarray* da) {
return;
}

/*
* This function should return the size of a given dynamic array (i.e. the
* number of elements stored in it, not the capacity).
*/
int dynarray_size(struct dynarray* da) {
return 0;
}

/*
* This function should insert a new value to a given dynamic array. For
* simplicity, this function should only insert elements at the *end* of the
* array. In other words, it should always insert the new element immediately
* after the current last element of the array. If there is not enough space
* in the dynamic array to store the element being inserted, this function
* should double the size of the array.
*
* Params:
* da - the dynamic array into which to insert an element. May not be NULL.
* val - the value to be inserted. Note that this parameter has type void*,
* which means that a pointer of any type can be passed.
*/
void dynarray_insert(struct dynarray* da, void* val) {
return;
}

/*
* This function should remove an element at a specified index from a dynamic
* array. All existing elements following the specified index should be moved
* forward to fill in the gap left by the removed element. In other words, if
* the element at index i is removed, then the element at index i+1 should be
* moved forward to index i, the element at index i+2 should be moved forward
* to index i+1, the element at index i+3 should be moved forward to index i+2,
* and so forth.
*
* Params:
* da - the dynamic array from which to remove an element. May not be NULL.
* idx - the index of the element to be removed. The value of `idx` must be
* between 0 (inclusive) and n (exclusive), where n is the number of
* elements stored in the array.
*/
void dynarray_remove(struct dynarray* da, int idx) {
return;
}

/*
* This function should return the value of an existing element a dynamic
* array. Note that this value should be returned as type void*.
*
* Params:
* da - the dynamic array from which to get a value. May not be NULL.
* idx - the index of the element whose value should be returned. The value
* of `idx` must be between 0 (inclusive) and n (exclusive), where n is the
* number of elements stored in the array.
*/
void* dynarray_get(struct dynarray* da, int idx) {
return NULL;
}

/*
* This function should update (i.e. overwrite) the value of an existing
* element in a dynamic array.
*
* Params:
* da - the dynamic array in which to set a value. May not be NULL.
* idx - the index of the element whose value should be updated. The value
* of `idx` must be between 0 (inclusive) and n (exclusive), where n is the
* number of elements stored in the array.
* val - the new value to be set. Note that this parameter has type void*,
* which means that a pointer of any type can be passed.
*/
void dynarray_set(struct dynarray* da, int idx, void* val) {
return;
}

In: Computer Science

Is your overall model significant? Provide statistical proof by conducting an F-test for overall fit of the regression

 

SALARY EDUC EXPER TIME
39000 12 0 1
40200 10 44 7
42900 12 5 30
43800 8 6 7
43800 8 8 6
43800 12 0 7
43800 12 0 10
43800 12 5 6
44400 15 75 2
45000 8 52 3
45000 12 8 19
46200 12 52 3
48000 8 70 20
48000 12 6 23
48000 12 11 12
48000 12 11 17
48000 12 63 22
48000 12 144 24
48000 12 163 12
48000 12 228 26
48000 12 381 1
48000 16 214 15
49800 8 318 25
51000 8 96 33
51000 12 36 15
51000 12 59 14
51000 15 115 1
51000 15 165 4
51000 16 123 12
51600 12 18 12
52200 8 102 29
52200 12 127 29
52800 8 90 11
52800 8 190 1
52800 12 107 11
54000 8 173 34
54000 8 228 33
54000 12 26 11
54000 12 36 33
54000 12 38 22
54000 12 82 29
54000 12 169 27
54000 12 244 1
54000 15 24 13
54000 15 49 27
54000 15 51 21
54000 15 122 33
55200 12 97 17
55200 12 196 32
55800 12 133 30
56400 12 55 9
57000 12 90 23
57000 12 117 25
57000 15 51 17
57000 15 61 11
57000 15 241 34
60000 12 121 30
60000 15 79 13
61200 12 209 21
63000 12 87 33
63000 15 231 15
46200 12 12 22
50400 15 14 3
51000 12 180 15
51000 12 315 2
52200 12 29 14
54000 12 7 21
54000 12 38 11
54000 12 113 3
54000 15 18 8
54000 15 359 11
57000 15 36 5
60000 8 320 21
60000 12 24 2
60000 12 32 17
60000 12 49 8
60000 12 56 33
60000 12 252 11
60000 12 272 19
60000 15 25 13
60000 15 36 32
60000 15 56 12
60000 15 64 33
60000 15 108 16
60000 16 46 3
63000 15 72 17
66000 15 64 16
66000 15 84 33
66000 15 216 16
68400 15 42 7
69000 12 175 10
69000 15 132 24
81000 16 55 33

3.  Fit a multiple regression model that relates the salaryto education, work experience, and time spent at the bank so far.  

a - State what your model is.

b - Determine  whether the independent variables are significant, or not, at a level of significance of 5%.

c - Which independent variable is most significant in explaining salary? Which is least significant?

d - Is your overall  model significant? Provide statistical proof by conducting an F-test for overall fit of the regression. State the hypothesis to be tested, the p-value for your F-statistic, and your decision. How much weight of evidence is there in rejecting the null hypothesis?

In: Statistics and Probability

1. Compare coenzymes with substrates. Explain how they both collaborate in enzyme catalysis. 2. High levels...

1. Compare coenzymes with substrates. Explain how they both collaborate in enzyme catalysis.

2. High levels of ammonia (NH3) are toxic to mammals. One reason is that ammonia bonds with alphaketoglutarate in the citric acid cycle, forming the amino acid glutamate. This removes alphaketoglutarate from the Krebs cycle. Explain what consequences this will have for the cell.

3.  Pyruvate + NADH + H+ à lactate + NAD+

Name the oxidizing agent in the above reaction. Explain

4. Trace the steps of a carbon atom from a starch molecule contained in the Donut you just eat until it ends up in a muscle protein.

Please answer ASAP!!

Thank you.

In: Biology

The bacterial one-hybrid assay holds E. coli cells hostage until our protein of interest can active...

The bacterial one-hybrid assay holds E. coli cells hostage until our protein of interest can active transcription and translation of enzymes from the HIS3 and URA3 genes. These enzymes are needed to produce Histidine and Uridine, which are both needed for cells to grow and divide. Make an estimate, based on enzyme kinetics and any other information you may need, of how many HIS3 and URA3 enzymes will an E. coli cell need to grow and divide at a normal rate. How many are needed when we add 10 mM 3-amino-1,2,4-triazole (3AT) to the growth medium as a competitive inhibitor of HIS3?

In: Biology

What effect does an absence of oxygen (O2) have on the electron transport chain? What would...

  1. What effect does an absence of oxygen (O2) have on the electron transport chain? What would happen if, in this anaerobic environment, you artificially decreased the pH of the intermembrane space of the mitochondrion? Explain.

  2. Would you expect high levels of ATP to inhibit or activate glycolysis? Explain your answer.

  3. A glucose-fed yeast cell is moved from an aerobic environment to an anaerobic one. How would its rate of glucose consumption change if ATP were to be generated in the yeast at the same rate as before? Explain.

  4. Imagine you are a pharmacological researcher who wants to design a drug that inhibits a particular enzyme. Upon reading the scientific literature, you find that the enzyme's active site is similar to that of several other unrelated enzymes. Would a competitive or noncompetitive inhibitor be a better drug? Explain.

In: Biology