In a botany standpoint please answer this: Parenchyma is one of the most common tissue types. Describe common human use(s) for parenchyma. Which properties of parenchyma make it suitable for human use?
In: Biology
In: Operations Management
Recall every aspect of human development that are pertinent to you as a human being. Go all out to gather information about yourself i.e. your family of origin – where did they come from etc. Talk about your birth, your childhood life, school life, adolescence, adulthood and current life situation. By doing so, you will not only analyze the details about yourself but also of others that are significant in your life such as your parents, siblings, grandparents, peers, spouse and children (if any), in-laws, schools
In: Psychology
A sample human input file that contains test values that a human would enter on the keyboard (covering both normal cases and boundary/error cases)
My code is to search the puzzle, read human_input.txt and then search the word
I have a problem with this line : while(fgets(humanchar, 1000, humanfile)),
searchfirst(array,height,width,"happy"); is search well but searchfirst(array,height,width,humanchar); is nothing happen
In addition, The input may contain upper and lower case characters, I try to convert it to lowercase, but i have a problem, so help me with it "you should convert them all to lower case when you read them."
And finally help me to reverse the word in each search
human_input.txt
search_puzzle.txt
happy
error
hope
exit
searchpuzzle.txt
10 7
ABCDEFt
SsGKLaN
OPpRcJW
PLDrJWO
ELKJiIJ
SLeOJnL
happyTg
BEoREEa
JFhSwen
ALSOEId
test.c
#include <stdio.h>
#include "functions.h"
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
int fileio()
{ FILE *humanfile;
char humanchar[1000];
FILE *ptr_file;
char buf[1000];
int height,width;
char **array; //create double pointer array
// open human_input file
humanfile = fopen("human_input.txt", "r");
if (!humanfile)
{
printf("File is not available \n");
return 1;
}
char filename[10];
// get a name of puzzle file
fscanf(humanfile,"%s",filename);
//open puzzle file
ptr_file =fopen(filename,"r");
if (!ptr_file){
printf("File is not available
\n");
return 1;
}
fscanf(ptr_file,"%d %d",&height,&width); //
get height and weight
printf("%d ",height);
printf("%d",width);
printf("\n");
//allocate array
array = (char **)malloc(sizeof(char *)*height); //
create the array size
for(int i = 0; i<height;i++){
array[i] = (char *)malloc(sizeof
(char) * width);
}
int col = 0, row;
//get a single char into array
for(row=0; row<height; row++){
fscanf(ptr_file, "%s", buf);
for (int i =0; i <=
width;i++){
if (buf[i] !=
'\0'){
array[row][col] = buf[i];
col++;
}
}
col = 0;
}
// print array
for (int i = 0; i < height; i++) {
for (int j = 0; j < width;
j++){
printf("%c",
array[i][j]);
}
printf("\n");
}
//close file
//////////////////////test/////////////////////////////////////////
//
searchfirst(array,height,width,"happy"); // find the letter
// searchfirst(array,height,width,"EId");
// find the letter
//searchfirst(array,height,width,"tNW");
//searchfirst(array,height,width,"RwI");
//searchfirst(array,height,width,"Eed");
//searchfirst(array,height,width,"PDJ");
//searchfirst(array,height,width,"Ryn");
//searchfirst(array,height,width,"OsC");
//searchfirst(array,height,width,"Eea");
//searchfirst(array,height,width,"LhRynJ");
/////////////////////////////////////////////////////////////////////
//get a single char into array
// human input I have problem with this one
while(fgets(humanchar, 1000, humanfile)) {
// printf("%s\n",
humanchar);
searchfirst(array,height,width,humanchar);
}
free(array);
fclose(humanfile);
fclose(ptr_file);
return 0;
}
void searchfirst(char **array,int height,int width,char
str[]){
// go through array
for (int i = 0; i < height; i++) {
for (int j = 0; j < width;
j++){
if (array[i][j]
== str[0]){ /// find the first letter in string
//printf("\nfound %s\n",str);
findwordhorizontal(array,i,j,str); //find the word horizontal
findwordvertical(array,i,j,height,str); // find the word
vertical
findworddiagonal1(array,i,j,height,width,str);
findworddiagonal2(array,i,j,width,str);
}
}
}
}
void findwordhorizontal(char **array,int m,int n,char str[]){
char *buffer = (char *)
malloc(sizeof(char)*(n));
int j = 0;
while (str[j] != '\0'){
buffer[j] = array[m][n+j]; // add
string to buffer
j++;
}
buffer[j] = '\0';//add \0 to ending of string
buffer
int result = strcmp (buffer,str); // comparing
string
if (result==0) // if 2 string equal
{
printf("Found the word horizontal
%s\n", buffer);
}
free(buffer);
}
void findwordvertical(char **array,int n,int m,int height,char str[]){
char *buffer = (char *) malloc(sizeof(char)*(height
));
int j = 0;
while (n<height){
buffer[j] = array[n][m]; // add
string to buffer
buffer[j+1] = '\0';//add \0 to
ending of string buffer
int result = strcmp (buffer,str);
// comparing string
if (result==0) // if 2 string
equal
{
printf("Found
the word vertical %s\n", buffer);
}
n++;
j++;
}
free(buffer);
}
void findworddiagonal1(char **array,int n,int m,int height,int
width,char str[]){
int count;
for (count = 0; str[count]; count++){
// just count length of str
}
int calculate1 = width - m; // width - current
col
int calculate2 = height -n; // height - current
row
if ( calculate1 >= count && calculate2
>= count){ // if current n m have enough length of str: start
searching
char *buffer = (char *)
malloc(sizeof(char)*(calculate1));
int j = 0;
while (j<count){
buffer[j] =
array[n][m]; // add string to buffer
buffer[j+1] =
'\0';//add \0 to ending of string buffer
//printf("%s vs
%s\n",buffer,str);
int result =
strcmp (buffer,str); // compa4 7ring string
if (result==0)
// if 2 string equal
{
printf("Found the word diagonal 1 %s\n",
buffer);
}
n++;
m++;
j++;
}
}
}
void findworddiagonal2(char **array,int n,int m,int width,char
str[]){
int count;
for (count = 0; str[count]; count++){
// just count length of str
}
int calculate1 = width - m; // width - current
col
int calculate2 = n+1; // height - current row
//printf("%d %d
%d\n",calculate1,calculate2,count);
if ( calculate1 >= count && calculate2
>= count){ // if current n m have enough length of str: start
searching
char *buffer = (char *)
malloc(sizeof(char)*(calculate1));
int j = 0;
while (j<count){
buffer[j] =
array[n][m]; // add string to buffer
buffer[j+1] =
'\0';//add \0 to ending of string buffer
//printf("%s vs
%s\n",buffer,str);
int result =
strcmp (buffer,str); // comparing string
if (result==0)
// if 2 string equal
{
printf("Found the word diagonal 2 %s\n",
buffer);
}
n--;
m++;
j++;
}
}
}
int main()
{
fileio();
return 0;
}
In: Computer Science
In this question, you are going to implement a human vs. human version of Notakto.
Notakto is a tic-tac-toe variant. It is played across three 3 x 3 boards: Board A, board B and board C. When you start the game you should output the boards as follows.
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 6 7 8
Player 1:
There are two players: Player 1 and player 2. Player 1 always
starts. Both players play the same piece: X. E.g., let player 1
choose location 6 on board A, i.e., the user will enter A6. The
output of the program should be as follows (bold font represents
user input).
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 6 7 8
Player 1: A6
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
X 7 8 6 7 8 6 7 8
Player 2:
Each player takes turn placing an X on the board in a vacant space
(a space not already occupied by an X).
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 6 7 8
Player 1: A6
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
X 7 8 6 7 8 6 7 8
Player 2: A7
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
X X 8 6 7 8 6 7 8
Player 1:
If a board has three X in a row, column, or diagonal, the board is
dead and it cannot be played anymore. It should not be displayed
anymore. E.g., in the following, board A becomes dead and is not
displayed anymore.
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 6 7 8
Player 1: A6
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
X 7 8 6 7 8 6 7 8
Player 2: A7
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
X X 8 6 7 8 6 7 8
Player 1: A8
B C
0 1 2 0 1 2
3 4 5 3 4 5
6 7 8 6 7 8
Player 2:
The game ends when all the boards contain three X in a row, column,
or diagonal, at which point the player to have made the last move
loses the game. Unlike tic-tac-toe, there will always be a player
who wins any game of Notakto.
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 6 7 8
Player 1: A6
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
X 7 8 6 7 8 6 7 8
Player 2: A7
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
X X 8 6 7 8 6 7 8
Player 1: A8
B C
0 1 2 0 1 2
3 4 5 3 4 5
6 7 8 6 7 8
Player 2: B0
B C
X 1 2 0 1 2
3 4 5 3 4 5
6 7 8 6 7 8
Player 1: B4
B C
X 1 2 0 1 2
3 X 5 3 4 5
6 7 8 6 7 8
Player 2: C0
B C
X 1 2 X 1 2
3 X 5 3 4 5
6 7 8 6 7 8
Player 1: C4
B C
X 1 2 X 1 2
3 X 5 3 X 5
6 7 8 6 7 8
Player 2: C8
B
X 1 2
3 X 5
6 7 8
Player 1: B8
Player 2 wins game
Note that you should check for legal moves. If the users enters
something illegal you should prompt them again. Let's play a new
game to illustrate this.
A B C
0 1 2 0 1 2 0 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 6 7 8
Player 1: C0
A B C
0 1 2 0 1 2 X 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 6 7 8
Player 2: B9
Invalid move, please input again
Player 2: fds
Invalid move, please input again
Player 2: C0
Invalid move, please input again
Player 2: C6
A B C
0 1 2 0 1 2 X 1 2
3 4 5 3 4 5 3 4 5
6 7 8 6 7 8 X 7 8
Player 1: C6
Invalid move, please input again
Player 1: C3
A B
0 1 2 0 1 2
3 4 5 3 4 5
6 7 8 6 7 8
Player 2: C2
Invalid move, please input again
Player 2:
Implement the game and try to pass all test cases. The list of test
cases is not complete. We may add more test cases when marking
after the deadline.
Yo
I want the answer in python
In: Computer Science
Which of the following characterizes the function of the vertebrate nerve cell and/or nervous system? a) They react to a stimulus. b) They produce impulses which cause the release neurotransmitters to stimulate other nerve cells. c) They generate motor output (movement). d) They regulate other cells. e) All of these are characteristics of the nerve cell and/or nervous system.
In the Vertebrates the myocytes specialize to form: a) the Cardiac muscle cells, b) the spinal cord, c) the epithelial cells of the central nervous system d) the lung endothelial cells e) all of the choices are true.
Co2 produced by the mitochondria of all systemic cells returns to the heart by way of the ? a) aorta, b) pulmonary vein, c) vena cava, d) left atrium, e) none of these are correct
A research article indicates that researchers have injected a radioactive isotope, (1H3 ) into the chrondrocytes (mesodermal stem cells) of the fertilized shark egg to trace the movement of cells in the embryo. one would expect this isotope to be found in: a) neurocytes, b) in the endothelial cells of the intestine, c) in the cells that form the skeleton, d) in the muscle cells that move the skeleton, e) in none of these.
In Deuterostomes, nutrient molecules are absorbed by the epithelial cells of the intestine by diffusion, facilitated diffusion and active transport. They would next be moved into which of the following: a) Bones, b) veins, c) Alveolus, d) Capillaries, e) nephrons.
Growth hormone that is produced and secreted by the cells of the Anterior Pituitary Gland (note it is not part of the nervous system). It is a polymer of Amino acids that stimulates chondrocytes to make cartilage. Most likely the Growth Hormone is released by Golgi Apparatus: a)of the endoderm cells into the mesoderm, b) into the nucleus of the mesoderm cells, c) by the lysosomes of the ectoderm into the capillaries, d) of the epithelial cells from the endoderm into the capillaries., e) none of these are true.
Although it is not possible to be exact about when Porifera first appeared on earth, most scientists agree that they expanded (Evolved) rapidly and were successful because they had new genes that produced proteins responsible for: a) a colonial multicellular structure , b) Chlorophyll A, c) Krebs cycle to synthesize ATP, d) ATP hydrolysis, e) Three tissue layers
In: Biology
GMP Case Study Scenario
You are the quality control (QC) manager for a relatively new
company that conducts manufacturing operations under contract to
pharmaceutical companies. Your company’s facility handles rDNA
protein products made in fermentation processes, followed by
downstream purification steps, as well as and all testing. The
facility was inspected in 2015 to local current good manufacturing
practice (GMP) standards.
The ongoing contract you have with SuperPharma P/L has entered a
new phase. SuperPharma are providing a second generation production
process, following on from the findings of their own R&D group.
The product is SuperDrug-100, which is a small peptide made up of
nine amino acids with no glycosylation (no carbohydrate
substitutions). SuperPharma want the new process running in one
month and your management has agreed to the timetable.
As QC manager, you are responsible for overseeing all steps
performed by your staff to ensure that the tests associated with
the changes in manufacturing SuperDrug-100 are introduced,
performed and recorded appropriately in your lab. You were sent a
memo stating that two completely new tests have been introduced:
(1) an in-process test after the fermentation step (2) a purity
test at release of the active ingredient – this is not a method you
currently perform. There are also two new components
used in the fermentation medium.
You are also responsible for technical review of the SuperPharma
R&D analytical findings, on which the modified process has been
based. Some of their analytical assays show a slightly changed
profile with regard to total impurities, and their assays are not
validated in R&D. You are concerned that the quality of the
material from the modified process might not be equivalent to the
earlier batches. However, the product specifications have not been
changed, and the new R&D materials are claimed to pass the
original set of tests with the same limits as before, but the
limits are very wide.
6. What actions could or should you take to ensure your company produces a high quality product and stays within GMP requirements?
In: Biology
Which of the following describes reactions in which two hydrogen atom and one orxgen atom are removed to form water?
a. they link monomers
b. they are called condensation reactions
c. they disaemble polumers
d. they form polymers.
Which of the following correctly described anabolic and catabolic reactions?
a. catabolic reactions use nutrients as fuel
b. Energy released in anabolic reactions can be used to synthesize ATP
c. Anabolic reactions produce ATP
d. An example of a catabolic reaction is converting starch to glucose.
An example of an anabolic reaction is the process of converting excess amino acids into protein for storage as muscle tissue. T or F
What factor is Most closely associated with an increased risk of developing an eating disorder?
a. exposure to media pressure to be thin
b. lack of interest in dieting
c. excess time spent with family
d. concern about having friends
What might predispose a person to developing an eating disorder?
a. a defect in a gene that helps control hunger and satiety
b. a plump female figure is viewed as an ideal body image
c. personality trait where a person feels secure, worthy and capable
d American culture that place much emphasis on intellectual pursuits
Dysorexia thin-fat syndrome and dietary chaos syndrome are terms that can be used to describe
a. binging and purging episodes
b. morbid preoccupation with weight
c. episodic eating patterns regardless of hunger
d. anorexia nervosa
Which of the following might be part of the expected treatment for a person who has been diagnosed with anorexia nervosa?
a. promotion of nutritional rehabilitation that incorporated meal planning
b. limiting dietary choice
c. achievement of ideal body weight in a rapid time frame
d. delay in any treatment until the person is ready psychologically to deal with issues
Dysorexia thin fat syndrome and dietary chaso syndrome are terms that can be used to dsecribe
a. binging and purging episodes
b. morbid preoccupation with weight
c. episodic eating patterns regardless of hunger
d. anorexia nervosa
In: Chemistry
Buffers based on di- or triprotic acids may have multiple pH regions over which they are stable. That is, they exhibit some stability as the pH of solution is equivalent to each of their pKas (pKa1, pKa2, pKa3). If you have a di- or triprotic buffer, state below whether you see evidence of this in the form of your pH curve. If you do not see evidence of this, explain why this should be the case.
In: Chemistry
Find the pH of each of the following solutions of mixtures of acids.
8.0×10−2 M in HNO3 and 0.185 M in HC7H5O2,
1.5×10−2 M in HBr and 2.0×10−2 M in HClO4,
9.5×10−2 M in HF and 0.230 M in HC6H5O,
0.100 M in formic acid and 5.5×10−2 M in hypochlorous acid
please show work
In: Chemistry