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
Bangalore region results announced for IV sem.
Posted by Biplav at 4:26 AM 0 comments
Labels: fourth semester, Revaluation
VTUNEWS brings to you a all new feature. To celebrate the 100 posts to the blog we bring you a feature that enable you to check your result directly from the VTUNEWS website. Just type in the USN No. on to the right under the flash news and click submit to see your result. Saving you the strain of opening the ever busy and slow VTU's official site.Just click back on checking your result to return to this page. So check your results here. And all the best!!! And keep visiting.
Posted by Biplav at 12:29 PM 0 comments
Labels: Results, Revaluation, vtu
B.E. IV semester revaluation results announced for Mysore region.
Bangalore region results expected anytime.
The link is here.
Posted by Biplav at 2:59 AM 2 comments
Labels: fourth semester, Results, Revaluation
B.E. III revaluation results announced.
B.E. IV semester revaluation results announced for Belgaum and Gulbarga region.
Mysore and Bangalore region results will be announced on 20-Nov-2007
The link is here.
Posted by Biplav at 5:28 AM 4 comments
Labels: fourth semester, Results, Revaluation, Third Semester
Course | Year of Admission | Year of completion | Last exam permitted under |
B.E./ B.Tech. | 1998-1999 | 2005-2006 | July -2008 |
1999-2000 | 2006-2007 | July -2009 | |
2000-2001 | 2007-2008 | July -2010 | |
2001-2002 | 2008-2009 | July -2011 | |
B.Arch. | 1998-1999 | 2008-2009 | July- 2011 |
1999-2000 | 2009-2010 | July- 2012 | |
2000-2001 | 2010-2011 | July- 2013 | |
2001-2002 | 2011-2012 | July- 2014 |
Posted by Biplav at 5:35 AM 38 comments
Posted by Biplav at 12:32 PM 0 comments
Labels: Fifth Semester, IEM, time table
Posted by Biplav at 12:29 PM 1 comments
Labels: Fifth Semester, time table
Query: sir i got year back after 4th sem this year.so pls tell me weather to study new syllabus or the old schmefor coming 5th sem..or tell me can we study old syllabus itself.
Answer: You are supposed to study the old syllabus, the same which you have previously studied.
Query: : sir..it is a query...i had a doubt...i joined engg in 2003...i was detained in 2nd sem due to attendance shortage..cme back n finished 2nd sem..then detained again cause i had mre than 4 backs...i cleared my subjects..i was elgible to enter into 3rd sem...but dropped a yr cause of medical reasons..nw its 2007..i have tken a fresh admission into 3rd sem...m in new syllabus..bt teachers are so anti-me they are plannin to detain me..i wanted to ask..whether if they detain me again 3rd sem..will i b awarded nft(not fit for technical)
Answer: You had taken 3 years extra already permitted. So you can't afford to get detained again. If you detained again then you wont be able to satisfy the 7 year max. limit. So you better talk to your teachers, i guess they would understand. And ya this time limit is university spoeacific, If you can get into some other university through lateral entry with little more flexibilities regarding year limit then you can easily complete your engineering. All the best!!
Query: respected sir, i am unable 2 find the syllabus for 7th sem IEM branch. kindly provide me with the above or provide me the link if its available on d net. thanking you,
Answer: We would try to get it as soon as possible. Please be patient.
Query: can u pls tell us on what criteria are grace marks given in challenge reval? (the challenge reval result sheet clearly has a column for grace marks and many of them have been awarded grace marks from 1 to 5)
Answer: Sorry, I am very much unaware about grace marks in Challenge Reval. Would try to confirm you the procedure as soon as possible.
Posted by Biplav at 11:59 AM 7 comments
Labels: Query
Query: I am Impressed ur website, as i want to know how to send Query?
Answer:Thanks for your appreciation. You just posted a query.
Query: Respected Sir I Need 1 Sem MBA Notes Plese send me or give me any site address related to vtu syllabus Thank you
Answer: Your request is under process. We would try to bring it on this site asap.
Query: sir please send me the semester time table for first semester chemistry cycle exam thank you sir.
Answer: The time-table would be put up on this site within 3 days.
Query: timing is wrong in 5th sem time table
Answer: We apologize for our mistake.
Query:it is really helpful can you also update question papers of fifth semester ece
Answer: The Examination papers for all semester would be put up in the near future.
Query: hi,i am getting how to download advanced microprocessor-8086 programming ie masm software so can u please help me in downloading it.
Answer: Sorry, that link has being bad lately. We would put up a new link soon.
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
Posted by Biplav at 9:53 AM 0 comments
Labels: Query
B.E. I and II semester revaluation results announced for all regions.
The results are available here.
Posted by Biplav at 9:41 AM 0 comments
Labels: First Semester, Results, Revaluation, Second Semester
B.E. I and II semester revaluation results announced for Belgaum, Gulbarga and Mysore regions.
Bangalore region revaluation results will be announced Today i.e. on 14 Nov. 2007.
The results are available here.
Posted by Biplav at 12:24 PM 0 comments
Labels: First Semester, Results, Revaluation, Second Semester
Posted by Biplav at 2:52 PM 17 comments
Labels: Fifth Semester, time table
Posted by Biplav at 2:43 PM 0 comments
Labels: Fifth Semester, IEM, time table
B.E. V and VI semester revaluation results announced.
The results are available here.
Last date for applying for Challenge revaluation for B.Arch is 7-11-2007
Last date for applying for Challenge revaluation for B.E. V and VI semester is 10-11-2007.
Posted by Biplav at 12:39 PM 1 comments
Labels: Fifth Semester, Results, Revaluation, Sixth Semester
B.Arch. Revaluation results announced.
The result is available on the link http://results.vtu.ac.in/
Posted by Biplav at 9:51 AM 2 comments
Labels: B.Arch, Results, Revaluation
Here we bring you rules of revaluation as per VTU website in brief. The rules are as follows:
A candidate can apply for revaluation of the answer scripts within 2 weeks from the date of announcement of results. The answer scripts, which are to be sent for revaluation, will be given new code numbers and masking the markings made by the Ist examiner, revaluation will be carried out.
Posted by Biplav at 9:34 AM 12 comments
Labels: Revaluation, vtu
Course Information | |
Semester III | CourseInfo_III_sem_BT.pdf (635 KB) Download |
Semester III | CourseInfo_III_sem_BT_New.pdf (572 KB) Download (New) |
Semester IV | BT_Course_Info_4-Sem.pdf (277 KB) Download (New) |
Semester V | CourseInfo_V_sem_BT.pdf (350 KB) Download |
Semester V | CourseInfo_V_sem_BT_New.pdf (318 KB) Download (New) |
Semester VI | BT_Course_Info_6-Sem.pdf (240 KB) Download (New) |
Semester VII | CourseInfo_VII_sem_BT_New.pdf (381 KB) Download (New) |
Semester VIII | BT_Course_Info_8-Sem.pdf (186 KB) Download (New) |
Posted by Biplav at 2:17 PM 6 comments
Labels: Bio-Tech, Eight Semester, Fifth Semester, fourth semester, Seventh Semester, Sixth Semester, Syllabus book
Hello,
This time we want your response to know what you feel. We plan to hold a poll on the Best College in Bangalore. And we want your response regarding the name of colleges to be included in the poll. So watch out and don't forget to send in your college name so that it gets included in the poll conducted. Hurry up!
Posted by Biplav at 12:51 PM 0 comments
Labels: Poll Results, vtu
The power point presentation on Modular Programming in Advanced Microprocessor 8086 can be downloaded from the link given here.
While the presentation on Interrupts, DOS Services can be downloaded from the link given here.
And other presentations by Prof Anitha can be downloaded from the following links:
Posted by Biplav at 12:38 PM 4 comments
Labels: Advanced Microprocessors 8086, CSE, ECE, Fifth Semester, IT
The students who have applied for reval with photo-copy may collect the photocopies as by now it will be available with most of the colleges.
Posted by Biplav at 12:33 PM 2 comments
Query: Sir, First of all i would like to congratulate you for coming out with this beautiful website and wanted to tell you that it has become quite popular among us students.Your website is of immense help to us students and keeps us informed about the latest developments. Also,i wanted to know how can i post query and when will be the revaluation results for II sem be announced. Thankyou
Answer: Thanks, for your appreciations. The doubt regarding how can you post a query is simple. You just posted one. As simple as that. Or you can even leave a comment which would also be answered. And your inquiry about the reval results of the second semester exams then it would take 20 days min. So keep visiting. All the best!
Query: Sir pls send the notes of vtu computer science iii & iv sem.
Answer: Please refer to the link given: http://vtunews.blogspot.com/2007/10/answer-to-queries10.html
Query: it has been almost 2 months since we got our 6th sem results...we still have not got our reval results...why is it being delayed like this...any idea as to when they will announce the reval results???
Answer: It would take around 15 days more for the reval results of 6th semester exans to be declared. So be patient and all the best.
Query: Respected Sir,
Could you please tell me when 6th semester revaluation results will be announced.
i have completed my 8th semester degree exams but not able to attened interviews as my 6th sem results have not yet been announce.
Please help me.
Answer: I can understand your problem. Its something about the university which is very irritating. I hope the results will be out in next 15 days. So all the best for your interviews.
Query:Can you please help me with Field theory notes for 3rd Sem E&C
Answer: Please refer to the link: http://vtunews.blogspot.com/search/label/Field%20Theory
More notes will be uploaded soon.
Query: who the f@#$%^g person said that control system paper was set by a lecturer of s.i.t we here more than 60% failures in control person.. if i could get the f@#$%^g lecturer who has set the paper then i will kill than m@#$%r f@#$%r
Answer: Chill dude. I can very well understand your disappointment with the control's paper. Hope for the best during the revals.
Posted by Biplav at 10:53 AM 0 comments
Labels: Query
Here we provide free download of 5th Semester projects with project report for the System Software Lab of CSE and ISE branches.
To download just click on the link provided.
Lexical Analyser:
Posted by Biplav at 11:39 AM 7 comments
Labels: CSE, Fifth Semester, ISE, Projects
Posted by Biplav at 5:54 AM 4 comments
Labels: Poll Results
Advanced Microprocessor
| ||||||||||||||||
| ||||||||||||||||
|
Posted by Biplav at 11:46 AM 1 comments
Labels: Advanced Microprocessors 8086, CSE, Fifth Semester, IT, TCE