Searching for "modified"

Q:

What are the organs similar in basic structure/shape, modified to perform different functions called?

A) Analogous organs B) Homologous organs
C) Heterogeneous organs D) Homogenous organs
 
Answer & Explanation Answer: B) Homologous organs

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

Q:

Which of the following is considered a modified stem?

A) Tendril B) Taproot
C) Petiole D) Tuber
 
Answer & Explanation Answer: D) Tuber

Explanation:

Tuber is considered as a modified stem. These type of stems carry out special functions that are important for the plant to survive. Tubers serves as a food reserve and bearing buds wherein new plants can grow.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

Q:

Which of the following polysaccharides contains a modified monosaccharide?

A) starch B) chitin
C) glycogen D) cellulose
 
Answer & Explanation Answer: B) chitin

Explanation:

Many carbohydrates contain one or more modified monosaccharide units that have had one or more groups replaced or removed.

 

Chitin is one of many naturally occurring polymers. It is one of the most abundant natural materials in the world. Over time it is bio-degradable in the natural environment. Its breakdown may be catalyzed by enzymes called chitinases, secreted by microorganisms such as bacteria and fungi, and produced by some plants.

 

Chitin is composed of repeating units of N-acetylglucosamine, a nitrogen-containing form of glucose.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

Q:

Cactus Spines are Modified 

A) Stems B) Branches
C) Leaves D) Roots
 
Answer & Explanation Answer: C) Leaves

Explanation:
    • Cactus spines are also known as modified bud scales, which are also called modified leaves.

 

    • Cactus spines occur in clusters in the axil of leaves.

 

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , AIEEE
Job Role: Bank PO

Q:

How to get last modified date of a file?

Answer

long lastModified();


we can give this return value to a date object and we can get data to be displayed.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an
application. You use the ADO.NET Entity Framework to model entities. You write the following code segment. (Line numbers are included for reference only.)


01AdventureWorksEntities context = New AdventureWorksEntities
02
03var q = from c in context.Customers
04where c.City == "London"
05orderby c.CompanyName
06select c;


You need to ensure that the application meets the following requirements: "Compares the current values of unmodified properties with values returned from the data source". Marks the property as modified when the properties are not the same. Which code segment should you insert at line 02?

A) context.MergeOption = MergeOption.AppendOnly; B) context.MergeOption = MergeOption.PreserveChanges;
C) context.MergeOption = MergeOption.OverwriteChanges; D) context.MergeOption = MergeOption.NoTracking;
 
Answer & Explanation Answer: B) context.MergeOption = MergeOption.PreserveChanges;

Explanation:
Report Error

View Answer Report Error Discuss

Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an application. The application uses the ADO.NET Entity Framework to model entities. The application allows users to make changes to entities while disconnected from the central data store.

 

You need to ensure that when the user connects to the central data store and retrieves new data, the application meets the following requirements:

  • Changes made to the local data store in disconnected mode are preserved.
  • Entities that have already been loaded into the local data store, but have not been modified by the user, are updated with the latest data.

What should you do?

A) Call the query's Execute method by using the MergeOptions.AppendOnly option. B) Call the query's Execute method by using the MergeOptions.OverwriteChanges option.
C) Call the Refresh method of ObjectContext by using the RefreshMode.StoreWins option. D) Call the Refresh method of ObjectContext by using the RefreshMode.ClientWins method.
 
Answer & Explanation Answer: D) Call the Refresh method of ObjectContext by using the RefreshMode.ClientWins method.

Explanation:
Report Error

View Answer Report Error Discuss

Q:

Can’t update primary table’s primary key if row being modified has related rows in secondary table once referential integrity is enforced

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:
Report Error

View Answer Workspace Report Error Discuss