Tag Archives: Design

HTML22 Design an HTML Page for the “Block Introduction” of this book.

Design an HTML Page for the “Block Introduction” of this book: The page should allow scrolling and the code should contain a comment header with your name and enrolment number. Design an HTML Page for the “Block Introduction” of this book: The page should allow scrolling and the code should contain a comment header with… Read More »

HTML20 Design an HTML Page having 3 images placed in the following format

Design an HTML Page having 3 images placed in the following format.   Let us take a look at the syntax of the <IMG> tag: <IMG SRC = “FILENAME.GIF” WIDTH = “value” HEIGHT = “value” ALT = “alternate text” BORDER = “value” ALIGN = “value”> SRC: This attribute specifies the pathname to the source file… Read More »

HTML06 Design a page having background colour yellow, giving text colour red and using all the attributes of font tab.

Design a page having background colour yellow, giving text colour red and using all the attributes of font tab.   Design a page having background colour yellow, giving text colour red and using all the attributes of font tab. Html code: [codesyntax lang=”html4strict”] <!DOCTYPE html> <HTML> <HEAD> <TITLE>CSSimplified.com HTML5</TITLE> </HEAD> <BODY> <FONT><B>CSSimplified.com</B></FONT> <P><FONT><I>CSSimplified.com</I></FONT> </P> <P><FONT><U>CSSimplified.com</U></FONT>… Read More »

HTML03 Write an HTML code to design a page containing text, in form of paragraphs giving suitable heading style.

Write an HTML code to design a page containing text, in form of paragraphs giving suitable heading style. Write an HTML code to design a page containing text, in form of paragraphs giving suitable heading style. Html code: [codesyntax lang=”html4strict”] hh<!DOCTYPE html> <HTML> <HEAD> <TITLE>CSSimplified.com HTML 3</TITLE> </HEAD> <BODY> <H1>CSSimplified.com</H1> <P ALIGN=”justify”><B><I><BIG>About Us</BIG></I></B><BR> Computer Science… Read More »

Use a Karnaugh’s map to design if the output bit is 0 if the first and fourth input are same else it is 1 for 4 input bits – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-012 Course Title : Computer Organisation and Assembly Language Programming Assignment Number : MCA(I)/012/Assignment/15-16 Maximum Marks : 100 Weightage : 25%   Use a Karnaugh’s map to design a circuit that takes four input bits and produces one output bit. The output bit is 0 if the first… Read More »

Design a two bit counter (a sequential circuit) that counts from 00 to 10 only – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-012 Course Title : Computer Organisation and Assembly Language Programming Assignment Number : MCA(I)/012/Assignment/15-16 Maximum Marks : 100 Weightage : 25% Design a two bit counter (a sequential circuit) that counts from 00 to 10 only. Thus, the counter states are 00, 01, 10, 00, 01,…. You should… Read More »

Design a two bit down counter circuit that count from 11 to 00 – IGNOU MCA Assignment 2015 – 16

Design a two bit down counter circuit that count from 11 to 00. The initial state of the counter may be assumed to be 11. The counter will be in following successive states: 11, 10, 01, 00, 11, 10, 01, 00, 11 … Use any flip flop to design the circuit. You must design them… Read More »

Design an algorithm, draw a corresponding flow chart and write a ‘C’ program for Binary Search, to search a given number among the list of numbers. 10m Dec2007

Design an algorithm, draw a corresponding flow chart and write a ‘C’ program for Binary Search, to search a given number among the list of numbers. 10m Dec2007   Algorithm Step 1: Declare an array ‘k’ of size ‘n’ i.e. k(n) is an array which stores all the keys of a file containing ‘n’ records… Read More »

Design and draw a master-slave flip flop using JK flipflops. What are the advantages it offers over other flip flops? 10m Jun2007

Design and draw a master-slave flip flop using JK flipflops. What are the advantages it offers over other flip flops? 10m Jun2007 Master Slave Flip Flop Master-slave flip flop consists of two flip-flops. One is the master flip-flop & other is called the slave flip-flop. The figure shows implementation of master-slave flipflop using J-K flip-flop.… Read More »