3. Elements of Civil Engineering (CIV 23)
4. Elements of Mechanical Engineering (MES 14)
5. Basic Electrical Engineering (ELE 15)
7. Computers Concepts and C Programming (CCP 13)
8. Basic Electronics (ELN 15)All news about Vtu.. many of which u wont get on its official website even.. On top of it.. many of u would surely been frustrated visiting the boring and complicated site of our university.. then this is the place for you..
3. Elements of Civil Engineering (CIV 23)
4. Elements of Mechanical Engineering (MES 14)
5. Basic Electrical Engineering (ELE 15)
7. Computers Concepts and C Programming (CCP 13)
8. Basic Electronics (ELN 15)Posted by Biplav at 3:59 AM 5 comments
Labels: First Semester, Second Semester
CCP Lab
Blowup Syllabus
Model Question PapersCCP Theory
Engineering Chemistry Lab
Blowup Syllabus
Model Question PapersEngineering Chemistry Theory
Engineering Methematics I
Blowup Syllabus
Model Question PapersEngineering Methematics II
CAED
Blowup Syllabus
Model Question PapersEME
Blowup Syllabus
Model Question PapersWorkshop Lab
Engineering Physics Lab
Blowup Syllabus
Model Question PapersEngineering Physics Theory
Posted by Biplav at 8:35 AM 7 comments
Labels: First Semester, question papers, Second Semester, Syllabus book
MODEL QUESTION PAPER FOR Seventh Semester B.E. Degree Examination (Common to all branches) Constitution of India & Professional Ethics.
Posted by Biplav at 8:32 AM 3 comments
Labels: CIP, question papers, Seventh Semester
Draft Syllabus of MBA Syllabus
MBA Revised Syllabus 2005
MBA Ist Semester subject Codes
MBA IInd Semester subject Codes
MBA IIIrd Semester subject Codes
MBA IVth Semester subject Codes
Posted by Biplav at 8:30 AM 0 comments
Labels: MBA, Syllabus book
Model Question Paper For VI semester Students
Posted by Biplav at 8:36 AM 5 comments
Labels: question papers, Sixth Semester
Posted by Biplav at 3:42 AM 0 comments
Labels: Analog Communication, Laboratory
Draft Scheme & Syllabus for MBA course 2008-09.
Posted by Biplav at 3:38 PM 0 comments
Labels: MBA, Syllabus book
Posted by Biplav at 2:29 PM 1 comments
Labels: time table
Click on the link below to get the time table of your choice..
Layout
(general layout)
B.E. I and II
B.E. III
B.E. III and IV
B.E. V
B.E. VI
B.E. VII
B.E. VII ...
B.E. VIII
B.Arch I to X
B.Arch. I to IV
B.E. III and IV
P.G. Time Table Layout
Page 1-52
(M.Tech Examination)
Page 53-55
(MBA Third Semester)
Page 56-58
(MCA I to V Semester old scheme.)
Posted by Biplav at 3:12 PM 3 comments
Labels: time table, vtu
Posted by Biplav at 3:06 PM 0 comments
Labels: B.Arch
Posted by Biplav at 2:47 PM 1 comments
Labels: Eight Semester, Fifth Semester, First Semester, fourth semester, ISE, IT, MBA, MCA, ME, Second Semester, Seventh Semester, Sixth Semester, TCE, Third Semester, time table, vtu
Input - Output (I/O)
– I/O devices are controlled by reading and/or writing bit
patterns to/from special registers associated with the
particular device. These registers are very similar to ordinary
memory locations, but are located on the I/O devices
interface card, which sits between the device and the
computer bus.
– These registers are connected to PORTS. One way of
remembering what a PORT means is P(ort) means
P(hysical) connection via wires to P(eripheral).
– On many computers (e.g. Motorola 68000) I/O devices are
all memory-mapped, that is their registers appear to the
CPU exactly like ordinary memory locations. Therefore there
are no special I/O instructions - the ordinary mov
instructions suffice.
I/O on the 8086 (D6)
– On the 8086 however most I/O is done via special in and
out instructions, which refer to a completely separate 16 bit
I/O memory-map.
– The out instruction writes a byte to a register associated
with an output device.
– Similarly the in instruction inputs a byte from an input
device.
The OUT instruction
The IN and out instructions are always used in conjuction with
the DX and AL registers.
out dx,al
– outputs the byte stored in al to the output port indicated by the
contents of dx. So
mov dx,4100
mov al,08
out dx,al
– Writes the bit pattern 00001000 to the output device connected to
port 4100. This bit pattern will have an effect that depends on the
device that is connected physically to the port at this address.
On a D6 it will output a 1 to the speaker.
The OUT Instruction
Select Port Data Sent to Port
– Bit7 Bit6 Bit5 Bit4 Bit3 Bit2 Bit1 Bit0
Port Address [4100] 0 0 0 0 1 0 0 0
Speaker
Output a “1” on bit 3 of byte sent to address 4100 switches the
Speaker “ON”.
Output a “0” on bit 3 of byte sent to address 4100 switches the
Speaker “OFF”.
Continuous ON/OFF/ON... switching of bit 3 creates an
ON/OFF/ON… pulse that causes the speaker to emit a sound.
The Displays
– Each display consists of 8 elements, the seven segments
that make up the characteristic "8" shape, and a small dot to
the bottom right of the "8". Each bit of the byte written to
4106 turns on or off one of these elements. Confusingly a 0
turns an element on, and a 1 turns it off (reverse logic). The
relationship between bits and elements is given below
bit 0 - top bar
bit 1 - top right bar
bit 2 - bottom right bar
bit 3 - bottom bar
bit 4 - bottom left bar
bit 5 - top left bar
bit 6 - middle bar
bit 7 - the dot
The Keypad
– The D6 keypad consists of three rows, each consisting of 8
keys.
– We use the OUT instruction to send out a signal (strobe) to
the keypad. We use the IN instruction to read back in the
signal as modified by a key-press.
– Two I/O registers are associated with the D6 keypad.
– To determine what key or keys are currently being held
down we strobe each row individually, by setting one of the
bottom three bits of the byte in address 4100 to zero.
– Bit 0 corresponds to the bottom row, bit 1 to the middle row,
and bit 2 to the top row.
– Again negative logic is being used, so by writing 110 to the
bottom three bits, we are actually strobing the bottom row,
101 corresponds to the middle row, and 011 to the top row.
- After issuing the strobe, we then read the contents of I/O
register 4101 to find out if a key or keys on that row are
being pressed down.
– Each bit from 4101 corresponds to a particular key, with 0
indicating that the key is depressed, 1 indicating that it is not.
Bit 0 corresponds to the leftmost key on the row, bit 7 to the
rightmost. If 4101 returns a value of 11111111, no keys are
being pressed.
.CODE
.STARTUP
start: mov dx,4100 ; Row Port Address Select
mov al,05 ; Select Middle Row
out dx,al ; Strobe Middle
mov dx,4101 ; Select Column Port Address
in al,dx ; Read in Keypress
Spring 2001 CA103 Computer Architecture
Posted by Biplav at 10:20 AM 1 comments
Labels: Advanced Microprocessors 8086, Fifth Semester, Laboratory
Question: hello sir ,i took change of college but still now i am not able to get my university number ,,from monday my exa,s r going to commence ,,in this regard i need clarification from vtu authorities.
Answer: In this regard, please contact your new college principal because he would be the best person to guide you.
Question: need information abt placement
Answer: Can you specify, what ki9nd of information is required regarding placements...
Question:within how muchyear we have to complete be degree for diploma holders
Answer: The total number of years allowed for a normal student is 8. I guess for diplomma holders it must be either 6 or 7. Would take up this issue with a stronger response in future.
Question: how to get model question papers for BE cs 3rd sem 2007 issued from vtu?
Answer: All the model papers for 3rd semester is available in respective depatments. Kindly contact your HOD.
Question: hi, i recieved 2 year backs after my 4th sem exams.. currently not elligible. would like to know if i would be elligible for college placements, if i complete my engg.. thank You.
Answer: The college placements are very much dependent on the company's requirement.. So, the issue entirely depends on the companies.. Not on the college..
Posted by Biplav at 8:30 AM 0 comments
Labels: Query
Note:The CIP exam for 7th sem is rescheduled to 24th December,2007.
Click on the image below to enlarge.
Posted by Biplav at 3:29 PM 12 comments
Labels: B.Arch, Eight Semester, Fifth Semester, First Semester, fourth semester, IEM, ISE, IT, Laboratory, ME, Second Semester, Seventh Semester, Sixth Semester, TCE, Third Semester, time table
Posted by Biplav at 11:01 AM 0 comments
Labels: Challenge Reval, Results, Revaluation
Ph. D Results announced.
1. Business Administration
2. Civil Engineering
3. Electrical Engineering
4. General Science
5. Mechanical Engineering
Challenge valuation results announced for
1. MBA
2. CED
Posted by Biplav at 10:59 AM 0 comments
Labels: vtu