<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3658909462161071259</id><updated>2024-12-18T19:33:35.113-08:00</updated><category term="C Program"/><category term="java program"/><category term="Windows 7 Tricks"/><category term="sql"/><category term="String"/><category term="array"/><category term="Windows Tricks"/><category term="shape"/><category term="structure"/><category term="Shortcut Key"/><category term="macro expansion"/><category term="pointer"/><category term="PL/SQL"/><category term="file"/><category term="operators in java"/><category term="read file"/><category term="visual basic6"/><category term="struct"/><category term="Formatting"/><category term="LIKE command"/><category term="matrix"/><category term="switch statements"/><category term="life funda"/><category term="shifting"/><category term="strcopy() function"/><category term="volume"/><category term="write file"/><category term="Left shifting"/><category term="Student record"/><category term="alter command"/><category term="for loop"/><category term="function"/><category term="insert command"/><category term="logical operators"/><category term="pragma"/><category term="strlen() function"/><category term="text speech"/><category term="valentine Special"/><category term="visual basic script"/><category term="volume of box"/><category term="% operator"/><category term="++ operator"/><category term="Armstrong"/><category term="Array of Structure"/><category term="C plus plus"/><category term="C++"/><category term="Call by Value"/><category term="Call by reference"/><category term="Decimal to Binary"/><category term="Delete command"/><category term="E-mail Short Hand"/><category term="Hide your drives"/><category term="Linear Search"/><category term="Masking sign extension"/><category term="NOT command"/><category term="OR command"/><category term="Octal to Binary"/><category term="Pascal"/><category term="Prints file contents on printer"/><category term="Swap"/><category term="Ternary operator"/><category term="Unsigned shifting"/><category term="Windows Vista"/><category term="argc"/><category term="argv"/><category term="arithmetic operators"/><category term="assignment operators"/><category term="bc command"/><category term="binary file"/><category term="bit"/><category term="boolean"/><category term="boolean logical operators"/><category term="boolean variable"/><category term="break statements"/><category term="casts"/><category term="const keyword"/><category term="continue"/><category term="copy file"/><category term="create file"/><category term="create table command"/><category term="cursor"/><category term="do-while loop"/><category term="dynamic initialization"/><category term="elementary database management program"/><category term="english to urdu"/><category term="even odd"/><category term="fgetchar( )"/><category term="for-reverse loop"/><category term="fputchar ()"/><category term="getch( )"/><category term="getchar( )"/><category term="getche( )"/><category term="gets"/><category term="if statement"/><category term="if-else-if statements"/><category term="inheritance"/><category term="integer"/><category term="length of array"/><category term="linux"/><category term="list box"/><category term="main"/><category term="malloc"/><category term="method inside class"/><category term="modify"/><category term="multiple-inheritence"/><category term="nested if-else"/><category term="nested loop"/><category term="procedure"/><category term="protect folder"/><category term="putch ()"/><category term="putchar ()"/><category term="puts"/><category term="remove command"/><category term="search"/><category term="select command"/><category term="simple interest"/><category term="sizeof"/><category term="strcat() function"/><category term="strcmp() function"/><category term="translate english to urdu online"/><category term="update command"/><category term="while loop"/><category term="yahoo emotions"/><title type='text'>codezworld - A blog of programs</title><subtitle type='html'>there is some good c ,java, sql and vb6 programs,Windows tricks, sms shorthand etc</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>272</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-2363929940476705102</id><published>2012-03-30T06:20:00.000-07:00</published><updated>2012-03-30T06:20:26.229-07:00</updated><title type='text'>WAP of Simpson3/8 in C</title><content type='html'>&lt;font color=&quot;green&quot;&gt; /* WAP of Simpson3/8 in C */ &lt;/font&gt; &lt;pre&gt;

#include&amp;lt;stdio.h&amp;gt;
#include&amp;lt;conio.h&amp;gt;
void main()
{
 float x[100],y[100],value2,value,fx,h;
 int i,size;
 clrscr();
 printf(&quot;How many value you want to enter: &quot;);
 scanf(&quot;%d&quot;,&amp;size);

 for(i=0; i&amp;lt;size; i++)
 {
  printf(&quot;Enter elements of x[%d]:\n&quot;,i);
  scanf(&quot;%f&quot;,&amp;x[i]);
  printf(&quot;Enter elements of y[%d]:\n&quot;,i);
  scanf(&quot;%f&quot;,&amp;y[i]);
 }
 h = x[2]-x[1];
 printf(&quot;\nh = %f&quot;,h);
 for(i=1; i&amp;lt;size-1; i++)
 {
  if(i%3==0)
   value2 += 2*y[i];

  else
   value += 3*y[i];
 }
 printf(&quot;value2 = %f \n value = %f&quot;,value2, value);
 fx = ( h*3)/8 * ( y[0] + y[size-1] + value + value2 );
 printf(&quot;\nf(x)= %f&quot;,fx);
 getch();
}
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/2363929940476705102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-simpson38-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2363929940476705102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2363929940476705102'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-simpson38-in-c.html' title='WAP of Simpson3/8 in C'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-2247245645559042749</id><published>2012-03-29T09:55:00.000-07:00</published><updated>2012-03-29T09:55:12.457-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="java program"/><category scheme="http://www.blogger.com/atom/ns#" term="switch statements"/><title type='text'>WAP of Switch case in Java</title><content type='html'>&lt;font color=&quot;green&quot;&gt; /*WAP to capture the two integer values from user and perform following actions according to user Requierement&lt;br /&gt;
1. Addition&lt;br /&gt;
2. Substraction&lt;br /&gt;
3. Multiplication&lt;br /&gt;
4. Division&lt;br /&gt;
5. Exit&lt;br /&gt;
  */ &lt;/font&gt; &lt;pre&gt;
import java.lang.*;
import java.io.*;
class oprations
{
 public void InputMsg()
 {System.out.println(&quot;Enter Two Integer numbers. &quot;);}
 
 public void continueMsg()
 {System.out.println(&quot;Do you want to Continue. \n1. Yes \n0. No&quot;);}
 
 public static void main (String args[]) throws IOException
 {
  int a , b, choice = -1 ;
  
  do
  {
    System.out.println(&quot;Choose a Opration&quot;);
    System.out.println(&quot;1. Addition \n2. Substraction \n3. Multiplication \n4. Division \n5. Exit \nYour Choice: &quot;);

    BufferedReader br = new BufferedReader(new 
         InputStreamReader(System.in));
    oprations e = new oprations();
    choice = Integer.parseInt(br.readLine());
    int repeate = -1;
    
   do
   {
    
    switch(choice)
    {
     
     case 1: e.InputMsg();
        a = Integer.parseInt(br.readLine());
        b = Integer.parseInt(br.readLine());
     System.out.println(&quot;Addition = &quot;+(a+b));
    
     e.continueMsg();
     repeate = Integer.parseInt(br.readLine());
     break;
     case 2: e.InputMsg();
        a = Integer.parseInt(br.readLine());
        b = Integer.parseInt(br.readLine());
     System.out.println(&quot;Substraction = &quot;+(a-b));
     
     e.continueMsg();
     repeate = Integer.parseInt(br.readLine());
     break;
     case 3: e.InputMsg();
        a = Integer.parseInt(br.readLine());
        b = Integer.parseInt(br.readLine());
     System.out.println(&quot;Multiplication = &quot;+(a*b));
     
     e.continueMsg();
     repeate = Integer.parseInt(br.readLine());
     break;
     case 4: e.InputMsg();
        a = Integer.parseInt(br.readLine());
        b = Integer.parseInt(br.readLine());
     System.out.println(&quot;Division = &quot;+(a/b));
     
     e.continueMsg();
     repeate = Integer.parseInt(br.readLine());
     break;
     case 5: System.out.println(&quot;BYE!&quot;); 
     break;
     default: System.out.println(&quot;Invalid Input.&quot;);
    }
    
   }while(repeate != 0 &amp;&amp; choice != 5);
   
  }while(choice != 5); 
 }
 
}

&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/2247245645559042749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-switch-case-in-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2247245645559042749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2247245645559042749'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-switch-case-in-java.html' title='WAP of Switch case in Java'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-6719243273858952080</id><published>2012-03-29T09:53:00.000-07:00</published><updated>2012-03-29T09:53:18.034-07:00</updated><title type='text'>WAP of Bubble Short in C++</title><content type='html'>&lt;font color=&quot;green&quot;&gt; /*WAP of Bubble Short in C++*/ &lt;/font&gt; &lt;pre&gt;
#include&amp;lt;iostream.h&amp;gt;
#include&amp;lt;conio.h&amp;gt;

class bubbleShort
{
 int size, a[100];
 public:
 void getdata();
 void sorting();

};
void bubbleShort :: getdata()
{
 int i;
 cout &lt;&lt; &quot;\nEnter total number of elements: &quot; ;
 cin &gt;&gt; size;

 
 cout &lt;&lt; &quot;\nEnter elements: &quot;;
 for(i=0;i&amp;lt;size;i++)
  cin &gt;&gt; a[i];

 cout &lt;&lt; &quot;\nEntered elements are: &quot;;
 for(i=0;i&amp;lt;size;i++)
  cout &lt;&lt; a[i] &lt;&lt; &quot; &quot;;

}
void bubbleShort :: sorting()
{

 int i,j,temp;
 for(i=1;i&amp;lt;size;i++)
 {
  for(j=0;j&amp;lt;size-i;j++)
  {
   if(a[j]&amp;gt;a[j+1])
   {
    temp=a[j];
    a[j]=a[j+1];
    a[j+1]=temp;
   }
  }
 }
 
 cout &lt;&lt; &quot;\nElements After Shorting:&quot;;
 for(i=0;i&amp;lt;size;i++)
  cout &lt;&lt; &quot;\n&quot; &lt;&lt; a[i];

}

void main()
{
 clrscr();
 bubbleShort bsrch;
 bsrch.getdata();
 bsrch.sorting();

 getch();
}
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/6719243273858952080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-bubble-short-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6719243273858952080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6719243273858952080'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-bubble-short-in-c.html' title='WAP of Bubble Short in C++'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-6414154779795666011</id><published>2012-03-29T09:45:00.001-07:00</published><updated>2012-03-29T09:49:28.489-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C plus plus"/><category scheme="http://www.blogger.com/atom/ns#" term="C++"/><category scheme="http://www.blogger.com/atom/ns#" term="Linear Search"/><title type='text'>WAP of Linear Search in C++</title><content type='html'>&lt;font color=&quot;green&quot;&gt; /*WAP of Linear Search in C++*/ &lt;/font&gt; &lt;pre&gt;#include&amp;lt;iostream.h&amp;gt;
#include&amp;lt;conio.h&amp;gt;

class linearSearch
{
 int size, a[100],item;
 public:
 void setData();
 void searchItem();

};
void linearSearch :: setData()
{
 int i;
 cout &lt;&lt; &quot;\nEnter total number of elements: &quot; ;
 cin &gt;&gt; size;

 
 cout &lt;&lt; &quot;\nEnter elements: &quot;;
 for(i=0;i&lt;size;i++)
  cin &gt;&gt; a[i];

 cout &lt;&lt; &quot;\nEnter Item which you want to find: &quot;;
 cin &gt;&gt; item;

}
void linearSearch :: searchItem()
{
 int k=1, loc=0;
 while(loc==0 &amp;&amp; k&lt;=size)
 {
  if(item == a[k-1])
  {
   loc = k;
  }
  k +=1;
 }
 if(loc==0)
  cout &lt;&lt; &quot;\n&quot; &lt;&lt; item &lt;&lt; &quot; isn&#39;t Found.&quot;;
 else
  cout &lt;&lt; &quot;\n&quot; &lt;&lt; item &lt;&lt; &quot; at Location &quot; &lt;&lt; loc;
}

void main()
{
 clrscr();
 linearSearch bsrch;
 bsrch.setData();
 bsrch.searchItem();

 getch();
}
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/6414154779795666011/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-linear-search-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6414154779795666011'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6414154779795666011'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-linear-search-in-c.html' title='WAP of Linear Search in C++'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-4663472983922367086</id><published>2012-03-29T09:43:00.000-07:00</published><updated>2012-03-29T09:43:35.925-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="java program"/><category scheme="http://www.blogger.com/atom/ns#" term="matrix"/><title type='text'>WAP of Matrix Multiplication in Java</title><content type='html'>&lt;font color=&quot;green&quot;&gt; &lt;br /&gt;
/*WAP of Matrix Multiplication in Java*/ &lt;/font&gt; &lt;pre&gt;
import java.lang.*;
import java.io.*;
import java.util.*;
class matrix
{
 public static void main (String args[]) throws IOException
 {
  int a[][] = new int[2][2];
  int b[][] = new int[2][2];
  int c[][] = new int[2][2];
  
  Scanner sc = new Scanner(System.in);
  System.out.println(&quot;Enter Elements of Matrix 1&quot;);
  for(int i=0; i&lt;2; i++)
  {
   for(int j=0; j&lt;2; j++)
   {
   a[i][j] = sc.nextInt();
   }
  }

  System.out.println(&quot;Enter Elements of Matrix 2&quot;);
  for(int i=0; i&lt;2; i++)
  {
   for(int j=0; j&lt;2; j++)
   {
   b[i][j] = sc.nextInt();
   }
  }
  // calculation
  for(int i=0; i&lt;2; i++)
  {
   for(int j=0; j&lt;2; j++)
   {
    for(int k=0; k&lt;2; k++)
    {
   c[i][j] += a[i][k] * b[k][j];
    }
   }
  }
  System.out.println(&quot;Matrix After multiplication&quot;);
  for(int i=0; i&lt;2; i++)
  {
   for(int j=0; j&lt;2; j++)
   {
   System.out.println( &quot;\t&quot; + c[i][j] );
   }
  }
 }
}
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/4663472983922367086/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-matrix-multiplication-in-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/4663472983922367086'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/4663472983922367086'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-matrix-multiplication-in-java.html' title='WAP of Matrix Multiplication in Java'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-7521644677927371639</id><published>2012-03-20T09:07:00.000-07:00</published><updated>2012-03-20T09:07:43.906-07:00</updated><title type='text'>WAP of Simpson&#39;s 1/3</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;color: green;&quot;&gt; /* WAP of Simpson&#39;s 1/3 */ &lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;#include&amp;lt;stdio.h&amp;gt;
#include&amp;lt;conio.h&amp;gt;
void main()
{
 float x[100],y[100],odd, even,fx,h;
 int size,i;
 clrscr();
 printf(&quot;How many value you want to enter: &quot;);
 scanf(&quot;%d&quot;,&amp;amp;size);

 for(i=0; i&amp;lt;size; i++)
 {
  printf(&quot;Enter elements of x[%d]:\n&quot;,i);
  scanf(&quot;%f&quot;,&amp;amp;x[i]);
  printf(&quot;Enter elements of y[%d]:\n&quot;,i);
  scanf(&quot;%f&quot;,&amp;amp;y[i]);
 }
 h = x[2]-x[1];
 printf(&quot;\nh = %f&quot;,h);
 for(i=1; i&amp;lt;size-1; i++)
 {
  if(i%2==0)
  {
   even += 2*y[i];
  }
  else //if(i%2 != 0)
  {
   odd += 4*y[i];
  }
 }

 fx = ( h/3) * ( y[0] + y[size-1] + odd + even );
 printf(&quot;\nf(x)= %f&quot;,fx);
 getch();
}
&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/7521644677927371639/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-simpsons-13.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/7521644677927371639'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/7521644677927371639'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2012/03/wap-of-simpsons-13.html' title='WAP of Simpson&#39;s 1/3'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-49818748985215192</id><published>2011-12-05T02:52:00.001-08:00</published><updated>2011-12-05T02:53:25.700-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Array of Structure"/><category scheme="http://www.blogger.com/atom/ns#" term="C Program"/><category scheme="http://www.blogger.com/atom/ns#" term="structure"/><category scheme="http://www.blogger.com/atom/ns#" term="Student record"/><title type='text'>Student record using Array of Structure in c</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;color: green;&quot;&gt; /*WAP of Student record using Array of Structure in c*/ &lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;#include&amp;lt;stdio.h&gt;
#include&amp;lt;conio.h&gt;
struct student
{
 int rollno, marks1,marks2,marks3,tot;
 char name[25],grade;
 float per;
};
void main()
{
 struct student s[5];     //Data type of &#39;*s&#39; is struct student
 int i;
 clrscr();
 printf(&quot;\t*Students Records*\n&quot;);
 //take input from user
 for (i=0; i&lt;5; i++)
 {
 printf(&quot;\nEnter Student Roll Number: &quot;);
 scanf(&quot;%d&quot;, &amp;s[i].rollno);
 printf(&quot;\nEnter Student name: &quot;);
 scanf(&quot;%s&quot;, s[i].name);
 printf(&quot;\nEnter Student 3 subject&#39;s marks: &quot;);
 scanf(&quot;%d%d%d&quot;, &amp;s[i].marks1,&amp;s[i].marks2,&amp;s[i].marks3);
 //calculation
 s[i].tot = s[i].marks1 + s[i].marks2 + s[i].marks3;
 s[i].per = s[i].tot/3;
 if(s[i].per&gt;=75){
  s[i].grade = &#39;A&#39;;
 }
 else if(s[i].per&lt;75 &amp;&amp; s[i].per&gt;=60){
  s[i].grade = &#39;B&#39;;
 }
 else if(s[i].per&lt;60 &amp;&amp; s[i].per&gt;=50){
  s[i].grade = &#39;C&#39;;
 }
 else if(s[i].per&lt;50 &amp;&amp; s[i].per&gt;=40){
  s[i].grade = &#39;D&#39;;
 }
 else if(s[i].per&lt;40 &amp;&amp; s[i].per&gt;=33){
  s[i].grade = &#39;E&#39;;
 }
 else {
  s[i].grade = &#39;F&#39;;
 }
 }
 //Display result
 for (i=0; i&lt;5; i++)
 {
 printf(&quot;\n==================================\n&quot;);
 printf(&quot;\nStudent&#39;s Roll no. - %d&quot;, s[i].rollno);
 printf(&quot;\nStudent&#39;s Name - %s&quot;, s[i].name);
 printf(&quot;\nStudent&#39;s Total Marks - %d&quot;, s[i].tot);
 printf(&quot;\nStudent&#39;s Percentage - %f&quot;, s[i].per);
 printf(&quot;\nStudent&#39;s Grade - %c&quot;, s[i].grade);
 }
 getch();
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/49818748985215192/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/12/student-record-using-array-of-structure.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/49818748985215192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/49818748985215192'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/12/student-record-using-array-of-structure.html' title='Student record using Array of Structure in c'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-5554853321018614955</id><published>2011-12-05T02:51:00.000-08:00</published><updated>2011-12-05T02:51:31.026-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C Program"/><category scheme="http://www.blogger.com/atom/ns#" term="structure"/><category scheme="http://www.blogger.com/atom/ns#" term="Student record"/><title type='text'>Student record using Structure in c</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;color: green;&quot;&gt; /*WAP of Student record using Structure in c*/ &lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;#include&amp;lt;stdio.h&amp;gt;
#include&amp;lt;conio.h&amp;gt;
struct student
{
 int rollno, marks1,marks2,marks3,tot;
 char name[25],grade;
 float per;
};
void main()
{
 struct student s;  //Data type of &#39;*s&#39; is struct student
 clrscr();
 //take input from user
 printf(&quot;Enter Student Roll Number: &quot;);
 scanf(&quot;%d&quot;, &amp;amp;s.rollno);
 printf(&quot;\nEnter Student name: &quot;);
 scanf(&quot;%s&quot;, s.name);
 printf(&quot;\nEnter Student 3 subject&#39;s marks: &quot;);
 scanf(&quot;%d%d%d&quot;, &amp;amp;s.marks1,&amp;amp;s.marks2,&amp;amp;s.marks3);
 //calculation
 s.tot = s.marks1 + s.marks2 + s.marks3;
 s.per = s.tot/3;
 if(s.per&amp;gt;=75){
  s.grade = &#39;A&#39;;
 }
 else if(s.per&amp;lt;75 &amp;amp;&amp;amp; s.per&amp;gt;=60){
  s.grade = &#39;B&#39;;
 }
 else if(s.per&amp;lt;60 &amp;amp;&amp;amp; s.per&amp;gt;=50){
  s.grade = &#39;C&#39;;
 }
 else if(s.per&amp;lt;50 &amp;amp;&amp;amp; s.per&amp;gt;=40){
  s.grade = &#39;D&#39;;
 }
 else if(s.per&amp;lt;40 &amp;amp;&amp;amp; s.per&amp;gt;=33){
  s.grade = &#39;E&#39;;
 }
 else {
  s.grade = &#39;F&#39;;
 }
 //Display result
 printf(&quot;\n==================================\n&quot;);
 printf(&quot;\nStudent&#39;s Roll no. - %d&quot;, s.rollno);
 printf(&quot;\nStudent&#39;s Name - %s&quot;, s.name);
 printf(&quot;\nStudent&#39;s Total Marks - %d&quot;, s.tot);
 printf(&quot;\nStudent&#39;s Percentage - %f&quot;, s.per);
 printf(&quot;\nStudent&#39;s Grade - %c&quot;, s.grade);

 getch();
}
&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/5554853321018614955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/12/student-record-using-structure-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/5554853321018614955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/5554853321018614955'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/12/student-record-using-structure-in-c.html' title='Student record using Structure in c'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-908219416162526669</id><published>2011-11-15T09:53:00.000-08:00</published><updated>2011-11-15T09:57:53.330-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="array"/><category scheme="http://www.blogger.com/atom/ns#" term="C Program"/><category scheme="http://www.blogger.com/atom/ns#" term="length of array"/><title type='text'>length of array in c</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;color: green;&quot;&gt;/*WAP to Calculate length of array in c*/&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;#include&amp;lt;stdio.h&amp;gt;
#include&amp;lt;conio.h&amp;gt;
&lt;/pre&gt;&lt;code&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;conio.h&gt;&lt;/conio.h&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #7f0055;&quot;&gt;&lt;b&gt;int&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;array&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #990000;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;=&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;{&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #990000;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #990000;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #990000;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #990000;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #990000;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;,&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #990000;&quot;&gt;6&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #7f0055;&quot;&gt;&lt;b&gt;void&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;main&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;()&amp;nbsp;{&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;clrscr&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;()&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #7f0055;&quot;&gt;&lt;b&gt;int&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;len=sizeof&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;array&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;/sizeof&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #7f0055;&quot;&gt;&lt;b&gt;int&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #2a00ff;&quot;&gt;&quot;Length&amp;nbsp;Of&amp;nbsp;Array=%d&quot;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;,&amp;nbsp;len&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;getch&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;()&lt;/span&gt;&lt;span style=&quot;color: black;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: black;&quot;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgd1Xyv2FWgmvRko3jJRBEciwy_tbwd7nyOAxHY-DerNzv-IeH6ha2Pqo4CyYB7vNfEey8MCH6pM8nhWcnYdHzfVpcac0_wAWMtr-O3vXbmoqTOiQ6a78ZaMhyphenhyphenzUZU1HRVUBAp7kRo_Hu0/s1600/ArrayLength.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgd1Xyv2FWgmvRko3jJRBEciwy_tbwd7nyOAxHY-DerNzv-IeH6ha2Pqo4CyYB7vNfEey8MCH6pM8nhWcnYdHzfVpcac0_wAWMtr-O3vXbmoqTOiQ6a78ZaMhyphenhyphenzUZU1HRVUBAp7kRo_Hu0/s1600/ArrayLength.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;code&gt;&lt;span style=&quot;color: black;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/code&gt; &lt;br /&gt;
&lt;pre&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/908219416162526669/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/11/length-of-array-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/908219416162526669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/908219416162526669'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/11/length-of-array-in-c.html' title='length of array in c'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgd1Xyv2FWgmvRko3jJRBEciwy_tbwd7nyOAxHY-DerNzv-IeH6ha2Pqo4CyYB7vNfEey8MCH6pM8nhWcnYdHzfVpcac0_wAWMtr-O3vXbmoqTOiQ6a78ZaMhyphenhyphenzUZU1HRVUBAp7kRo_Hu0/s72-c/ArrayLength.gif" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-4789749077238182845</id><published>2011-02-14T21:23:00.000-08:00</published><updated>2011-02-14T21:23:23.283-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Windows 7 Tricks"/><title type='text'>Save downloads to a different directory</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
Save downloads to a different directory.&lt;br /&gt;
These tips apply primarily to Windows 7&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;fie Windows 7 Downloads directory sounds convenient, but since few&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;users ever go browsing there, downloaded files may be forgotten for&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;days. Most browsers will default to downloading into this directory.&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;Firefox and Chrome users can change this relatively easily, though,&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;to something more convenient. In Firefox, click Tools Options. Under&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;the General tab, change the ‘Save files to’ setting to the directory&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;of your choice. In Google Chrome, click the Tools icon (it looks like&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;a wrench), then Options. Click the Minor Tweaks tab and change the&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;‘Download location’ setting there. IE users unfortunately have to hack&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;the Registry to make this change (a step that only power users should&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;consider taking).

&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/4789749077238182845/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/02/save-downloads-to-different-directory.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/4789749077238182845'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/4789749077238182845'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/02/save-downloads-to-different-directory.html' title='Save downloads to a different directory'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-7458951112950568363</id><published>2011-01-28T14:08:00.000-08:00</published><updated>2011-01-28T14:08:03.597-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Windows 7 Tricks"/><title type='text'>Use Windows’ Problem Steps Recorder</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
Use Windows’ Problem Steps Recorder.&lt;br /&gt;
These tips apply primarily to Windows 7&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;Tech support calls are a pain. If you’re having computer problems,&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;don’t get stuck on an endless phone call trying to explain the&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;difficulty. Run Windows’ Problem Steps Recorder to save a step by&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;step history of what you’re doing so you can share it with a friend&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;or tech support pro. Type PSR in the Start menu search box to find&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;and run the recorder. Then go through the steps that lead to your&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;problem; PSR will record a screenshot of each step, logging everything&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;you type and click. When you’re finished, click the Stop button and save&lt;/pre&gt;&lt;pre&gt;the file. E-mail the archive to someone who’s better informed for a&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;solution. (Note: this resource can also be used to make quick-and-dirty&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;tutorials.)
&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/7458951112950568363/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/01/use-windows-problem-steps-recorder.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/7458951112950568363'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/7458951112950568363'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/01/use-windows-problem-steps-recorder.html' title='Use Windows’ Problem Steps Recorder'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-6593992760592029094</id><published>2011-01-24T05:55:00.000-08:00</published><updated>2011-01-24T05:55:37.855-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="LIKE command"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>LIKE command with % when character at middle</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
LIKE command with % when character at middle&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;select stdName,stdAddress
from student
where stdAddress like &#39;%a%&#39;
&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/6593992760592029094/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/01/like-command-with-when-character-at_24.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6593992760592029094'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6593992760592029094'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/01/like-command-with-when-character-at_24.html' title='LIKE command with % when character at middle'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-7544310455455440552</id><published>2011-01-12T17:23:00.000-08:00</published><updated>2011-01-12T17:23:01.038-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="LIKE command"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>LIKE command with % when character at starting</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
LIKE command with % when character at starting&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;select stdName,stdAddress
from student
where stdName like &#39;A%&#39;
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/7544310455455440552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/01/like-command-with-when-character-at.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/7544310455455440552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/7544310455455440552'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/01/like-command-with-when-character-at.html' title='LIKE command with % when character at starting'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-855221256217849540</id><published>2011-01-09T01:09:00.000-08:00</published><updated>2011-01-09T01:09:54.031-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="LIKE command"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>LIKE command when with % character at ending</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
LIKE command when with % character at ending&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;select stdName,stdAddress
from student
where stdName like &#39;%a&#39;
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/855221256217849540/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2011/01/like-command-when-with-character-at.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/855221256217849540'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/855221256217849540'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2011/01/like-command-when-with-character-at.html' title='LIKE command when with % character at ending'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-4168777002039177188</id><published>2010-12-29T13:51:00.000-08:00</published><updated>2010-12-29T13:51:23.052-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="LIKE command"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>LIKE command</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
LIKE command&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;select stdName,stdAddress
from student
where stdName like &#39;ABC&#39;
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/4168777002039177188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/12/like-command.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/4168777002039177188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/4168777002039177188'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/12/like-command.html' title='LIKE command'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-5957416309618677123</id><published>2010-12-26T17:56:00.000-08:00</published><updated>2010-12-26T18:00:39.217-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Windows 7 Tricks"/><title type='text'>Give yourself more screen real estate in Windows 7’s</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;&lt;br /&gt;
Give yourself more screen real estate in Windows 7’s.&lt;br /&gt;
These tips apply primarily to &lt;span&gt;Windows 7&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;pre&gt;You can shrink Windows 7’s oversize taskbar icons by right-clicking the taskbar, &lt;/pre&gt;choosing Properties, and selecting Use small icons. This option shrinks the size of the taskbar by half, giving you a few extra millimeters of vertical screen space.&lt;br /&gt;
&lt;iframe align=&quot;left&quot; frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://rcm.amazon.com/e/cm?t=azamworld-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B002MV2MG0&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr&quot; style=&quot;align: left; height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;&quot;&gt;&lt;/iframe&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/5957416309618677123/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/12/give-yourself-more-screen-real-estate.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/5957416309618677123'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/5957416309618677123'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/12/give-yourself-more-screen-real-estate.html' title='Give yourself more screen real estate in Windows 7’s'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-688718682752935285</id><published>2010-12-14T04:15:00.000-08:00</published><updated>2010-12-14T04:15:06.437-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="PL/SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><category scheme="http://www.blogger.com/atom/ns#" term="while loop"/><title type='text'>WAP to use while loop in PL/SQL</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
WAP to use while loop in PL/SQL&lt;br /&gt;
step-1 &lt;/span&gt;&lt;br /&gt;
&lt;pre&gt;&lt;span style=&quot;color: green;&quot;&gt;RUN THIS COMMAND&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;
&lt;pre&gt;create table tb1(id number);
&lt;span style=&quot;color: green;&quot;&gt;  
IF SUCCESSFULLY RUN THEN WRITE PL/SQL COMMAND
step-2
&lt;/span&gt;
declare
vid number:=0;
begin
while(vid&amp;lt;=10)
loop
insert into tb1(id)
values(vid);
vid:=vid+1;
dbms_output.put_line(vid);
end loop;
end;
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/688718682752935285/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/12/wap-to-use-while-loop-in-plsql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/688718682752935285'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/688718682752935285'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/12/wap-to-use-while-loop-in-plsql.html' title='WAP to use while loop in PL/SQL'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-1750265113975419632</id><published>2010-12-07T03:14:00.000-08:00</published><updated>2010-12-07T03:14:53.013-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="for loop"/><category scheme="http://www.blogger.com/atom/ns#" term="PL/SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>WAP to use for-loop in PL/SQL</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
WAP to use for-loop in PL/SQL&lt;br /&gt;
step-1&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;create table tb1(id number);
&lt;span style=&quot;color: green;&quot;&gt;  
RUN THIS COMMAND, IF SUCCESSFULLY RUN THEN WRITE PL/SQL COMMAND
step-2
&lt;/span&gt;
declare
vid number:=0;
begin
for vid in 1..10
loop
insert into tb1(id)
values(vid);

dbms_output.put_line(vid);
end loop;
end;
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/1750265113975419632/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/12/wap-to-use-for-loop-in-plsql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/1750265113975419632'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/1750265113975419632'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/12/wap-to-use-for-loop-in-plsql.html' title='WAP to use for-loop in PL/SQL'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-3860300409528068749</id><published>2010-12-06T04:27:00.000-08:00</published><updated>2011-01-02T15:51:02.775-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Windows 7 Tricks"/><title type='text'>Lowercase all-capitals text in a trice</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
Lowercase all-capitals text in a trice.&lt;br /&gt;
These tips apply primarily to Windows 7&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;In Microsoft Office apps, convert the text to lowercase by&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;selecting it and pressing shift + f3.&lt;/pre&gt;&lt;pre&gt;&lt;shift&gt;&lt;f3&gt;Press &lt;shift&gt;&lt;f3&gt; a second time to convert the text to title case.&amp;nbsp;&lt;/f3&gt;&lt;/shift&gt;&lt;/f3&gt;&lt;/shift&gt;&lt;/pre&gt;&lt;pre&gt;&lt;shift&gt;&lt;f3&gt;&lt;shift&gt;&lt;f3&gt;&lt;iframe align=&quot;left&quot; frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://rcm.amazon.com/e/cm?t=azamworld-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B00337D8U6&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr&quot; style=&quot;height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;&quot;&gt;&lt;/iframe&gt;&amp;nbsp;&lt;/f3&gt;&lt;/shift&gt;&lt;/f3&gt;&lt;/shift&gt;&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/3860300409528068749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/12/lowercase-all-capitals-text-in-trice.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/3860300409528068749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/3860300409528068749'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/12/lowercase-all-capitals-text-in-trice.html' title='Lowercase all-capitals text in a trice'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-5106351978869935631</id><published>2010-12-04T04:35:00.000-08:00</published><updated>2010-12-04T04:35:07.252-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cursor"/><category scheme="http://www.blogger.com/atom/ns#" term="PL/SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>WAP to use cursor in pl/sql</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
WAP to use cursor in pl/sql&lt;br /&gt;
step-1 create a table&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;create table student(stdRollNo number, stdName varchar2(25),&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;stdClass varchar2(25));
&lt;span style=&quot;color: green;&quot;&gt;  
RUN these COMMAND IF SUCCESSFULLY RUN THEN WRITE
step-2 insert 2 or more values
&lt;/span&gt;
insert into student
values(01,&#39;ABC&#39;,&#39;XII&#39;);
&lt;span style=&quot;color: green;&quot;&gt;  
RUN these COMMANDs, IF SUCCESSFULLY RUN THEN WRITE PL/SQL COMMAND
step-3
&lt;/span&gt;  
declare
vid number;
vname varchar2(25);
cursor std is
select stdRollno,stdName 
from
student
where stdClass=&#39;XII&#39;;

begin
open std;
loop
fetch std into vid,vname;
exit when std%notfound;
dbms_output.put_line(vid);
end loop;
close std;
end;
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/5106351978869935631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/12/wap-to-use-cursor-in-plsql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/5106351978869935631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/5106351978869935631'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/12/wap-to-use-cursor-in-plsql.html' title='WAP to use cursor in pl/sql'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-3494598801251405252</id><published>2010-11-29T04:19:00.000-08:00</published><updated>2010-11-29T04:19:53.165-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="for-reverse loop"/><category scheme="http://www.blogger.com/atom/ns#" term="PL/SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>WAP to use for-reverse loop in PL/SQL</title><content type='html'>&lt;font color=&quot;green&quot;&gt;  &lt;br /&gt;
WAP to use for-reverse loop in PL/SQL&lt;br /&gt;
step-1&lt;br /&gt;
&lt;/font&gt; &lt;pre&gt;create table tb1(id number);
&lt;font color=&quot;green&quot;&gt;  
RUN THIS COMMAND, IF SUCCESSFULLY RUN THEN WRITE PL/SQL COMMAND
step-2
&lt;/font&gt;
declare
vid number:=0;
begin
for vid in reverse 1..10
loop
insert into tb1(id)
values(vid);

dbms_output.put_line(vid);
end loop;
end;
&lt;/pre&gt;&lt;iframe src=&quot;http://rcm.amazon.com/e/cm?t=azamworld-20&amp;o=1&amp;p=8&amp;l=bpl&amp;asins=067233044X&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr&quot; style=&quot;align:left;padding-top:5px;width:131px;height:245px;padding-right:10px;&quot;align=&quot;left&quot; scrolling=&quot;no&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; frameborder=&quot;0&quot;&gt;&lt;/iframe&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/3494598801251405252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/11/wap-to-use-for-reverse-loop-in-plsql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/3494598801251405252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/3494598801251405252'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/11/wap-to-use-for-reverse-loop-in-plsql.html' title='WAP to use for-reverse loop in PL/SQL'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-2542079264021825979</id><published>2010-11-27T20:28:00.000-08:00</published><updated>2011-01-02T15:53:36.573-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="PL/SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="procedure"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>WAP to use procedure in pl/sql</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
WAP to use procedure in pl/sql&lt;br /&gt;
step-1 create a table&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;create table student(stdRollNo number, stdName varchar2(25)&lt;/pre&gt;&lt;pre&gt;, stdClass varchar2(25));
&lt;span style=&quot;color: green;&quot;&gt;  
RUN these COMMANDs, IF SUCCESSFULLY RUN THEN WRITE PL/SQL COMMAND
step-2
&lt;/span&gt; 
create or replace procedure
print(vid number,vname varchar2(25))
is
begin
insert into student(stdRollno,stdName)
values(vid,vname);
end print; 
&lt;span style=&quot;color: green;&quot;&gt; 
RUN these COMMANDs, IF SUCCESSFULLY RUN THEN WRITE following&amp;nbsp;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style=&quot;color: green;&quot;&gt;COMMAND
step-3
&lt;/span&gt; 
begin
print(01,&#39;xyz&#39;);
end print;&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;&lt;iframe align=&quot;left&quot; frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://rcm.amazon.com/e/cm?t=azamworld-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0672325675&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr&quot; style=&quot;height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;&quot;&gt;&lt;/iframe&gt;&amp;nbsp;&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/2542079264021825979/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/11/wap-to-use-procedure-in-plsql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2542079264021825979'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2542079264021825979'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/11/wap-to-use-procedure-in-plsql.html' title='WAP to use procedure in pl/sql'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-2304821973754903149</id><published>2010-11-27T00:23:00.000-08:00</published><updated>2010-11-27T00:23:04.864-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="OR command"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>OR command</title><content type='html'>&lt;font color=&quot;green&quot;&gt;  &lt;br /&gt;
OR command&lt;br /&gt;
&lt;/font&gt; &lt;pre&gt;select stdName 
from student
where stdRollno=2 or stdRollno=3
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/2304821973754903149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/11/or-command.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2304821973754903149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2304821973754903149'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/11/or-command.html' title='OR command'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-2382065998313275012</id><published>2010-11-25T01:20:00.000-08:00</published><updated>2011-01-02T15:56:12.767-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Windows 7 Tricks"/><title type='text'>Customize your system tray</title><content type='html'>&lt;span style=&quot;color: green;&quot;&gt;  &lt;br /&gt;
Customize your system tray.&lt;br /&gt;
These tips apply primarily to Windows 7&lt;br /&gt;
&lt;/span&gt; &lt;br /&gt;
&lt;pre&gt;Windows 7 helpfully decreases the amount of space dedicated to&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;the Notification Area by putting all but the most essential&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;notifications within a drop-down (or, in this case, drop-up)&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;box. It looks nice, but you can burn lots of time with wasted&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;clicks as you hunt for what you need. If you want regular,&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;click-free access to some of these notifications, change the&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;default layout. It’s easy to do. Just open the tray’s spillover&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;window and drag the icons you want to the taskbar area. You can&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;rearrange icons within the added window, too.&amp;nbsp;&lt;/pre&gt;&lt;pre&gt;&lt;iframe align=&quot;left&quot; frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://rcm.amazon.com/e/cm?t=azamworld-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=B002JYU5WI&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr&quot; style=&quot;height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;&quot;&gt;&lt;/iframe&gt;&amp;nbsp;&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/2382065998313275012/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/11/customize-your-system-tray.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2382065998313275012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/2382065998313275012'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/11/customize-your-system-tray.html' title='Customize your system tray'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3658909462161071259.post-6424978931757558910</id><published>2010-11-24T03:35:00.000-08:00</published><updated>2010-11-24T03:35:55.749-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="NOT command"/><category scheme="http://www.blogger.com/atom/ns#" term="sql"/><title type='text'>NOT command</title><content type='html'>&lt;font color=&quot;green&quot;&gt;  &lt;br /&gt;
NOT command&lt;br /&gt;
&lt;/font&gt; &lt;pre&gt;select * 
from student
where not stdAddress=&#39;gao&#39;
&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;codezworld - A blog of programs By MAK&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codezworld.blogspot.com/feeds/6424978931757558910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://codezworld.blogspot.com/2010/11/not-command.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6424978931757558910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3658909462161071259/posts/default/6424978931757558910'/><link rel='alternate' type='text/html' href='http://codezworld.blogspot.com/2010/11/not-command.html' title='NOT command'/><author><name>arshi4u</name><uri>http://www.blogger.com/profile/07030966912585691568</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEhV8wbVBgF3zXoi7DDMiTPhgNAy7ui8aHBYlhaoB2DLMHdR44mCizyYzgQJZUpPW_aCaQLmfjRX5n3sKOEzCxAGolBWTmCNgwABOy2y5FiaBGJ6VqmDoYBvcpGMoQ1rU/s220/B1.jpg'/></author><thr:total>0</thr:total></entry></feed>