Tag Archives: another

HTML09 Create a Web page with appropriate content and insert an image towards the left hand side of the page. When user clicks on the image, it should open another Web page

Create a Web page with appropriate content and insert an image towards the left hand side of the page. When user clicks on the image, it should open another Web page.   Let us take a look at the syntax of the <IMG> tag: <IMG SRC = “FILENAME.GIF” WIDTH = “value” HEIGHT = “value” ALT… Read More »

Write an algorithm and draw flowchart to find whether a given string S1 is substring of another string S2. 10m Dec2007

Write an algorithm and draw flowchart to find whether a given string S1 is substring of another string S2. 10m Dec2007   Algorithm Step 1: Input String and Substring (Note: Substring should be smaller than String) Step 2: Find Length of String (Len1) and Find Length of Substring (Len2) Step 3: flag <- 0 Step… Read More »

Write a program in C, to copy file1 to another file2 in the same directory 7m Jun2007

Write a program in C, to copy file1 to another file2 in the same directory. 7m Jun2007 Code: #include<stdio.h> void main() { int ch,size=0; FILE *fp1; FILE *fp2; clrscr(); if((fp1=fopen(“readme.txt”,”r”))==NULL) { printf(“FILE DOES NOT EXIST\n”); exit(0); } if((fp2=fopen(“duplicate.txt”,”w”))==NULL) { printf(“FILE CAN NOT BE CREATED\n”); exit(0); } while(!feof(fp1)) { ch=getc(fp1); putc(ch,fp2); size++; } fclose(fp1); fclose(fp2); printf(”… Read More »

An Assembly Program, which should add two 5-byte numbers (numbers are stored in array- NUM1 & NUM2), and stores the sum in another array named RESULT

Now we will write another Assembly Program, which should add two 5-byte numbers (numbers are stored in array- NUM1 & NUM2), and stores the sum in another array named RESULT. Let’s identify variables needed for this program. First variables will be the one which will hold the values present in the Given Arrays and it… Read More »