B. K. Birla College of Arts, Science & Commerce (Autonomous), Kalyan

Total Page:16

File Type:pdf, Size:1020Kb

B. K. Birla College of Arts, Science & Commerce (Autonomous), Kalyan B. K. Birla College of Arts, Science & Commerce (Autonomous), Kalyan Department of Information Technology Proposed Syllabus under Autonomy F.Y.B.Sc.I.T (Semester I) 1. Introduction to C++ 2. Digital Electronics 3. Data Communication and Networking 4. Discrete Mathematics 5. Communication Skills F.Y. B.Sc.I.T (Semester II) 1. Object Oriented Programming with C++ 2. Microprocessor Architecture 3. Web Programming 4. Numerical & Statistical Methods 5. Database Management Systems S.Y. B.Sc.I.T (Semester III) 1. Python Programming 2. Data Structures 3. Computer Networks 4. Database Management Systems 5. Applied Mathematics S.Y. B.Sc.I.T (Semester IV) 1. Core Java 2. Introduction to Embedded Systems 3. Computer Oriented Statistical Techniques 4. Software Engineering 5. Computer Graphics and Animation B. K. Birla College of Arts, Science & Commerce (Autonomous), Kalyan Department of Information Technology Proposed Syllabus under Autonomy T.Y. B.Sc.I.T (Semester V) 1. Software Project Management 2. Internet of Things 3. Advanced Web Programming 4. Linux System Administration 5. Next Generation Technologies T.Y. B.Sc.I.T (Semester VI) 1. Software Quality Assurance 2. Security in Computing 3. Business Intelligence 4. Principles of GIS 5. IT Service Management B. K. Birla College of Arts, Science & Commerce (Autonomous), Kalyan Department of Information Technology Syllabus for F.Y.B.Sc.Information Technology (with effect from the academic year 2018 – 2019) Semester – 1 Course Code Course Type Course Title Credits BUSIT11 Core Subject Introduction to C++ 2 BUSIT12 Core Subject Digital Electronics 2 BUSIT13 Core Subject Data Communication and Networking 2 BUSIT14 Core Subject Discrete Mathematics 2 BUSIT15 Ability Enhancement Skill Communication Skills 2 Course BUSIT1P1 Core Subject Practical Introduction to C++ 2 Practical BUSIT1P2 Core Subject Practical Digital Electronics Practical 2 BUSIT1P3 Core Subject Practical Data Communication and Networking 2 Practical BUSIT1P4 Core Subject Tutorial Discrete Mathematics Tutorial 2 BUSIT1P5 Ability Enhancement Skill Communication Skills Case Studies 2 Course Practical Total Credits 20 Semester – 2 Course Code Course Type Course Title Credits BUSIT21 Core Subject Object oriented Programming 2 with C++ BUSIT22 Core Subject Microprocessor Architecture 2 BUSIT23 Core Subject Web Programming 2 BUSIT24 Core Subject Numerical and Statistical 2 Methods BUSIT40 Core Subject Database Management Systems 2 BUSIT2P1 Core Subject Practical Object Oriented Programming 2 with C++ Practical BUSIT2P2 Core Subject Practical Microprocessor Architecture 2 Practical BUSIT2P3 Core Subject Practical Web Programming Practical 2 BUSIT2P4 Core Subject Tutorial Numerical and Statistical 2 Methods Tutorial BUSIT2P5 Core Subject Practical Database Management Systems 2 Practical Total Credits 20 SEMESTER I B. Sc (Information Technology) Semester – I Course Name: Introduction to C++ Course Code: BUSIT11 Periods per week (1 Period is 50 minutes) 5 Credits 2 Hours Marks Evaluation System Theory Examination 2 60 Internal -- 40 Unit Details Lectures I Programming Logic and techniques: Algorithms, Flow-charts, Program Design, Introduction to C++: Origin of C++, A Sample C++ 12 program, pitfall and programming tips. Testing and Debugging. C++ concepts: Variables and Assignments: variables, identifiers, variable declarations, Assignment Statements, reference variable, symbolic constant, Input and Output: cin, cout, escape sequences, include directives and Namespaces, Indenting and Comments, Operator precedence, Data types and expressions, Arithmetic operators, Type compatibilities. II Flow of Control : Compound statements, Loops: while, for, do while, nested loops, Decision making: if – else, nested if else, switch , break and continue, Manipulators: endl , setw, sizeof, Increment and 12 decrement operators, Type Cast Operators, Scope resolution operators III Functions: Function Prototypes, built in functions and user defined functions, Function overloading, Call by reference, Call by value, const 12 member functions, Inline Functions and recursive functions, Math Library Functions. IV Derived Data types ( Arrays , pointers , functions) : Introduction to arrays, arrays in functions, 2-D arrays , Multidimensional arrays, 12 Introduction to pointers, void pointers, pointers in function, pointer to constant and constant pointer, generic pointer. V Strings and Structures:String functions: strcmp, strcat, strlen, strcpy, strchr, strrev, strcmpi, strlwr, strupr Introduction toStructures Structure Variables, Initialization, 12 Structure Assignment, Nested Structure, Structures and Functions, Structures and Arrays: Arrays of Structures, Structures Containing Arrays, Unions Books and References: Sr. No. Title Author/s Publisher Edition Year 1. Programming with C++ J.R.Hubbard Tata 2nd McGrawHill 2. Let us C++ Y.P.Kanetkar BPB 7th Publication B. Sc (Information Technology) Semester – I Course Name: Introduction to C++ Practical Course Code: BUSIT1P2 Periods per week (1 Period is 50 minutes) 3 Credits 2 Hours Marks Evaluation System Practical Examination 2 50 Internal -- -- List of Practical: 1. Basic Programs: a. Write a program to display the message HELLO WORLD. b. Write a program to declare some variables of type int, float and double. Assign some values to these variables and display these values. c. Write a program to find the addition, subtraction, multiplication and division of two numbers. 2. Programs on variables: a. Write a program to swap two numbers without using third variable. b. Write a program to find the area of rectangle, square and circle. c. Write a program to find the volume of a cube, sphere, and cylinder. 3. Conditional statements and loops(basic) a. Write a program to enter a number from the user and display the month name. If number>13 then display invalid input using switch case. b. Write a program to check whether the number is even or odd. c. Write a program to check whether the number is positive, negative or zero. d. Write a program to find the factorial of a number. e. Write a program to check whether the entered number is prime or not. f. Write a program to find the largest of three numbers. 4. Conditional statements and loops(advanced) a. Write a program to find the sum of squares of digits of a number. b. Write a program to reverse the digits of an integer. c. Write a program to find the sum of numbers from 1 to 100. d. Write a program to print the Fibonacci series. e. Write a program to find the reverse of a number. f. Write a program to find whether a given number is palindrome or not. g. Write a program that solve the quadratic equation h. Write a program to check whether the entered number is Armstrong or not. i. Write a program to count the digit in a number 5. Programs on patterns: a. Programs on different patterns. 6. Functions: a. Programs on Functions. 7. Recursive functions a. Write a program to find the factorial of a number using recursive function. b. Write a program to find the sum of natural number using recursive function. 8. Arrays a. Write a program to find the largest value that is stored in the array. b. Write a program to compute the sum of all elements stored in anarray. c. Write a program to arrange the ‘n’ numbers stored in the array in ascending and descending order. d. Write a program that performs addition and subtraction of matrices. e. Write a program that performs multiplication of matrices. 9. String handling a. String operations for string length , string concatenation b. String operations for string reverse, string comparison, c. Console formatting functions. 10. Structures and Unions a. Programs on structures. b. Programs on unions. B. Sc (Information Technology) Semester – I Course Name: Digital Electronics Course Code: BUSIT12 Periods per week (1 Period is 50 minutes) 5 Credits 2 Hours Marks Evaluation System Theory Examination 2 60 Internal -- 40 Unit Details Lectures I Number System: Analog System, digital system, numbering system, binary number system, octal number system, hexadecimal number system, conversion from one number system to another, floating point numbers, weighted codesbinarycodeddecimal,non-weightedcodesExcess–3code,Gray code, Alphanumeric codes – ASCII Code, EBCDIC, ISCII Code, Hollerith Code, Morse Code, Teletypewriter (TTY), Error detection 12 and correction, Universal Product Code, Codeconversion. Binary Arithmetic: Binary addition, Binary subtraction, Negative number representation, Subtraction using 1’s complement and 2’s complement, Binary multiplication and division, Arithmetic in octal number system, Arithmetic in hexadecimal number system, BCD and Excess – 3 arithmetic. II Boolean Algebra and Logic Gates: Introduction, Logic (AND OR NOT), Boolean theorems, Boolean Laws, De Morgan’s Theorem, Perfect Induction, Reduction of Logic expression using Boolean Algebra, Deriving Boolean expression from givencircuit,exclusiveORandExclusiveNORgates,UniversalLogic gates, Implementation of other gates using universal gates, Input bubbled logic, Assertionlevel. 12 Minterm, Maxterm and Karnaugh Maps: Introduction,mintermsandsumofmintermform,maxtermandProduct of maxtermform, Reduction technique using Karnaugh maps – 2/3/4/5/6 variable K-maps, Grouping of variables in K-maps, K-maps for product of sum form, minimize Boolean expression using K-map and obtain K-map from Boolean expression, Quine Mc- Cluskey Method. III Combinational Logic Circuits: Introduction, Multi-input, multi-output Combinational circuits, Code converters design and implementations 12 Arithmetic
Recommended publications
  • Windriver USB V8.01 User's Guide
    WinDriver USB v8.01 User’s Guide Jungo Ltd COPYRIGHT Copyright ©1997 - 2006 Jungo Ltd. All Rights Reserved Information in this document is subject to change without notice. The software described in this document is furnished under a license agreement. The software may be used, copied or distributed only in accordance with that agreement. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or any means, electronically or mechanically, including photocopying and recording for any purpose without the written permission of Jungo Ltd. Windows, Win32, Windows 98, Windows Me, Windows CE, Windows NT, Windows 2000, Windows XP and Windows Server 2003 are trademarks of Microsoft Corp. WinDriver and KernelDriver are trademarks of Jungo. Other brand and product names are trademarks or registered trademarks of their respective holders. 1 Contents Table of Contents 2 List of Figures 3 1 WinDriver Overview 4 1.1 IntroductiontoWinDriver . 4 1.2 Background .............................. 5 1.2.1 TheChallenge ........................ 5 1.2.2 TheWinDriverSolution . 6 1.3 Conclusion .............................. 6 1.4 WinDriverBenefits .......................... 7 1.5 WinDriverArchitecture . 8 1.6 WhatPlatformsDoesWinDriverSupport? . 8 1.7 LimitationsoftheDifferentEvaluationVersions . ...... 9 1.8 HowDoIDevelopMyDriverwithWinDriver? . 9 1.8.1 On Windows 98/Me/2000/XP/Server2003and Linux . 9 1.8.2 OnWindowsCE ....................... 10 1.9 WhatDoestheWinDriverToolkitInclude? . 10 1.9.1 WinDriverModules . 10 1.9.2 Utilities ............................ 11 1.9.3 WinDriver’sSpecificChipsetSupport . 12 1.9.4 Samples ........................... 12 1.10 Can I Distribute the Driver Created with WinDriver? . ..... 12 2 Understanding Device Drivers 13 2.1 DeviceDriverOverview . 13 2.2 Classification of Drivers According to Functionality .
    [Show full text]
  • Virtualización I
    Virtualizaci´onI Escuela T´ecnicaSuperior de Ingenier´ıade Telecomunicaci´on Universidad Rey Juan Carlos gsyc-profes (arroba) gsyc.urjc.es Septiembre de 2017 GSyC - 2017 Virtualizaci´onI 1 ©2017 GSyC Algunos derechos reservados. Este trabajo se distribuye bajo la licencia Creative Commons Attribution Share-Alike 4.0 GSyC - 2017 Virtualizaci´onI 2 Contenidos 1 M´aquinasVirtuales Utilidad de las m´aquinasvirtuales Inconvenientes de las m´aquinasvirtuales 2 Tipos de M´aquinaVirtual MV de proceso y de sistema Emulaci´onCompleta o Virtualizaci´onCompleta Virtualizaci´on Paravirtualizaci´on Virtualizaci´onnativa 3 Contenedores Caracter´ısticasde los contenedores Inconvenientes de los contenedores 4 Otros tipos de virtualizaci´on 5 T´ecnicassin virtualizaci´on GSyC - 2017 Virtualizaci´onI 3 M´aquinasVirtuales M´aquinas Virtuales M´aquinaVirtual: Software que crea una capa de abstracci´on, ofreciendo una m´aquina diferente a la m´aquinaoriginal Las m´aquinasvirtuales que nos interesan en administraci´onde sistemas suelen ofrecer a un sistema operativo la percepci´onde una m´aquinaf´ısica Las aplicaciones y los usuarios dentro de la m´aquinavirtual se relacionan con la capa de abstracci´ony no con la plataforma real La m´aquinavirtual puede implementar diversos dispositivos virtuales (disco, dispositivos de red, etc) diferentes a los de la plataforma real GSyC - 2017 Virtualizaci´onI 4 M´aquinasVirtuales La tecnolog´ıasobre M´aquinasVirtuales est´amuy madura. La terminolog´ıa,no. Es frecuente encontrarse con el distintos nombres para el mismo
    [Show full text]
  • Instituto Tecnológico De Cd. Victoria División De Estudios De Posgrado E Investigación
    “2011, Año de Turismo en México” SUBSECRETARÍA DE EDUCACIÓN SUPERIOR DIRECCIÓN GENERAL DE EDUCACIÓN SUPERIOR TECNOLÓGICA INSTITUTO TECNOLÓGICO DE CD.VICTORIA ------------------------------------------------------------------------------------------------------------- ------- U n a P u b l i c a c i ó n d e l I n s t i t u t o T e c n o l ó g i c o d e C d. V i c t o r i a Volumen 8 No.2 Octubre 2011 ISSN 1665-983X CIENCIAS EXACTAS Y NATURALES La familia Ovulidae (Mollusca, Gastropoda, Prosobranchia) en las costas de Tamaulipas, México. Correa-Sandoval A., Strenth N. E., Lerma-Ramos L. & Rodríguez-Castro J. H……………………….…1 Estudio preliminar de la fauna Orthoptera en el Municipio de Hidalgo, Tamaulipas, México. De León- Báez M. R., Barrientos-Lozano L., Méndez-Gómez B. R., Horta-Vega J.V., González-Hernández A., Aguilar-Izaguirre H……………………………………………………………………………………………....6 INGENIERÍA Y TECNOLOGÍA Estructura y propiedades de un material compuesto Cobre-Alúmina. Palacios H. M., Gómez C., Herrera A., Maldonado A., López R. D………………………………………………………………………11 Digitalización de documentos con extracción semiautomática de información. Martínez-Rodríguez J. L., Vargas-Enríquez J. A., García-Mundo L. C., Salazar-De León M. G., Martínez Guerra S. I…….23 Desarrollo de una aplicación para ayudar a los usuarios a migrar de Windows al sistema operativo GNU/LINUX. Salazar-De León M. G., García-Mundo L. C., Vargas-Enríquez J. A., Ortiz Medina M. R., Arguelles-Granados F……………………………………………………………………………………..…30 Problemática de las empresas constructoras en el ramo de la electrificación en Tamaulipas: Un Enfoque Analítico. De La Torre Villalobos D.
    [Show full text]
  • Infosphere Change Data Capture Version 6.5.2
    IBM InfoSphere Change Data Capture Version 6.5.2 InfoSphere Change Data Capture for DB2 for Linux, UNIX and Windows, Version 6.5.2 End-User Documentation IBM InfoSphere Change Data Capture Version 6.5.2 InfoSphere Change Data Capture for DB2 for Linux, UNIX and Windows, Version 6.5.2 End-User Documentation Note Before using this information and the product it supports, read the information in “Notices” on page 121. First edition, third revision This edition applies to version 6, release 5, modification 2 of IBM InfoSphere Change Data Capture (product number 5724-U70) and to all subsequent releases and modifications until otherwise indicated in new editions. © Copyright IBM Corporation 2008, 2011. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents About InfoSphere CDC and InfoSphere To delete an instance of InfoSphere CDC (UNIX CDC Management Console ......1 and Linux) .............31 Capturing change data with single scrape ....3 Configuring InfoSphere CDC for OS What’s new .............5 (operating system) clustering (UNIX and Linux) .............33 System requirements .........7 Performing a forced or manual failover of Supported operating systems and processors . 7 InfoSphere CDC .............33 Supported databases............8 Preparing for a failover of InfoSphere CDC....34 Disk space requirements ..........9 RAM requirements ............10 Configuring InfoSphere CDC for a DB2 Port requirements ............11 High Availability Disaster Recovery (HADR) environment .........35 Before you install ..........13 Starting replication to the new primary server after Required database, user accounts, and schemas . 13 a failover ...............35 Enabling database log retention........14 Changing the IP address or hostname of the target Creating a database backup .........14 datastore for a subscription .........36 Assessing disk space and memory requirements .
    [Show full text]
  • Windows 7 Simulator
    1 / 2 Windows 7 Simulator Combat Flight Simulator Windows 7 - cannot install. Hi all. I just combed my 1998 version of the SFC - the one with the mustang on the cover. I can not install it at .... How to use ps4 controller with dolphin gamecube emulator. ... Win7 / Ubuntu aren't intuitive tools to reduce input lag, but they have a couple of key factors in it .... The DocumentDB emulator currently only supports Windows 10. It would be great if support for Windows 7 & 8 could be added or a work .... Flight simulator 9 loading problem to windows 7. fs9 to windows7 Guest. Posted: Sat Feb 25, 2017 2:54 am. Hi! Guys. I recently upgraded from .... Start by placing the Kongregate free online game Windows 7 Simulator - Music By:hektikbeatz please Visit http://www. J Λ V Λ . net is 3 years 4 months old.. A simulator or emulator for FreeRTOS that runs in a Windows environment using either Visual Studio or Eclipse and MingW (GCC) as its compiler and IDE.. In this article, we are sharing our list of top 9 free Android Emulators for Windows 7, 8.1, 10 PCs and MAC. Android eco-system is rich in apps ... You can play the classic Minesweeper and Tetris games, listen to music in Winamp and browse the web with Internet Explorer 7. It provides the .... Best Mac emulators Apr 05, 2021 · I got Windows 7 & XP running, even got the ... Best Android Emulators for PC (Windows 10, Windows 7) Usually, Windows .... garmin gns 530 simulator windows 7, Jun 21, 2010 · This is most likely an issue with RXP GNS 430/530 gauges so we need to help you in a more direct way.
    [Show full text]
  • Laboratorio De Administración Y Gestión De Redes Y Sistemas
    Laboratorio de Administraci´ony Gesti´onde Redes y Sistemas Escuela T´ecnicaSuperior de Ingenier´ıade Telecomunicaci´on (GSyC) gsyc-profes (arroba) gsyc.urjc.es Septiembre de 2019 GSyC - 2021 LAGRS 1 ©2021 GSyC Algunos derechos reservados. Este trabajo se distribuye bajo la licencia Creative Commons Attribution Share-Alike 4.0 GSyC - 2021 LAGRS 2 Un poco de historia de Unix y Linux UNIX surgi´oen 1969 en los Laboratorios Bell (Ken Thomson, Dennis Ritchie) Dos grandes vertientes BSD: SunOS, NetBSD, OpenBSD, Mac OS System V: Solaris, Iris, Aix, Linux (a~no1991) Distribuciones Linux Slackware Gentoo Suse RedHat y derivados: Fedora, Mandriva (Mandrake) Debian y derivados: Ubuntu, knoppix, GnuLiNex, guadalinex GSyC - 2021 LAGRS 3 Un poco de historia de Unix y Linux Partes de un sistema operativo Kernel (N´ucleo):elemento m´asimportante. Permite que las aplicaciones accedan al hardware. Es responsable de la gesti´on de recursos, seguridad, etc Procesos de usuario: distintos programas ejecut´andose concurrentemente en un sistema La interacci´onentre el n´ucleoy los procesos se hace mediante llamadas al sistema (system calls) La shell es un interfaz de usuario en modo texto. Es una aplicaci´on como otra cualquiera GSyC - 2021 LAGRS 4 Un poco de historia de Unix y Linux Partes de un sistema operativo Figura: El Sistema Operativo GSyC - 2021 LAGRS 5 Un poco de historia de Unix y Linux >GNU/Linux ´oLinux? 1 La Free Software Foundation (Richard Stallman) considera que: Linux es estrictamente el kernel Los procesos de usuario (programas y otras utilidades b´asicas para el sistema) provienen del proyecto GNU (y algunos otros).
    [Show full text]
  • «Andlinux» /Home Verschlüsseln Interview Mit Clem
    1 06/08 Yalm - Magazin «andLinux» Linux-Programme unter Windows Interview mit Clem /home verschlüsseln «Linux Mint ist mehr als ein Unerwünschte Zugriffe auf private Betriebssystem, es ist eine Daten verhindern stetig wachsende Gemeinschaft geworden.» Yalm - Vorwort 2 Vorwort «Gegenseitige Hilfe ist das Gesetz für das Layout viele erhebliche Ver- des Fortschritts.» besserungen mit sich bringende Än- derungen, die das Gestalten der Arti- Worte Pjotr Kropotkins, die sich kel noch komfortabler und wirksamer immer wieder als wahr erweisen. ermöglichen. Zuletzt wurde ein re- Zahlreiche helfenden Hände boten daktionsinternes Wiki eingerichtet, sich uns auch im vergangenen Monat welches einen zentralen Überblick an. Und nicht zuletzt ihnen ist es zu über alle wichtigen Themen gewähr- verdanken, euch diese Ausgabe Inhaltsverzeichnis leistet und uns auf diese Weise ho- nicht nur pünktlich, sondern auch hen organisatorischen Aufwand ab- Yalm - Vorwort............................................................................................2 noch mit einer breit gefächerten Aus- nimmt. Und, wie gesagt, andere ra- Vorwort....................................................................................................2 wahl an hochwertigen Artikeln prä- tionalisierende, stellenweise signifi- Yalm - Magazin...........................................................................................3 sentieren zu dürfen. kante, das Magazin gewiss weiter Rückblick.................................................................................................3
    [Show full text]
  • Freiesmagazin 05/2008
    Mai 2008 Topthemen dieser Ausgabe LinCity-NG Seite 23 Wer kennt sie nicht? Wer hat sie noch nie gespielt? Die Städtebausimulation SimCity hat Generationen von Computerspielern stundenlang Freude beschert. Auch Linuxnutzer haben dank LinCity-NG die Möglichkeit, die- sen Klassiker neu zu erleben. Das Spiel wird in dieser Ausgabe kurz vorgestellt. (weiterlesen) andLinux – Das Schaf im Wolfspelz Seite 26 Wie oft vermisst man als Linux-Anwender unter Windows die gewohnten Programme seiner Linux-Distribution? Einige Anwendungen wie Firefox, OpenOffice.org oder Pidgin gibt es auch nativ für Windows, aber auf andere wie Konqueror oder Nautilus kann man nur über ein in einer Virtuellen Maschine installiertes Linux-System zugreifen. Hier geht andLinux einen anderen Weg, indem es Linux-Programme unter Windows fast nativ zur Verfügung stellt. (weiterlesen) sidux – aktuell, schnell und sicher Seite 33 Wer gerne ein aktuelles und schnelles Betriebssystem mit aktueller Software hat, kommt an sidux kaum vorbei. sidux ist voll kompatibel zu Debian Unstable/Sid, dem „instabilen“ Zweig von Debian, wurde jedoch mit eigenem Kernel und Skripten so anwenderfreundlich wie möglich entwickelt. So ist es selbst ungeübten Nutzern, welche sich nicht vor der Konsole scheuen und lernwillig sind, möglich, ein stets aktuelles und – viel wichtiger – stabiles System zu nutzen. (weiterlesen) © freiesMagazin GNU FDL Inhalt Nachrichten Software Distributionen aktuell S. 6 LinCity-NG S. 23 Adobe öffnet Flash-Spezifikation S. 8 GNOME- und KDE-Konferenzen sollen gemeinsam stattfinden S. 9 Linux allgemein Hilferuf des „Debian Package of the Day“-Projektes S. 9 andLinux – Das Schaf im Wolfspelz S. 26 Kernel-Rückblick S. 10 Meine Welt mit Fluxbox S. 29 VIA kündigt Open-Source-Treiberentwicklung an S.
    [Show full text]
  • System Automation for Multiplatforms 
    Tivoli® System Automation for Multiplatforms Version 3.1 Installation and Configuration Guide SC33-8416-01 Tivoli® System Automation for Multiplatforms Version 3.1 Installation and Configuration Guide SC33-8416-01 Note! Before using this information and the product it supports, read the information in Appendix D, “Notices,” on page 133. This edition of the Installation and Configuration Guide applies to Version 3, Release 1, Modification 0 of IBM Tivoli System Automation for Multiplatforms, program number 5724–M00, and to all subsequent releases and modifications of this product until otherwise indicated in new editions. The End-to-End Automation Management Component is now a separate product entitled IBM Tivoli System Automation Application Manager.(5724-S92). | This edition replaces SC33-8416-00. IBM welcomes your comments. A form for readers’ comments may be provided at the back of this publication, or you may address your comments to the following address: IBM Deutschland Research and Development GmbH Department 3248 Schoenaicher Str. 220 D-71032 Boeblingen Federal Republic of Germany FAX (Germany): 07031 16-3456 FAX (Other Countries): 49 7031 16-3456 Internet e-mail: [email protected] If you would like a reply, be sure to include your name, address, telephone number, or FAX number. Make sure to include the following in your comment or note: Title and order number of this book Page number or topic related to your comment When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright International Business Machines Corporation 2006, 2009.
    [Show full text]
  • R16 B. Tech – CSIT
    R16 B. Tech – CSIT SIDDHARTH INSTITUTE OF ENGINEERING & TECHNOLOGY (AUTONOMOUS) Bachelor of Technology Department of Computer Science & Information Technology I B. Tech. – I Semester (CSIT) S.No. Course Code Subject L T P/Drg C 1. 16HS601 Functional English 3 - - 3 2. 16HS602 Engineering Mathematics- I 3 1 - 3 3. 16HS604 Engineering Chemistry 3 1 - 3 4. 16CS501 Computer Programming 3 1 - 3 5. 16ME302 Engineering Graphics - - 6 3 6. 16HS607 English Language and Communication Skills Lab - - 4 2 7. 16HS609 Engineering Chemistry Lab - - 4 2 8. 16CS502 Computer Programming Lab - - 4 2 12 03 18 Contact Periods / Week 21 Total/Week 33 I B. Tech. – II Semester (CSIT) S.No. Course Code Subject L T P C 1. 16HS610 Professional English 3 - - 3 2. 16HS611 Engineering Mathematics-II 3 1 - 3 3. 16HS603 Engineering Physics 3 1 - 3 4. 16HS606 Human Values & Professional Ethics 3 - - 3 5. 16CS503 Data Structures through C 3 1 - 3 6. 16HS608 Engineering Physics Lab - - 4 2 7. 16CS504 Data Structures through C Lab - - 4 2 8. 16ME301 Engineering & IT Workshop Lab - - 4 2 15 03 12 Contact Periods / Week 21 Total/Week 30 1 R16 B. Tech – CSIT II B. Tech. – I Semester (CSIT) S.No. Course Code Subject L T P C 1. 16HS612 Engineering Mathematics-III 3 1 - 3 2. 16HS605 Environmental Studies 3 - - 3 3. 16CS505 Advanced Data Structures through C++ 3 1 - 3 4. 16CS506 Digital Logic Design 3 1 - 3 5. 16CS507 Mathematical Foundations of Computer Science 3 1 - 3 6. 16EE207 Basic Electrical and Electronics Engineering 3 1 - 3 7.
    [Show full text]
  • On Memory Addressing
    DISS. ETH NO. 26619 On Memory Addressing A thesis submitted to attain the degree of Doctor of Sciences of ETH Zurich (Dr. sc. ETH Zurich) presented by Reto Achermann Master of Science ETH in Computer Science, ETH Zurich born on 04. June 1989 citizen of Ennetbürgen, Switzerland accepted on the recommendation of Prof. Dr. Timothy Roscoe (ETH Zurich), examiner Prof. Dr. David Basin (ETH Zurich), co-examiner Prof. Dr. Gernot Heiser (UNSW Sydney), co-examiner Dr. David Cock (ETH Zurich), co-examiner 2020 On Memory Addressing. Copyright © 2020, Reto Achermann. Permission to print for personal and academic use, as well as permission for electronic reproduction and dissemination in unaltered and complete form are granted. All other rights reserved. DOI: 10.3929/ethz-b-000400029 Abstract Operating systems manage and configure a machine’s physical resources such as memory and translation hardware. This task is mission critical: the operating system must always correctly configure memory address translations and unambiguously name the physical resources of a system. However, operating systems today use abstractions and assumptions which unfaithfully represent the actual topology of the hardware they are man- aging. This mismatch leads to bugs and security vulnerabilities in system software. This is a problem. This dissertation presents a new abstraction model to faithfully represent the memory subsystem of a hardware platform as seen by software. The core abstraction of the new model is the address space, which defines the context for address decoding. An address space either translates addresses or terminates address resolution within its context. The Decoding Net formally specifies the semantics of address decoding behavior of address spaces in the Isabelle/HOL theorem prover.
    [Show full text]
  • Administering IBM Platform LSF Chapter 1
    Platform LSF Version 9 Release 1.2 Administering Platform LSF SC27-5302-02 Platform LSF Version 9 Release 1.2 Administering Platform LSF SC27-5302-02 Note Before using this information and the product it supports, read the information in “Notices” on page 813. First edition This edition applies to version 9, release 1 of IBM Platform LSF (product number 5725G82) and to all subsequent releases and modifications until otherwise indicated in new editions. Significant changes or additions to the text and illustrations are indicated by a vertical line (|) to the left of the change. If you find an error in any Platform Computing documentation, or you have a suggestion for improving it, please let us know. Send your suggestions, comments and questions to the following email address: [email protected] Be sure include the publication title and order number, and, if applicable, the specific location of the information about which you have comments (for example, a page number or a browser URL). When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright IBM Corporation 1992, 2013. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Chapter 1. Managing Your Cluster . 1 Job Directories and Data..........434 Working with Your Cluster .........1 Resource Allocation Limits .........436 LSF Daemon Startup Control ........22 Reserving Resources
    [Show full text]