Since green capsules of caramom fetch a premium price in foreign markets, it is essential to sort cardamom as per this colour as far as possible.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
The color of the bear is trivial. The possible solutions to it are interesting. In addition to the trivial north pole and circle near north pole solutions, there is an additional circle near south pole solution.
Create Date
:
Wednesday, May 14, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
Compact HTML (cHTML) is a subset of HTML which is designed for small devices. The major features of HTML that are excluded from cHTML are: JPEG image, Table, Image map, Multiple character fonts and styles, Background color and image, Frame and Style sheet.
Create Date
:
Monday, May 12, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
There are 2 ways to show some part of a text in red:
1. Using HTML tag <font color="red">
2. Using HTML tag <span style="color: red">
Create Date
:
Sunday, May 11, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
Common dialogs are those that appear so frequently in application programs and hence the have become a part of MFC library. MFC provides the common dialogs listed below: - CFileDialog: File Open and File Save As dialog - CPrintDialog: Print and Print Setup dialog - CPageSetupDialog: Page setup dialog - CFindReplaceDialog: File and replace dialog - CColorDialog: Color dialog box - CFontDialog: Dialog box to change font style, color, size, etc. A common dialog is invoked by filling in the fields of the data structure and then calling the doModal() of the dialog. When the dialog returns the user input values are populated in the respective fields of the data structure.E.g. Lets say we want to show the File Open dialog box. TCHAR filter [] = _T ("Text files (*.txt)|*.txt||"); //Specify a filer for the file type CFileDialog dlg(TRUE, _T("txt"), _T("*.txt"), OFN_FILEMUSTEXIST, filter); If(dlg.doModal() == IDOK){//Get the user selected file namefilename = dlg.GetFileName();}
Create Date
:
Saturday, May 10, 2008
Click here
to improve the Interview Question, Answer and other fields.