World's most popular travel blog for travel bloggers.
Showing posts with label TEE. Show all posts
Showing posts with label TEE. Show all posts

IGNOU Examination Date Sheet

MCA IGNOU

M- Morning (10AM to 1PM)
E- Evening (2PM to 5PM)

First Semester

CourseCode    Course NameDate
 MCS-011 Problem Solving and Programming 06.12.17E
 MCS-012 Computer Organisation and Assembly Language Programming 08.12.17M
 MCS-013 Discrete Mathematics18.12.17E
 MCS-014 Systems Analysis and Design 12.12.17E
 MCS-015 Communication Skills 11.12.17E
 MCSL-016 Internet Concepts and Web design (Lab Course) -
 MCSL-017 Lab (C and Assembly Language Programming) (Lab Course) -

Second Semester

CourseCode    Course NameDate
 MCS-021 Data and File structures 7.12.17E
 MCS-022 Operating System concepts 13.12.17M
 MCS-023 Introduction to Database Management Systems 05.12.17M
 MCS-024 Object Oriented Technology and Java Programming 18.12.17M
 MCSL-025 Lab (Data Structures using C, WINDOWS 2000, LINUX / UNIX, Java and MS? ACCESS, My SQL) -

Third Semester

CourseCode    Course NameDate
 MCS-031 Design and Analysis of Algorithms 23.12.17M
 MCS-032 Object Oriented Analysis and Design 5.12.17E
 MCS-033 Advanced Discrete Mathematics 20.12.17E
 MCS-034 Software Engineering 15.12.17M
 MCS-035 Accountancy and Financial Management 15.12.17E
 MCSL-036 Laboratory Course (For Object Oriented Analysis and Design, Software Engineering and Accountancy and Financial Management) -

Fourth Semester

CourseCode    Course NameDate
 MCS-041 Operating Systems 16.12.17E
 MCS-042 Data Communication and Networks 21.12.17E
 MCS-043 Advanced Database Management Systems 1.12.17M
 MCS-044 Mini Project -
 MCSL-045 UNIX and DBMS LAB -

Fifth Semester

CourseCode    Course NameDate
 MCS-051 Advanced Internet Technologies 06.12.17M
 MCS-052 Management Information System 08.12.17E
 MCSL-053 Computer Graphics and Multimedia 16.12.17M
 MCSE-003 Artificial Intelligence and Knowledge Management 12.12.17M
 MCSE-004 Numerical and Statistical Computing 04.12.17E
 MCSE-011 Parallel Computing 13.12.17E

Sixth Semester

CourseCode    Course NameDate
 MCSP-060 Project -

(ignou exam date sheet 2017) (ignou date sheet dec 2017) (ignou term end exam)


IMPORTANT: SOME DATES ARE CHANGED REFER NEW EXAM SCHEMES FROM IGNOU WEBSITE

IGNOU Examination Date Sheet

MCA IGNOU

M- Morning (10AM to 1PM)
E- Evening (2PM to 5PM)

First Semester

CourseCode    Course NameDate
 MCS-011 Problem Solving and Programming 6.6.17E
 MCS-012 Computer Organisation and Assembly Language Programming 9.6.17M
 MCS-013 Discrete Mathematics21.6.17E
 MCS-014 Systems Analysis and Design 13.6.17E
 MCS-015 Communication Skills 24.6.17E
 MCSL-016 Internet Concepts and Web design (Lab Course) -
 MCSL-017 Lab (C and Assembly Language Programming) (Lab Course) -

Second Semester

CourseCode    Course NameDate
 MCS-021 Data and File structures 7.6.17E
 MCS-022 Operating System concepts 12.6.17E
 MCS-023 Introduction to Database Management Systems 14.6.17E
 MCS-024 Object Oriented Technology and Java Programming 16.6.17E
 MCSL-025 Lab (Data Structures using C, WINDOWS 2000, LINUX / UNIX, Java and MS? ACCESS, My SQL) -

Third Semester

CourseCode    Course NameDate
 MCS-031 Design and Analysis of Algorithms 2.6.17M
 MCS-032 Object Oriented Analysis and Design 5.6.17E
 MCS-033 Advanced Discrete Mathematics 8.6.17M
 MCS-034 Software Engineering 17.6.17E
 MCS-035 Accountancy and Financial Management 19.6.17E
 MCSL-036 Laboratory Course (For Object Oriented Analysis and Design, Software Engineering and Accountancy and Financial Management) -

Fourth Semester

CourseCode    Course NameDate
 MCS-041 Operating Systems 20.6.17E
 MCS-042 Data Communication and Networks 10.6.17E
 MCS-043 Advanced Database Management Systems 1.6.17M
 MCS-044 Mini Project -
 MCSL-045 UNIX and DBMS LAB -

Fifth Semester

CourseCode    Course NameDate
 MCS-051 Advanced Internet Technologies 6.6.17M
 MCS-053
MCS-052
 Computer Graphics and Multimedia
------------------------------------------------
 10.6.17M
9.6.17E

 MCSL-054 Laboratory Course (Advanced Internet Technologies & Computer Graphics and Multimedia) -
 MCSE-003 Artificial Intelligence and Knowledge Management 13.6.17M
 MCSE-004 Numerical and Statistical Computing 15.6.17M
 MCSE-011 Parallel Computing 22.6.17M

Sixth Semester

CourseCode    Course NameDate
 MCSP-060 Project -

(ignou exam date sheet 2017) (ignou date sheet june 2017) (ignou term end exam)
·         To provide an enviroment for a computer user to execute programs on computer hardware in a convenient and efficient manner.
·         To allocate the separate resources of the computer as needed to solve the problem given. The allocation process should be as fair and efficient as prossible
Following are the characteristics:

Open graphics library(Open GL):  Cross-platform standard specification for multimedia graphics.

Direct X:  collection of APIs related to multimedia tasks for microsoft Windows.

Command Line Interface(CLI):  The user types commands at a prompt.

Graphical User Interface (GUI):  The user interacts with menus and icons.


Control Hardware Access:  The operating system manages the interaction between application and the hardware. To access and communicate with the hardware, the operating system intalls a device driver for each hardware component.
Problem Detail: 
enter image description here
From the above image, while trying to maintain an AVL tree data structure, how would the tree look after inserting the value 10? Also, if anyone has any suggestions or simple method of rotating, feel free to share. I am a bit lost with this idea of maintaining a certain height in this data structure.

Asked By : smac89

Answered By : nonexplosive

AVL trees should be binary search trees. In the example you gave, 2 is the right child of 3. That isn't right since 2 < 3. Assume the 2 and 3 are switched, which results in a correct binary tree.
Remember the rule for AVL trees: for any node, the height difference between the left child and right child is at most 1. Following the tree down, the 10 is inserted as the right child of 9. This breaks the rule. Look at the subtree rooted at 6. The height of the left child is 0 while the height of the right child is 2. The tree must be rotated, which is the tricky part. 8 becomes the right child of 4. 6 becomes the left child of 8. 7 becomes the right child of 6. After all of that, the final AVL tree would look like this:
final AVL tree
(courtesy of Uottawa). I always visualized rotations like this:
  1. With your left hand, "hold" the 6 and "detach" it from the 4.
  2. With your right hand, "hold" the 8.
  3. "Drop" the 6 so that it swings counterclockwise, due to gravity of course. (6 is now the left child of 8)
  4. The 6 "hits" the 7. (7 is now the right child of 6)
  5. "Attach" this whole subtree (now rooted at 8, since the 6 "fell") back onto the 4.
Best Answer from StackOverflow
Question Source : http://cs.stackexchange.com/questions/13581

coming soon

IGNOU Examination Date Sheet

MCA IGNOU

M- Morning (10AM to 1PM)
E- Evening (2PM to 5PM)

First Semester

CourseCode     Course Name Date
 MCS-011  Problem Solving and Programming  6.12.16E
 MCS-012  Computer Organisation and Assembly Language Programming  9.12.16M
 MCS-013  Discrete Mathematics 10.12.16E
 MCS-014  Systems Analysis and Design  14.12.16E
 MCS-015  Communication Skills  26.12.16E
 MCSL-016  Internet Concepts and Web design (Lab Course)  -
 MCSL-017  Lab (C and Assembly Language Programming) (Lab Course)  -

Second Semester

CourseCode     Course Name Date
 MCS-021  Data and File structures  7.12.16E
 MCS-022  Operating System concepts  12.12.16E
 MCS-023  Introduction to Database Management Systems  15.12.16E
 MCS-024  Object Oriented Technology and Java Programming  17.12.16E
 MCSL-025  Lab (Data Structures using C, WINDOWS 2000, LINUX / UNIX, Java and MS? ACCESS, My SQL)  -

Third Semester

CourseCode     Course Name Date
 MCS-031  Design and Analysis of Algorithms  2.12.16M
 MCS-032  Object Oriented Analysis and Design  5.12.16E
 MCS-033  Advanced Discrete Mathematics  8.12.16M
 MCS-034  Software Engineering  19.12.16E
 MCS-035  Accountancy and Financial Management  20.12.16E
 MCSL-036  Laboratory Course (For Object Oriented Analysis and Design, Software Engineering and Accountancy and Financial Management)  -

Fourth Semester

CourseCode     Course Name Date
 MCS-041  Operating Systems  21.12.16E
 MCS-042  Data Communication and Networks  27.12.16E
 MCS-043  Advanced Database Management Systems  1.12.16M
 MCS-044  Mini Project  -
 MCSL-045  UNIX and DBMS LAB  -

Fifth Semester

CourseCode     Course Name Date
 MCS-051  Advanced Internet Technologies  6.12.16M
 MCS-053  Computer Graphics and Multimedia  10.12.16M
 MCSL-054  Laboratory Course (Advanced Internet Technologies & Computer Graphics and Multimedia)  -
 MCSE-003  Artificial Intelligence and Knowledge Management  14.12.16M
 MCSE-004  Numerical and Statistical Computing  16.12.16M
 MCSE-011  Parallel Computing  23.12.16M

Sixth Semester

CourseCode     Course Name Date
 MCSP-060  Project  -

(ignou exam date sheet 2016) (ignou date sheet june 2016) (ignou term end exam)

IGNOU Examination Date Sheet

MCA IGNOU

M- Morning (10AM to 1PM)
E- Evening (2PM to 5PM)

First Semester

CourseCode     Course Name Date
 MCS-011  Problem Solving and Programming  6.12.16E
 MCS-012  Computer Organisation and Assembly Language Programming  9.12.16M
 MCS-013  Discrete Mathematics 10.12.16E
 MCS-014  Systems Analysis and Design  14.12.16E
 MCS-015  Communication Skills  26.12.16E
 MCSL-016  Internet Concepts and Web design (Lab Course)  -
 MCSL-017  Lab (C and Assembly Language Programming) (Lab Course)  -

Second Semester

CourseCode     Course Name Date
 MCS-021  Data and File structures  7.12.16E
 MCS-022  Operating System concepts  12.12.16E
 MCS-023  Introduction to Database Management Systems  15.12.16E
 MCS-024  Object Oriented Technology and Java Programming  17.12.16E
 MCSL-025  Lab (Data Structures using C, WINDOWS 2000, LINUX / UNIX, Java and MS? ACCESS, My SQL)  -

Third Semester

CourseCode     Course Name Date
 MCS-031  Design and Analysis of Algorithms  2.12.16M
 MCS-032  Object Oriented Analysis and Design  5.12.16E
 MCS-033  Advanced Discrete Mathematics  8.12.16M
 MCS-034  Software Engineering  19.12.16E
 MCS-035  Accountancy and Financial Management  20.12.16E
 MCSL-036  Laboratory Course (For Object Oriented Analysis and Design, Software Engineering and Accountancy and Financial Management)  -

Fourth Semester

CourseCode     Course Name Date
 MCS-041  Operating Systems  21.12.16E
 MCS-042  Data Communication and Networks  27.12.16E
 MCS-043  Advanced Database Management Systems  1.12.16M
 MCS-044  Mini Project  -
 MCSL-045  UNIX and DBMS LAB  -

Fifth Semester

CourseCode     Course Name Date
 MCS-051  Advanced Internet Technologies  6.12.16M
 MCS-053  Computer Graphics and Multimedia  10.12.16M
 MCSL-054  Laboratory Course (Advanced Internet Technologies & Computer Graphics and Multimedia)  -
 MCSE-003  Artificial Intelligence and Knowledge Management  14.12.16M
 MCSE-004  Numerical and Statistical Computing  16.12.16M
 MCSE-011  Parallel Computing  23.12.16M

Sixth Semester

CourseCode     Course Name Date
 MCSP-060  Project  -

(ignou exam date sheet 2016) (ignou date sheet june 2016) (ignou term end exam)

MCSL-016 13-01-2016 - HTML


MCSL-017 15-01-2016  - C & Assembly

MCSL-016 13-01-2016 - HTML


MCSL-017 15-01-2016  - C & Assembly

Dear Friends,
How we can achieve 75% attendance in lab sessions. Most of the lab sessions are cancelled. We need to for our exam without attending these lab sessions.

This is not good, we are already late and our term end exam dates are out(Staring in first week of December)

"Mujhe lagta hai first year walo k sath humesa kuch aisa hi hota hai. Hum log 45 hai in class at Reg. 2700. Only 10-15 students are regular. Agar baki k exam de sakte hain to hum bhi to de sakte hain. To 75% ka koi chakkar nhi hai.. Sab kahi na kahi settle ho kar lenge."

Padhai karo.. Exam nikalo

Thanks
Akshay

Dear Friends,
How we can achieve 75% attendance in lab sessions. Most of the lab sessions are cancelled. We need to for our exam without attending these lab sessions.

This is not good, we are already late and our term end exam dates are out(Staring in first week of December)

"Mujhe lagta hai first year walo k sath humesa kuch aisa hi hota hai. Hum log 45 hai in class at Reg. 2700. Only 10-15 students are regular. Agar baki k exam de sakte hain to hum bhi to de sakte hain. To 75% ka koi chakkar nhi hai.. Sab kahi na kahi settle ho kar lenge."

Padhai karo.. Exam nikalo

Thanks
Akshay

Dear Friends
Humare exams December first week se start ho rahe hain..

start your preparation and get ready for something Toofani.

😊

Dear Friends
Humare exams December first week se start ho rahe hain..

start your preparation and get ready for something Toofani.

😊

It is informed that the last date for the submission of the TEE December 2015 examination form for student enrolled in Certificate/semester based programme in July 2015 session is extended till 31st October 2015 without any late fee. IGNOU Lucknow
It is informed that the last date for the submission of the TEE December 2015 examination form for student enrolled in Certificate/semester based programme in July 2015 session is extended till 31st October 2015 without any late fee. IGNOU Lucknow