answersLogoWhite

0

What else can I help you with?

Continue Learning about Engineering

In c plus plus 5.02 how many memory cells are required to store a single character?

1 byte.. (1 cell)


How are the dry cells connected in series connection?

The voltage will be double that of one dry cell. The current will be that of one dry cell.


What is the code to retrieve data from sql in Net?

at the topusing System.Data.SqlClient;in the main body (perhaps a click event)//creates a connection object with a given connection stringSqlDataConnection conn = New SqlDataConnection("connection String");//creates a command object with the sql and the connection it is to useSqlCommand cmd = new SqlCommand("SQL String",conn);//create a data reader to store the data retrieved from the databaseSqlDataReader rdr;//open the connectionconn.Open();//executes the sql and stores the result in the rdr (Use if there is more than one //cell retrieved from database e.g all records where a value is greater than 0rdr = cmd.ExecuteReader();//if there is only one cell retrieved such as only the orderid for a specific order then //use:variable = cmd.ExecuteScalar();//then do something with the data WARNING: the connection MUST be open to use the data reader but not with the scalar method//close the connectionconn.Close();Hope this helps!steve


Which part of cell responsible for transmitting genetic disease?

This question doesn't exactly make sense, but I'll try to answer it. The nucleus (or "brain of the cell") contains DNA. DNA is where all genetic makeup is stored. DNA contains chromosomes. Each normal human being has 46 chromosomes. Genetic diseases lie within these chromosomes, pinpointing where they are is the tricky part. A lot genetic diseases have yet to be pinpointed and even when they are pinpointed, finding a cure can be almost impossible without the help of stem cell research.


What the meaning of cell pointers in Microsoft Excel?

A cell pointer in excel is just the cell where you point the cursor in which its row and column can be seen is called a cell pointer.