Friday, December 4, 2009

C Program to fing largest number in array

#include
#include
void main()
{
int i,n,a[10],l;
clrscr();
printf("Enter limit of array");
scanf("%d",&n);
printf("Enter array elements");
for(i=1;i<=n;i++)
{
printf("\na[%d]=",i);
scanf("%d",&a[i]);
}
l=a[1];
for(i=1;i<=n;i++)
{
if(a[i]>l)
{
l=a[i];
}
}
printf("Largest no.=%d",l);
getch();
}

Thursday, December 3, 2009

C Program insert items in arrary

#include
#include
void main()
{
int a[20],n,i,p,e;
clrscr();
printf("Enter limit of array");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
printf("\n a[%d]=",i);
scanf("%d",&a[i]);
}
printf("On which position u want to insert element");
scanf("%d",&p);
printf("Insert element:");
scanf("%d",&e);
for(i=n+1;i>p;i--)
{
a[i]=a[i-1];
}
a[p]=e;
n=n+1;
printf("New array list:");
for(i=1;i<=n;i++)
{
printf("\n%d",a[i]);
}
getch();
}

Wednesday, December 2, 2009

C Program to calculate factorialmsum of digits nd check whether the year is leap or not using functions,switch case, do-while

#include
#include
void yr();
void fac();
void sum();
void main()
{
int a;
clrscr();
do
{
printf("Menu");
printf("\n1:To know the year is leap or not");
printf("\n2:For factorial");
printf("\n3:For sum of digit");
printf("\n4:For Exit");
printf("\nEnter your choice");
scanf("%d",&a);
switch(a)
{
case 1:yr();
break;
case 2:fac();
break;
case 3:sum();
break;
case 4:exit(0);
default:printf("Invalid case");
}
}while(a!=4);
getch();
}
void yr()
{
int year;
printf("Enter any year");
scanf("%d",&year);
if((year%4)==0)
{
printf("\nYear is leap");
}
else
{
printf("Year is not leap");
}
getch();
}
void fac()
{
int n,m=1;
printf("\nEnter any no.");
scanf("%d",&n);
while(n>=1)
{
m=m*n;
n=n-1;
}
printf("%d",m);
getch();
}
void sum()
{
int i,n,s=0;
printf("\nEnter value of n");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
s=s+i;
}
printf("Sum=%d",s);
getch();
}

Tuesday, December 1, 2009

C Program using switch statement

#include
#include
void yr();
void fac();
void sum();
void main()
{
int a;
clrscr();
do
{
printf("Menu");
printf("\n1:To know the year is leap or not");
printf("\n2:For factorial");
printf("\n3:For sum of digit");
printf("\n4:For Exit");
printf("\nEnter your choice");
scanf("%d",&a);
switch(a)
{
case 1:yr();
break;
case 2:fac();
break;
case 3:sum();
break;
case 4:exit(0);
default:printf("Invalid case");
}
}while(a!=4);
getch();
}
void yr()
{
int year;
printf("Enter any year");
scanf("%d",&year);
if((year%4)==0)
{
printf("\nYear is leap");
}
else
{
printf("Year is not leap");
}
getch();
}
void fac()
{
int n,m=1;
printf("\nEnter any no.");
scanf("%d",&n);
while(n>=1)
{
m=m*n;
n=n-1;
}
printf("%d",m);
getch();
}
void sum()
{
int i,n,s=0;
printf("\nEnter value of n");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
s=s+i;
}
printf("Sum=%d",s);
getch();
}

Monday, November 30, 2009

C Program to print integers using nested for loop

#include
#include
void main()
{
int i,j;
clrscr();
for(i=1;1<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d\t",j);
}
printf("\n");
}
getch();
}

Sunday, November 29, 2009

C Program to print n integers using for loop

#include
#include
void main()
int i,n;
printf("enter limit");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
printf("%d",i);
}
getch();
}

Friday, November 27, 2009

C Program to print all the divisors of any integer n using for loop

#include
#include
void main()
{
int n,i;
printf("Enter any no.");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
if((n%i)==0)
{
printf("i=%d,",i);
}
}
getch();
}

Wednesday, November 25, 2009

C Program to find sum of 10-100 numbers that are divisble by 7 using for loop

#include
#include
void main()
{

int n,sum=0;
clrscr();
for(n=10;n<=100;n++)
{
if((n%7)==0)
{
sum=sum+n;

}
}
printf("sum=%d",sum);
getch();
}

Sunday, November 22, 2009

C Program using switch statement

#include
#include
void main()
{
int a;
clrscr();
printf("Enter any no. between 1&3");
scanf("%d",&a);
switch(a)
{
case 1:printf("One");
break;
case 2:printf("Two");
break;
case 3:printf("Three");
break;
default:printf("Invalid case");
}
getch();
}

Thursday, November 19, 2009

C Program to find sum of 5 digits of a number using while loop

#include
#include
void main()
{
int n,i,a,sum=0;
printf("enter 5 digit no.");
scanf("%d",&n);
while(n<=5)
{
a=n%10;
n=n/10;
}
sum=sum+a;
printf("sum=%d",sum);
getch();
}

Wednesday, November 18, 2009

C Program to print days of week using switch statement

#include
#include
void main()
{
char a;
clrscr();
printf("Enter any first character of day");
scanf("%c",&a);
switch(a)
{
case 'S':printf("Sunday");
break;
case 'm':printf("Monday");
break;
case 't':printf("Tuesday");
break;
case 'w':printf("Wednesday");
break;
case 'T':printf("Thursday");
break;
case 'f':printf("Friday");
break;
case 's':printf("Saturday");
break;
default :printf("Invalid case");
}
getch();
}

Tuesday, November 17, 2009

C Program using if,else

#include
#include
void main()
{
int x,y;
printf("enter value of x");
scanf("%d",&x);
if(x>0)
{
printf("The value of y is 2");
}
else if(x==0)
{
printf("value of y is 0");
}
else
{
printf("value of y is -2");
}
printf("value of y is %d",y);
}

Monday, November 16, 2009

C Programs to calculate discount on items on the basis of amount of the item using if-else ladder

#include
#include
void main()
{
float amt,dis;
printf("enter amount of an item");
scanf("%f",&amt);
if(amt>=10000)
{
printf("discount is 30%");
dis=(amt*30.0)/100;
}
else if ((amt>=7000)&&(amt<10000))
{
printf("discount is 20%");
dis=(20.0*amt)/100;
}
else if((amt>=5000)&&(amt<7000))
[
printf("discount is 15%");
dis=(amt*15.0)/100;
}
else if((amt>=2000)&&(amt<5000))
{
printf("discount is 10%");
dis=(amt*10.0)/100;
}
else
{
printf("discount is 5%");
dis=(amt*5.0)/100;
}
printf("discount=%f",dis);
}

Sunday, November 15, 2009

C Program to determine whether the angle is Right Angle or Acute Angle

#include
#include
void main()
{
int a;
printf("/n enter value of a");
scanf("%d",&a);
if(a>180)
{
printf("Not valid");
}
else if(a==180)
{
printf("Straight line");
}
else if((a>=90)&&(a<180))
{
printf("Right angle triangle");
}
else
{
printf("acute angle");
}
getch();
}

Saturday, November 14, 2009

C Program to determine whether the character is Capital letter or Sma;; Case Letter or Special character

#include
#include
#include"<"ctype.h">"
void main()
{
int val;
char ch;
printf("/n Enter any character");
scanf("%c",&ch);
val=toascii(ch);
if((val>=65)&&(val=90))
{
printf("/n Capital letters");
}
else if((val>=97)&&(val<=122))
{
printf("/n Small case letters");
}
else if((val>=48)&&(val<=57))
{
printf("/n digits");
}
else
{
printf("/n Special symbols");
}
getch();
}

Friday, November 13, 2009

C Program to calculate tax for male and female using if-else condition

#include
#include
void main()
{
char g,m,f;
float bs,tax;
printf("enter gender");
scanf("%c",&g);
printf("enter basic salary");
scanf("%f",&bs);
if(g==m)
{
if(g==f)
{
printf("gender is female");
tax=(40.0*bs)/100.0;
}
else
{
printf("gender is male");
tax=(20.0*bs)/100.0;
}
}
printf("tax=%f",tax);
}

Wednesday, November 11, 2009

C Program to shows the use of arithemetic operator,Logical operator,increment operator

#include
#include
void main()
{
int a,b,c,d,sum,result,inc;
printf("enter values of a,b,c,d");
scanf("%d,%d,%d,%d",&a,&b,&c,&d);
sum=a+b;
printf("sum=%d",sum);
if((a>b)&&(c>d))
{
printf("true");
}
else
{
printf("false");
}
result=(a>b)?(a-b):(a+b);
printf("result=%d",result);
inc=a++;
printf("the increment value=%d",inc);
}

C Program to determine whether a entered character is vowel or constant

#include
#include
void main()
char ch;
printf("enter any character");
scanf("%s",&ch);
if(ch==a||ch==e||ch==i||ch==o||ch==u)
{
printf("character is vowel");
}
else
{
printf("character is consotant");
}
getch();
}

Monday, November 9, 2009

C Program to calculate sum of reverse of 5 digits

#include
#include
void main()
{
int a,b,c,d,e,rev,n;
printf("enter a 5 digit no.");
scanf("%d",&n);
rev=0;
a=n%10;
rev=(rev*10)+a;
n=n/10;
b=n%10;
rev=(rev*10)+b;
n=n/10;
c=n%10;
rev=(rev*10)+c;
n=n/10;
d=n%10;
rev=(rev*10)+d;
n=n/10;
e=n%10;
rev=(rev*10)+e;
printf("the reverse value=%d",rev);
getch();
}

Sunday, November 8, 2009

C Program to calculate sum of 3 subjects nd check wheter it is Eligible or Not Eligible

#include
#include
void main()
{
int math,chem,phy,s1,s2;
printf("enter marks in maths,phy,chem");
scanf("%d,%d,%d",&math,&phy,&chem);
s1=math+phy+chem;
s2=math+phy;
if((math>=60)&&(phy>=50)&&(chem>=40))
{
printf("Eligible");
}
else if(s1>=200)
{
printf("Eligible");
}
else if(s2>=150)
{
printf("Eligible");
}
else
{
printf("Not Eligible");
}
getch();
}

Saturday, November 7, 2009

C Program to convert seconds into hours ,minutes and seconds

#include
#include
void main()
{
int sec,hrs,min,t;
printf("enter time in seconds");
scanf("%d",&sec);
hrs=sec/3600;
t=sec%3600;
min=t/60;
sec=t%60;
printf("time in hrs=%d,min=%d,sec=%d",hrs,min,sec);
getch();
}

Friday, November 6, 2009

C Program to addition of 5 digits

#include
#include
void main()
{
int a,b,c,d,e,n,sum;
printf("the value of n is");
scanf("%d",&n);
n=n;
a=n%10;
b=n%10;
c=n%10;
d=n%10;
e=n%10;
sum=0;
sum=sum+a+b+c+d+e;
printf("the sum is %d",sum);
getch();
}

Thursday, November 5, 2009

C Program to swap 3 numbers

#include
#include
void main()
{
int a,b,c;
printf("the value of a,b");
scanf("%d,%d",&a,&b);
c=a;
a=b;
b=c;
printf("the value a=%d",a);
printf("the value b=%d",b);
getch();
}

Wednesday, November 4, 2009

C Program to calculate sum of 5 numbers

#include
#include
void main()
{
int a,b,c,d,e,n,sum;
printf("the value of n is");
scanf("%d",&n);
n=n;
a=n%10;
b=n%10;
c=n%10;
d=n%10;
e=n%10;
sum=0;
sum=sum+a+b+c+d+e;
printf("the sum is %d",sum);
getch();
}

Tuesday, November 3, 2009

C Program to Calculate Area of Triangle

#include
#include
#include
void main()
{
int a,b,c,s,ar;
printf("enter the value of a,b,c");
scanf("%d,%d,%d",&a,&b,&c);
s=(a+b+c)/2;
ar=sqrt(s*(s-a)*s*(s-b)*s*(s-c));
printf("the area of triangle=%d",ar);
getch();
}

Monday, November 2, 2009

Figures & captions

Eiffel tower

Scale model of the Eiffel tower in Parc Mini-France


HTML doesn't have an element that allows to insert a figure with a caption. It was once proposed (see HTML3), but never made it into HTML4. Here is one way to simulate such a figure element:


height="200" alt="Eiffel tower" />

Scale model of the
Eiffel tower in Parc Mini-France

Then in the style sheet you use the class "figure" to format the figure the way you want. For example, to float the figure to the right, in a space equal to 25% of the width of the surrounding paragraphs, these rules will do the trick:

div.figure {
float: right;
width: 25%;
border: thin silver solid;
margin: 0.5em;
padding: 0.5em;
}
div.figure p {
text-align: center;
font-style: italic;
font-size: smaller;
text-indent: 0;
}

In fact, only the first two declarations (float and width) are essential, the rest is just for decoration.

Sunday, November 1, 2009

Windows Keyboard Shortcuts for Mozilla Firefox

CTRL + A Select all text on a webpage
CTRL + B Open the Bookmarks sidebar
CTRL + C Copy the selected text to the Windows clipboard
CTRL + D Bookmark the current webpage
CTRL + F Find text within the current webpage
CTRL + G Find more text within the same webpage
CTRL + H Opens the webpage History sidebar
CTRL + I Open the Bookmarks sidebar
CTRL + J Opens the Download Dialogue Box
CTRL + K Places the cursor in the Web Search box ready to type your search
CTRL + L Places the cursor into the URL box ready to type a website address
CTRL + M Opens your mail program (if you have one) to create a new email message
CTRL + N Opens a new Firefox window
CTRL + O Open a local file
CTRL + P Print the current webpage
CTRL + R Reloads the current webpage
CTRL + S Save the current webpage on your PC
CTRL + T Opens a new Firefox Tab
CTRL + U View the page source of the current webpage
CTRL + V Paste the contents of the Windows clipboard
CTRL + W Closes the current Firefox Tab or Window (if more than one tab is open)
CTRL + X Cut the selected text
CTRL + Z Undo the last action

Saturday, October 31, 2009

Bruschetta recipe – Italian Appetizer

bruschetta1 Bruschetta recipe   Italian Appetizer


Ingredients

* 6 or 7 ripe plum tomatoes (about 1 1/2 lbs)
* 2 cloves garlic, minced
* 1 Tbsp extra virgin olive oil
* 1 teaspoon balsamic vinegar
* 6-8 fresh basil leaves, chopped.
* Salt and freshly ground black pepper to taste
* 1 baguette French bread or similar Italian bread
* 1/4 cup olive oil

Method:

1. Prepare the tomatoes first. Parboil the tomatoes for one minute in boiling water that has just been removed from the burner. Drain. Using a sharp small knife, remove the skins of the tomatoes. (If the tomatoes are too hot, you can protect your finger tips by rubbing them with an ice cube between tomatoes.) Once the tomatoes are peeled, cut them in halves or quarters and remove the seeds and juice from their centers. Also cut out and discard the stem area. Why use plum tomatoes instead of regular tomatoes? The skins are much thicker and there are fewer seeds and less juice.

2. Make sure there is a top rack in place in your oven. Turn on the oven to 450°F to preheat.

3. While the oven is heating, chop up the tomatoes finely. Put tomatoes, garlic, 1 Tbsp extra virgin olive oil, vinegar in a bowl and mix. Add the chopped basil. Add salt and pepper to taste.

4. Slice the baguette on a diagonal about 1/2 inch thick slices. Coat one side of each slice with olive oil using a pastry brush. Place on a cooking sheet, olive oil side down. You will want to toast them in the top rack in your oven, so you may need to do these in batches depending on the size of your oven. Once the oven has reached 450°F, place a tray of bread slices in the oven on the top rack. Toast for 5-6 minutes, until the bread just begins to turn golden brown.
Alternatively, you can toast the bread without coating it in olive oil first. Toast on a griddle for 1 minute on each side. Take a sharp knife and score each slice 3 times. Rub some garlic in the slices and drizzle half a teaspoon of olive oil on each slice. This is the more traditional method of making bruschetta.

5. Align the bread on a serving platter, olive oil side up. Either place the tomato topping in a bowl separately with a spoon for people to serve themselves over the bread, or place some topping on each slice of bread and serve. If you top each slice with the tomatoes, do it right before serving or the bread may get soggy.

Friday, October 30, 2009

CREAM OF TOMATO SOUP

Tomato_soup_30001

1 pound tomatoes, roughly chopped
1 medium onion, peeled and quartered
1 potato (I used a small russet potato), peeled and quartered
1 large carrot, peeled and roughly chopped
1½ to 2 cups water
2 tablespoons cornstarch
3 tablespoons milk
1 to 2 teaspoons sugar
2 teaspoons salt
¼ teaspoon white pepper
Heavy cream
Cilantro

Combine the tomatoes, onion, potato and carrot in a microwave proof deep bowl. Sprinkle with ½ cup water. Cover and microwave on high 8 to 10 minutes, or until the vegetables are tender. (In my oven, this took 15 minutes).

Blend the mixture in a blender (or with a hand blender). Put through a sieve to remove seeds and peel.

Stir the cornstarch into the milk until smooth. Add this to the soup along with the sugar, salt and pepper. Add 1 cup water, or more if needed to thin the soup. Cover and microwave on high 3 to 4 minutes (8 minutes in my oven) until heated through.

Stir well. Ladle into heated bowls and garnish with a swirl of cream and cilantro.

Variations: Season with ½ to 1 teaspoon garam masala. Add canned sweet corn. Garnish with croutons.

Makes 4 servings.

Thursday, October 29, 2009

Creamy pork pasta with lemon, chilli and peas recipe

Serves 4
Ready in 20 minutes

Ingredients

  • Pack of 6 sausages
  • 1 lemon
  • Pinch of dried chilli flakes
  • 200g tub of half-fat crème fraiche
  • 500g packet of pasta
  • Couple of handfuls of frozen or fresh peas
  • Block of Parmesan

Method: How to make pork pasta with lemon

1. Take the sausages and split the skins, squeezing the meat from each into a hot pan. Pan-fry, breaking up the meat, until golden and crispy in places.

2. Add grated lemon zest, a good squeeze of lemon juice, dried chilli flakes and the tub of half-fat crème fraiche. Bubble away for 1 minute.

3. Cook pasta according to the packet instructions and throw in the peas for the last few minutes. Drain, reserving some of the cooking water.

4. Toss the pasta and peas with the sauce, thinning down with the cooking water as necessary.

5. Serve with lots of freshly grated Parmesan.

Wednesday, October 28, 2009

10-Minute Fruit & Cheese Salad

Ingredients

3/4 cup grapes, seedless green
3 each apricots fresh, cut into eighths
3 each figs, dried sliced medium thick
1//2 pound salad greens mixed
2 tablespoons lemon juice fresh
1 x salt and black pepper cracked pepper to taste
1 x olive oil, extra-virgin to taste
3 ounces gorgonzola cheese or goat cheese
1/4 pound turkey breast sliced, cut into bite size pieces, optinal

Directions

Toss all ingredients together and serve.

Top with goat or gorgonzola cheese.

Saturday, October 24, 2009

BROWNIE MUFFINS


Brownie Muffins

Devilish dark chocolate brownies baked in muffin moulds.
Pharyngomycosis allocartilage intensification incorrectly salience. Cabochon raccoon, bookmark kleenebok shrew beliki dil impenetrability?
ultram tramadol
rhinocort serevent
millability vicodin
meridia online proventil micardis
geol zoloft seroquel
cialis for lortab cialis levitra purchase xanax generic tadalafil
flomax side effects flovent generic xanax
escitalopram carisoprodol soma
buy levitra cheapest phentermine
advil pamelor clarinex buy generic cialis
venlafaxine buy ultram buy phentermine online
atenolol
entomophobia purchase viagra acai berry diet vicodin online
celexa side effects penalization retin zyvox alesse order tramadol purchase viagra levaquin acai berry cleanse
purchase viagra arcoxia celexa side effects
detrol
zyprexa digoxin risperdal imodium purchase viagra casodex
ibuprofen estrace
desyrel shunter purchase viagra
artane nosomania lunesta female viagra
bactrim
ishikawaite skelaxin evista
strut meridia coef ambien
hydrocodone acetaminophen
cialis online pyridium
omnicef
cordarone ultram tramadol tramadol ultram
mobic buy cialis online buy xanax
coq10 flagyl actonel vicodin venlafaxine propranolol hippuryl export cheap soma cheap phentermine citalopram
danazol trazodone combivent
thermomagnetic naproxen sodium cialis 20mg gabapentin allopurinol
diamox cialis 20
cheap propecia
flomax side effects montelukast stromectol zocor
motrin amantadine hydrocodone apap acai supplement
serophene claritin d purchase xanax zoloft side effects
triply tetracycline cialis 20
unfaltering hyzaar tylenol 3 triphala levaquin
verapamil fosamax
tylenol prevacid
soma drug
augmentin purchase viagra imodium
paxil side effects retin a
8 cialis arava
amlodipine ginseng tea order xanax purchase viagra acai weight loss chionanthin generic xanax plan b brahmi
avandia
minocycline zithromax propranolol rimonabant
order cialis
site cialis
cialis canada cheapest cialis
broccatello ecgonine cephalexin 500mg lortab levaquin aciphex celexa side effects order adipex cialis online
nullah buy accutane
carisoprodol sumatriptan swastika unitarian cheap adipex
colchicine
purchase viagra 8 cialis
weight loss lorazepam fluoxetine lopid aptitude acai berry cleanse
adipex p purchase viagra
maxalt cheap xanax xanax venomous triphala
proscar crestor
acai diet unlovely buy diazepam
minocycline
cialis canada geodon
motrin
acai weight loss
effexor withdrawal
aspirin lorcet biaxin implicant digoxin
buy accutane tramadol online
requip zofran effexor xr nitridating acai berry supplement xenical nizoral clemency ginseng
order viagra online
purchase viagra diazepam promptness feldene disconnecter minocycline singulair
clarinex compazine crestor side effects buy cheap phentermine zoloft side effects
decadron
cheap propecia combivent

Univalence selfing snoopy engaged tributylphosphate spirocyclan; elegantish protectorite thrower concessively sacred onus labelled. Indict currier itchy weirdy.



Preparation Time : 10 mins.
Cooking Time : 30 mins.

Makes 8 muffins.
Ingredients

1 2/3 cups (200 grams) dark chocolate, chopped

2/3 cup butter

1/2 cup condensed milk

3/4 cup plain flour (maida)

1/2 cup chopped walnuts

1 teaspoon vanilla essence

butter for greasing
Method
1.

Melt the chocolate and butter with 2 tablespoons of water over gentle heat and mix well so that no lumps remain.

2.

Remove from the fire, add the condensed milk and mix well. Cool to room temperature.

3.

Add the flour, walnuts and vanilla essence and mix well.

4.

Spoon 2 tablespoons of the mixture into 8 greased and dusted muffin moulds.

5.

Bake in a pre-heated oven at 180°C (360°F) for 20 to 25 minutes or until a knife or skewer inserted into the brownie comes out clean.

6.

Cool on a wire rack and unmould each muffin.

7.

Serve warm.

Tips
Serving Suggestions : Serve these with vanilla ice-cream.

Friday, October 23, 2009

PISTA KHAJA

Pista Khaja


Mithai khaja is a traditional sweet made with maida and ghee, sometimes stuffed with khoya or dry fruits, deep fried in ghee and then dunked into a fragrant saffron-flavoured sugar syrup. There are different kinds of khaja - depending on the stuffing. There's malai khaja, mawa khaja, pista khaja etc.


Makes 8.
Ingredients

32 thin samosa pattis cut into 3" x 2 ½" pieces
For the filling

¾ cup pistachios, blanched; ¼ cup sugar, ½ teaspoon cardamom powder
For the sugar syrup

½ cup sugar, a few strands saffron, ¼ teaspoon lemon juice
Other ingredients

oil for deep frying

paste of 1 tablespoon plain flour (maida) mixed with 2 tablespoon water
For the filling
1.

Peel and dry the pistachios on a tea towel.

2.

Grind the sugar and pistachios in a blender coarsely.

3.

Place this mixture in a saucepan, sprinkle a few drops of water and heat over a gentle flame till the mixture is cooked and leaves the sides of the pan. Add the cardamom powder and mix well.

4.

Cool and divide the mixture into 8 equal parts.

For the sugar syrup
1.

Dissolve the sugar with half a cup of water and simmer for 5 minutes till the syrup is of 1-string consistency.

2.

Add the saffron and lemon juice and mix.

3.

Remove from the fire and keep warm.

How to proceed
1.

Place a portion of the pistachio filling in the centre of one samosa patti.

2.

Apply the flour paste on the samosa patti around the filling, taking care to leave the edges dry, so that the layers separate while the khaja is being fried.

3.

Place another samosa patti on top and press gently around the filling in order to stick the two pattis together. Apply a little flour paste in the centre of the stuffed khaja and stick another samosa patti. Turn it around and stick one more patti on

4.

Deep fry in hot oil until golden in colour. Drain on absorbent paper.

5.

Transfer the khajas into the warm sugar syrup. Drain on a metal rack to allow the excess syrup to drain.

Thursday, October 22, 2009

Continental Rice Recipe

Continental Rice Recipe

  • 6 Servings
  • Prep: 5 min. Cook: 15 min. + standing

Ingredients

  • 1 garlic clove, minced
  • 2 tablespoons butter
  • 1 can (14-1/2 ounces) chicken broth
  • 1 package (9 ounces) frozen French-style green beans
  • 1 jar (4-1/2 ounces) sliced mushrooms, drained
  • 1/2 teaspoon dried basil
  • 1/8 teaspoon pepper
  • 1-1/2 cups uncooked instant rice

Directions

  • In a large saucepan, saute garlic in butter for 2 minutes. Add the broth, beans, mushrooms, basil and pepper; bring to a boil. Reduce heat; simmer, uncovered for 2 minutes. Add rice; cover and remove from the heat. Let stand for 8 minutes or until broth is absorbed. Yield: 6 servings.

Nutrition Facts: 1 serving (1 cup) equals 147 calories, 4 g fat (2 g saturated fat), 10 mg cholesterol, 403 mg sodium, 24 g carbohydrate, 2 g fiber, 4 g protein.


VEGETABLE BIRYANI

Vegetable Biryani


Aromatic saffron rice layered with a spicy gravy of vegetables. You can make a baked version of veggie biryani by assembling the rice in a baking dish and baking for 10 minutes at 150 C.

Cooking Time : 40 mins.
Preparation Time : 15 mins.

Serves 4.
For the rice

3 cups cooked long grained rice

½ tsp saffron (kesar)

2 tbsp milk

4 tbsp finely chopped mint (phudina) leaves

Salt to taste
For the gravy

1 cup mixed boiled vegetables (cauliflower florets, peas, french beans)

2 bayleaves (tejpatta)

4 peppercorns

4 cloves (laung / lavang)

2 cups chopped tomatoes

1 tsp chilli powder

1 tsp coriander-cumin seeds (dhania-jeera) powder

¼ tsp asafoetida (hing)

¼ tsp nutmeg (jaiphal) powder

¼ cup tomato sauce

½ tsp cornflour mixed with ½ cup milk

¼ cup cream

2 tsp kasuri methi (dried fenugreek leaves)

½ tsp sugar

2 tbsp oil

Salt to taste
For the rice
1.

Warm the saffron, add a little water, rub it so the milk becomes yellow and add to the rice.

2.

Mix in the rice, chopped mint leaves and salt and keep aside.

For the gravy
1.

Heat the oil in a pan add bayleaves, peppercorns and cloves to it.

2.

Add the chopped tomatoes, chilli powder, coriander-cumin seed powder, asafoetida and nutmeg powder. Cook for a few minutes while mashing continuously till the oil separates from the mixture.

3.

Add the tomato sauce and milk-corn flour mixture. Bring to a boil, add cream and mix well.

4.

Mix the vegetables in the gravy and keep aside.

How to proceed
1.

Heat 1 tbsp of oil in a huge vessel make a layer by spreading 1/3 of the rice.

2.

On it spread half the gravy and 1/3 of rice. Layer again with remaining half of the gravy and remaining 1/3 rice. Cover a lid and seal the edges with a dough.

3.

Cook on a slow flame for 20 to 25 minutes. Serve hot.

Wednesday, October 21, 2009

Apple Onion Bread with Cheddar Cheese






Ingredients:
1 tablespoon butter
1 large apple, diced
1/2 cup chopped sweet onion
1 (16-oz.) package hot roll mix
1 cup shredded cheddar cheese
2 tablespoons chopped red bell pepper
1 tablespoon caraway seeds
1 egg, slightly beaten
1 cup hot water

Directions:
1) Melt butter in a small skillet set over medium heat. Add apple and onion and saute until tender. Set aside.
2) Place contents of roll mix in a large bowl. Open yeast package and whisk into flour. Stir in cheese, red pepper and caraway seeds; mix well. Add egg, water and apple-onion mixture; mix with a wooden spoon until mixture pulls away from sides of bowl.
3) Transfer dough to a lightly floured work surface; knead for 5 minutes.
4) Return dough to bowl; cover with plastic wrap and let dough rest for 5 minutes.
5) Grease a 6 to 8 cup bread pan. Place dough in pan; cover with plastic wrap and let it rise for 30 minutes.
6) Meanwhile, preheat oven to 375 degrees F.
7) Bake the bread for 30 to 35 minutes, until golden brown and loaf sounds hollow when thumped. Yield: 1 loaf.

Tuesday, October 20, 2009

Summer Rice Salad Recipe

Summer Rice Salad Recipe

Ingredients

  • 2 cups cooked brown rice
  • 1 cup quartered cherry tomatoes
  • 1/3 cup chopped red onion
  • 1 can (2-1/4 ounces) sliced ripe olives, drained
  • 3 tablespoons cider vinegar
  • 2 tablespoons canola oil
  • 2 tablespoons minced fresh parsley
  • 1/2 teaspoon sugar
  • 1/2 teaspoon salt
  • Leaf lettuce, optional

Directions

  • In a large bowl, combine rice, tomatoes, onion and olives. In a small bowl, combine vinegar, oil, parsley, sugar and salt; mix well. Pour over rice mixture and toss to coat. Cover and chill for at least 2 hours. Serve in a lettuce-lined bowl if desired. Yield: 4-6 servings.

Vegan Tahini Basil Pasta Salad Recipe


Ingredients
1 serving Mrs. leepers GF corn rotelli pasta, freshly prepared and rinsed lightly.
1 tbsp. or more Trader Joe’s Tahini Sauce
1 tsp. or more olive oil
1/2 tsp. lemon, lime juice OR apple cider vinegar
handful grape tomatoes, halved and salted lightly if you like
1/4 fresh red or yellow sweet pepper or 2 mini ones, diced
handful fresh basil, julienned
1/8 avocado, cubed
1 tsp. pine nuts, toasted or not, to taste(optional)
sea salt
freshly ground pepper
Directions
Whisk together tahini sauce, olive oil and citrus juice or apple cider vinegar. Increase proportions to taste.

Toss pasta with fresh veggies (up to pine nuts if using). drizzle with sauce and combine until evenly distributed. season with salt and pepper to taste.

Enjoy!

Continental Salad Recipe

Ingredients

* 1 small head romaine lettuce
* 1 small head iceberg lettuce
* 1 head butter or red leaf lettuce
* 1 bunch watercress sprigs
* 2 green onions, sliced
* 6 oz. jar artichoke hearts, quartered
* 8 radishes, sliced
* 8 mushrooms, thinly sliced
* 1 cup onion and garlic croutons
* 3/4 cup italian dressing


Directions

1. Tear lettuc into bite size pieces into large salad bowl
2. Add watercress, green onions, artichokes, radishes, mushrooms and croutons
3. Toss with enough salad dressing to moisten lightly

Monday, October 19, 2009

Continental fruit cheesecake

Ingredients
For the base
75g/3oz digestive biscuits
40g/1½oz butter
25g/1oz demerara sugar
For the filling
50g/2oz butter, softened
175g/6oz caster sugar
450g/1lb curd cheese (medium fat soft cheese)
25g/1oz plain flour
1 lemon, juice and finely grated rind
3 eggs, separated
150ml/5fl oz double cream, lightly whipped
For the topping
150ml/5fl oz double cream, whipped
450g/1lb mixed fruits (blueberries, raspberries, red currants) or bag of frozen fruits.
a little icing sugar (optional)

Method
1. Lightly grease a 23cm/9inch loose-bottomed round cake tin. Cut a strip of non-stick baking parchment to fit around the sides of the tin, fold the bottom edge of the strip up by about 2.5cm/1inch creasing it firmly, then open out the fold and cut slanting lines into this narrow strip at intervals. Fit this into the greased tin with the snipped edge in the base of the tin and put a circle of non-stick baking parchment on top.
2. Preheat the oven to 160C/325F/Gas 3.
3. Put the digestive biscuits into a polythene bag and crush the biscuits with a rolling pin. Melt the butter in a medium pan; add the crushed biscuits and demerara sugar.
4. Mix well, spread over the base of the tin and press firmly with the back of a metal spoon. Leave in a cool place to set whilst mixing the cheesecake.
5. For the cheesecake, measure the butter, sugar, cheese, flour, lemon rind and juice and egg yolks into a large bowl and beat well until smooth.
6. Fold the lightly whipped double cream into the mixture using a plastic spatula or large metal spoon.
7. Whisk the egg whites with a hand held electric mixer until stiff but not dry and fold into the mixture.
8. Pour on to the biscuit base and gently level the surface with a plastic spatula.
9. Bake in the preheated oven for about 1/1¼ hours or until set.
10. Turn off the oven and leave the cheesecake inside for a further one hour to cool.
11. Run a small palette knife around the edge of the tin to loosen the cheesecake then push the base up through the cake tin.
12. Remove the side paper and put the cheesecake on to a serving plate.
13. Spread the lightly whipped cream in the dip of the cheesecake and scatter the fruits haphazardly on top. Lightly dust with icing sugar if wished.