• SCHOLARSHIP

    he Norwegian government provides scholarships for students from developing countries in the South and countries of Central- and East-Europe and Central-Asia under the Quota Scheme. The goal of the Quota Scheme is to promote the internationalization of higher education and give developing country students relevant education that would also benefit their home countries when they return after graduation..

  • Education

    It´s time for another post with inspirational quotes. This time I´d like to focus on something I find very useful: education. School may have been – or still be – boring, a killer of creativity or downright awful for you. But education is still important because it opens the mind and expands it. And if your years in school were bad or boring you can still educate yourself now. Anyways, here’s some wisdom and inspiration from the people who have walked before us. It is impossible for a man to learn what he thinks he already knows ...

  • Exam.

    Exam Quotes On Taking The Initiative “Recipe for success: Study while others are sleeping; work while others are loafing; prepare while others are playing; and dream while others are wishing.” ~ William A. Ward.

Showing posts with label Computer. Show all posts
Showing posts with label Computer. Show all posts

Saturday, February 9, 2013

AADHAAR ENROLMENT / CORRECTION FORM


AADHAAR ENROLMENT / CORRECTION FORM

Aadhaar Enrolment is free and voluntary. Correction within 96 hours of enrolment is also free. No charges are applicable for Form
and Aadhaar Enrolment. In case of Correction provide your EID, Name and only that field which needs Correction.

ADDHAR  CARD, Education, Education, Computer, ONLINE FORMS, FORMS,


Read More

Monday, January 28, 2013

Important Questions in Oracle, Developer


Computer, Education, Oracle, SQL, Interview, Interview Questions, Interview Tips, Question Paper, Online Exam,


      Important Questions in Oracle, Developer /2000(Form 4.5 and Reports 2.5)
      Oracle :
      1) What are the Back ground processes in Oracle and what are they.
      This is one of the most frequently asked question.There are basically 9
      Processes but in a general system we need to mention the first five
      background processes.They do the house keeping activities for the Oracle
      and are common in any system.
      The various background processes in oracle are
      a) Data Base Writer(DBWR) : Data Base Writer Writes Modified blocks from
      Database buffer cache to Data Files.This is required since the data is not
      written whenever a transaction is commited.
      b) LogWriter(LGWR) : LogWriter writes the redo log entries to disk. Redo
      Log data is generated in redo log buffer of SGA. As transaction commits
      and log buffer fills, LGWR writes log entries into a online redo log file.
      c) System Monitor(SMON) : The System Monitor performs instance recovery at
      instance startup.This is useful for recovery from system failure
      d) Process Monitor(PMON) : The Process Monitor peforms process recovery
      when user Process fails. Pmon Clears and Frees resources that process was
      using.
      e) CheckPoint(CKPT) : At Specified times, all modified database buffers in
      SGA are written to data files by DBWR at Checkpoints and Updating all data
      files and control files of database to indicate the most recent checkpoint
      f) Archieves(ARCH) : The Archiver copies online redo log files to archival
      storal when they are busy.
      g) Recoveror(RECO) : The Recoveror is used to resolve the distributed
      transaction in network
      h) Dispatcher (Dnnn) : The Dispatcher is useful in Multi Threaded
      Architecture
      i) Lckn : We can have upto 10 lock processes for inter instance locking in
      parallel sql.

      2) How many types of Sql Statements are there in Oracle
      There are basically 6 types of sql statments.They are
      a) Data Defination Language(DDL) : The DDL statments define and maintain
      objects and drop objects.
      b) Data Manipulation Language(DML) : The DML statments manipulate database
      data.
      c) Transaction Control Statements : Manage change by DML
      d) Session Control : Used to control the properties of current session
      enabling and disabling roles and changing .e.g Alter Statements,Set Role
      e) System Control Statements : Change Properties of Oracle Instance .e.g::
      Alter System
      f) Embedded Sql : Incorporate DDL,DML and T.C.S in Programming
      Language.e.g:: Using the Sql Statements in languages such as 'C',
      Open,Fetch, execute and close

      3) What is a Transaction in Oracle
      A transaction is a Logical unit of work that compromises one or more SQL
      Statements executed by a single User. According to ANSI, a transaction
      begins with first executable statment and ends when it is explicitly
      commited or rolled back.

      4) Key Words Used in Oracle
      The Key words that are used in Oracle are
      a) Commiting : A transaction is said to be commited when the transaction
      makes
      permanent changes resulting from the SQL statements.
      b) Rollback : A transaction that retracts any of the changes resulting
      from SQL
      statements in Transaction.
      c) SavePoint : For long transactions that contain many SQL statements,
      intermediate
      markers or savepoints are declared. Savepoints can be used to divide a
      transactino into smaller points.
      d) Rolling Forward : Process of applying redo log during recovery is
      called rolling
      forward.
      e) Cursor : A cursor is a handle ( name or a pointer) for the memory
      associated with a
      specific stament. A cursor is basically an area allocated by Oracle for
      executing the Sql Statement. Oracle uses an implicit cursor statement for
      Single row query and Uses Explcit cursor for a multi row query.
      f) System Global Area(SGA) : The SGA is a shared memory region allocated
      by the
      Oracle that contains Data and control information for one Oracle
      Instance.It consists of Database Buffer Cache and Redo log Buffer.
      g) Program Global Area (PGA) : The PGA is a memory buffer that contains
      data and
      control information for server process.
      h) Database Buffer Cache : Databese Buffer of SGA stores the most recently
      used
      blocks of datatbase data.The set of database buffers in an instance is
      called Database Buffer Cache.
      i) Redo log Buffer : Redo log Buffer of SGA stores all the redo log
      entries.
      j) Redo Log Files : Redo log files are set of files that protect altered
      database data in
      memory that has not been written to Data Files. They are basically used
      for backup when a database crashes.
      k) Process : A Process is a 'thread of control' or mechansim in Operating
      System that
      executes series of steps.

      5) What are Procedure,functions and Packages
      Procedures and functions consist of set of PL/SQL statements that are
      grouped together as a unit to solve a specific problem or perform set of
      related tasks.
      Procedures do not Return values while Functions return one One Value
      Packages Provide a method of encapsulating and storing related procedures,
      functions, variables and other Package Contents

      6) What are Database Triggers and Stored Procedures
      Database Triggers :: Database Triggers are Procedures that are
      automatically executed as a result of insert in, update to, or delete from
      table. Database triggers have the values old and new to denote the old
      value in the table before it is deleted and the new indicated the new
      value that will be used. DT are useful for implementing complex business
      rules which cannot be enforced using the integrity rules.We can have the
      trigger as Before trigger or After Trigger and at Statement or Row level.
      eg. operations insert,update ,delete 3 before ,after 3*2 A total of 6
      combinatons
      At statment level(once for the trigger) or row level( for every execution
      ) 6 * 2 A total of 12. Thus a total of 12 combinations are there and the
      restriction of usage of 12 triggers has been lifted from Oracle 7.3
      Onwards.
      Stored Procedures : Stored Procedures are Procedures that are stored in
      Compiled form in the database.The advantage of using the stored procedures
      is that many users can use the same procedure in compiled and ready to use
      format.

      7) How many Integrity Rules are there and what are they
      There are Three Integrity Rules. They are as follows ::
      a) Entity Integrity Rule : The Entity Integrity Rule enforces that the
      Primary key cannot be Null
      b) Foreign Key Integrity Rule : The FKIR denotes that the relationship
      between the foreign key and the primary key has to be enforced.When there
      is data in Child Tables the Master tables cannot be deleted.
      c) Business Integrity Rules : The Third Intigrity rule is about the
      complex business processes which cannot be implemented by the above 2
      rules.

      8) What are the Various Master and Detail Relation ships.
      The various Master and Detail Relationship are
      a) NonIsolated : The Master cannot be deleted when a child is exisiting
      b) Isolated : The Master can be deleted when the child is exisiting
      c) Cascading : The child gets deleted when the Master is deleted.

      9) What are the Various Block Coordination Properties
      The various Block Coordination Properties are
      a) Immediate Default Setting. The Detail records are shown when the Master
      Record are shown.
      b) Deffered with Auto Query Oracle Forms defer fetching the detail records
      until the operator navigates to the detail block.
      c) Deffered with No Auto Query The operator must navigate to the detail
      block and explicitly execute a query

      10) What are the Different Optimisation Techniques
      The Various Optimisation techniques are
      a) Execute Plan : we can see the plan of the query and change it
      accordingly based on the indexes
      b)Optimizer_hint:
      set_item_property('DeptBlock',OPTIMIZER_HINT,'FIRST_ROWS');
      Select /*+ First_Rows */ Deptno,Dname,Loc,Rowid from dept where (Deptno >
      25)
      c) Optimize_Sql : By setting the Optimize_Sql = No, Oracle Forms assigns a
      single cursor for all SQL statements.This slow downs the processing
      because for evertime the SQL must be parsed whenver they are executed.
      f45run module = my_firstform userid = scott/tiger optimize_sql = No
      d) Optimize_Tp : By setting the Optimize_Tp= No, Oracle Forms assigns
      seperate cursor only for each query SELECT statement. All other SQL
      statements reuse the cursor.
      f45run module = my_firstform userid = scott/tiger optimize_Tp = No

      11) How do u implement the If statement in the Select Statement
      We can implement the if statement in the select statement by using the
      Decode statement.
      e.g select DECODE (EMP_CAT,'1','First','2','Second'Null);
      Here the Null is the else statement where null is done .

      12) How many types of Exceptions are there
      There are 2 types of exceptions. They are
      a) System Exceptions
      e.g. When no_data_found, When too_many_rows
      b) User Defined Exceptions
      e.g. My_exception exception
      When My_exception then

      13) What are the inline and the precompiler directives
      The inline and precompiler directives detect the values directly

      14) How do you use the same lov for 2 columns
      We can use the same lov for 2 columns by passing the return values in
      global values and using the global values in the code

      15) How many minimum groups are required for a matrix report
      The minimum number of groups in matrix report are 4

      16) What is the difference between static and dynamic lov
      The static lov contains the predetermined values while the dynamic lov
      contains values that come at run time

      17) What are snap shots and views
      Snapshots are mirror or replicas of tables. Views are built using the
      columns from one or more tables. The Single Table View can be updated but
      the view with multi table cannot be updated

      18) What are the OOPS concepts in Oracle.
      Oracle does implement the OOPS concepts. The best example is the Property
      Classes. We can categorise the properties by setting the visual attributes
      and then attach the property classes for the objects. OOPS supports the
concepts of objects and classes and we can consider the property classes as classes and the items as objects
      19) What is the difference between candidate key, unique key and primary 
      key
      Candidate keys are the columns in the table that could be the primary keys
      and the primary key is the key that has been selected to identify the
      rows. Unique key is also useful for identifying the distinct rows in the
      table.

      20) What is concurrency
      Cuncurrency is allowing simultaneous access of same data by different
      users. Locks useful for accesing the database are
      a) Exclusive
      The exclusive lock is useful for locking the row when an insert,update or
      delete is being done.This lock should not be applied when we do only
      select from the row.
      b) Share lock
      We can do the table as Share_Lock as many share_locks can be put on the
      same resource.

      21) Previleges and Grants
      Previleges are the right to execute a particulare type of SQL statements.
      eg. Right to Connect, Right to create, Right to resource
Grants are given to the objects so that the object might be accessed accordingly. The grant has to be given by the owner of the object.

      22) Table Space,Data Files,Parameter File, Control Files
      Table Space : The table space is useful for storing the data in the
      database.When a database is created two table spaces are created.
      a) System Table space : This data file stores all the tables related to
      the system and dba tables
      b) User Table space : This data file stores all the user related tables
      We should have seperate table spaces for storing the tables and indexes so
      that the access is fast.

      Data Files : Every Oracle Data Base has one or more physical data
      files.They store the data for the database.Every datafile is associated
      with only one database.Once the Data file is created the size cannot
      change.To increase the size of the database to store more data we have to
      add data file.
      Parameter Files : Parameter file is needed to start an instance.A
      parameter file contains the list of instance configuration parameters
      e.g.::
      db_block_buffers = 500
      db_name = ORA7
      db_domain = u.s.acme lang
      Control Files : Control files record the physical structure of the data
      files and redo log files. They contain the Db name, name and location of
      dbs, data files ,redo log files and time stamp.

      23) Physical Storage of the Data
      The finest level of granularity of the data base are the data blocks.
      Data Block : One Data Block correspond to specific number of physical
      database space
      Extent : Extent is the number of specific number of contigious data
blocks.
      Segments : Set of Extents allocated for Extents. There are three types of
      Segments
      a) Data Segment : Non Clustered Table has data segment data of every table
      is stored in
      cluster data segment
      b) Index Segment : Each Index has index segment that stores data
      c) Roll Back Segment : Temporarily store 'undo' information
      24) What are the Pct Free and Pct Used

      Pct Free is used to denote the percentage of the free space that is to be
      left when creating a table. Similarly Pct Used is used to denote the
      percentage of the used space that is to be used when creating a table
      eg. Pctfree 20, Pctused 40
      25) What is Row Chaining

      The data of a row in a table may not be able to fit the same data
      block.Data for row is stored in a chain of data blocks .

      26) What is a 2 Phase Commit

      Two Phase commit is used in distributed data base systems. This is useful
      to maintain the integrity of the database so that all the users see the
      same values. It contains DML statements or Remote Procedural calls that
      reference a remote object. There are basically 2 phases in a 2 phase
      commit.
      a) Prepare Phase : Global coordinator asks participants to prepare
b) Commit Phase : Commit all participants to coordinator to Prepared, Read only or abort Reply
     
27) What is the difference between deleting and truncating of tables
      Deleting a table will not remove the rows from the table but entry is
      there in the database dictionary and it can be retrieved But truncating a
      table deletes it completely and it cannot be retrieved.
      
28) What are mutating tables
      When a table is in state of transition it is said to be mutating. eg :: If
      a row has been deleted then the table is said to be mutating and no
      operations can be done on the table except select.
      
29) What are Codd Rules
      Codd Rules describe the ideal nature of a RDBMS. No RDBMS satisfies all
      the 12 codd rules and Oracle Satisfies 11 of the 12 rules and is the only
      Rdbms to satisfy the maximum number of rules.

     
30) What is Normalisation
      Normalisation is the process of organising the tables to remove the
      redundancy.There are mainly 5 Normalisation rules.
      a) 1 Normal Form : A table is said to be in 1st Normal Form when the
      attributes are
      atomic
      b) 2 Normal Form : A table is said to be in 2nd Normal Form when all the
      candidate
      keys are dependant on the primary key
      c) 3rd Normal Form : A table is said to be third Normal form when it is
      not dependant
      transitively
     
31) What is the Difference between a post query and a pre query
      A post query will fire for every row that is fetched but the pre query
      will fire only once.
      
32) Deleting the Duplicate rows in the table
      We can delete the duplicate rows in the table by using the Rowid
     
33) Can U disable database trigger? How?
      Yes. With respect to table
      ALTER TABLE TABLE
      [ DISABLE all_trigger ]
     
34) What is pseudo columns ? Name them?
      A pseudocolumn behaves like a table column, but is not actually stored in
      the table. You can select from pseudocolumns, but you cannot insert,
      update, or delete their values. This section describes these
      pseudocolumns:
      * CURRVAL
      * NEXTVAL
      * LEVEL
      * ROWID
      * ROWNUM
     
35) How many columns can table have?
      The number of columns in a table can range from 1 to 254.
     


36) Is space acquired in blocks or extents ?
      In extents .
     
37) what is clustered index?
      In an indexed cluster, rows are stored together based on their cluster key
      values . Can not applied for HASH.

      38) what are the datatypes supported By oracle (INTERNAL)?
      Varchar2, Number,Char , MLSLABEL.

      39 ) What are attributes of cursor?
      %FOUND , %NOTFOUND , %ISOPEN,%ROWCOUNT

      40) Can you use select in FROM clause of SQL select ?
      Yes.



     
Read More

Thursday, January 24, 2013

How to Register for the TOEFL® iBT Online A Step-by-Step Tutorial


How to Register for the TOEFL® iBT Online
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,

A Step-by-Step Tutorial

This guide will help you to navigate the online registration system. You
may print this document and use it to assist you in the process.

General Website Navigation Tips:
– Avoid using your browser’s BACK button
– Our site has multiple security measures to ensure the safety of your
information, including a time limit. To expedite the registration
process, please be prepared to provide:

Up to four recipients you want to receive your scores
(institutions, not yourself)

• How YOU want to receive your scores (web only or web
plus a paper copy sent by mail)

• Complete payment information (credit card, voucher
number)

– Do not browse any pages outside of the test registration system
Do not enter characters that contain accent marks
because these are not supported by the registration system. If these
characters appear in your legal ID, however, it will not prevent you
from being admitted to the testing center
– Do not DOUBLE-CLICK any of the buttons, especially when
submitting payment

Recommendations:
– Register early — 4 months in advance if possible, for the best
chance of reserving a seat on the date and location YOU prefer.
– Complete your profile before registering for a test. This will
allow you to complete your registration more quickly.
– Be prepared — Use the following products to help you prepare
for test day:

The TOEFL® iBT Sampler (free when you register and pay)

TOEFL® Practice Online http://toeflpractice.ets.org



TO REGISTER FOR THE TOEFL® iBT Online

FOLLOW THESE STEPS TO SAVE TIME


Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
 Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
 Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,
Computer, Education, Tofel Exam, Online Exam, Top Level Exam,


CONTACT US
For questions about registration, test centers, score reports or the test itself:
E-mail:
toefl@ets.org

Phone:
1-877-863-3546 — United States, U.S. Territories*, Canada
1-609-771-7100 — All other locations

Monday – Friday
8 a.m. – 8 p.m. New York time.

TEST TAKERS WITH DISABILITIES
1-866-387-8602 — United States, U.S. Territories*, Canada
1-609-771-7780 — all other locations
Teletypewriter (TTY) Number: 1-609-771-7714

Monday–Friday
8:30 a.m. – 5 p.m. New York time
Phones are busiest on Monday.
*Includes: American Samoa, Guam, Puerto Rico, and U.S. Virgin Islands.
Fax:
1-610-290-8972
Mail:

TOEFL Services
Educational Testing Service
P.O. Box 6151
Princeton, NJ 08541-6151, USA

Courier or Delivery Service:

TOEFL Services (25Q-310)
Distribution and Receiving Center
225 Phillips Boulevard
Ewing, NJ 08628-7435, USA

The Official Guide to the new TOEFL® iBT
www.ets.org/toeflguide.html

Posted By : http://educationexampoint.blogspot.in
Read More

COMPUTER NETWORKS Semester–II ADHNT Syllabus


Hardware and Networking, Hardware and Networking, General Knowledge, Education, Computer,
COMPUTER NETWORKS Semester–II ADHNT Syllabus
COMPUTER NETWORKS Semester–II
______________________________________________________________________
INSTRUCTIONS FOR PAPER-SETTER
The question paper will consist of Two parts, A and B. Part A will have 15 short answer questions (40-60 words) of 2 marks each. Part B will have 12 long answer questions of 5 marks each.
The syllabus of the subject is divided into 3 sections I, II and III. The question paper will cover the entire syllabus uniformly. Part A will carry 5 questions from each section and Part B will carry 4 questions from each section.
INSTRUCTION FOR CANDIDATES
Candidates are required to attempt all questions from Part A and 9 questions of Part B out of 12.
______________________________________________________________________
Section I
Basic Concepts
Components of Data Communication, Distributed processing, Standards and Organisations, Line Configuration, Topology and Types of Topology, Transmission Mode, Categories of Networks.
OSI and TCP/IP Models
What is Protocol, OSI Model, Layers and their functions. Transport Protocol: Introduction to TCP/IP, Internet Protocol. Protocols forming part of IP, Internet Upper-Layer Protocols: FTP, TELENT. Comparison of different models (TCP/IP vs. OSI Model)
Section II
Digital Transmission Interfaces and Modems
Types of Data: Digital Data, Analog Data., Data Transmission: Difference between digital data and analog data transmission, Digital to Analog conversion, Interfaces and Modems: DTC-DCE Interface. Modem: Analog Modem, Digital Modem, Asynchronous Modems, Cable Modem.
Transmission Media
Noise absorption, Radiation, Attenuation, Bandwidth. Guided and Unguided media. Comparison of media
Introduction to Signals
Analog and Digital Signals, Periodic and Aperiodic Signals, Time and Frequency domains. Composite signals.
Section III
LANS and MANS
Local area network: Advantages, disadvantage, characteristics. Metropolitan area network. IEEE 802, Ethernet : Physical layer, Physical layer interface, Data link layer, system configurations, 10Base-5, 10Base-2, 10Base-T, Physical network topology used
ADHNT Syllabus (August 2005) Page 9 of 13
for Ethernet. Token passing Networks. Fiber distributed data interface for MANs. Switched multimegabit data services.
Switching
What is switched network? Circuit Switching, Packet switching, Message switching
Point to Point Protocols
What is remote access? RAS, Transmission states, Point to Point layers, Link control protocol, Authentication, Network control protocol.
ADHNT-202 WINDOWS 2003 SERVER ADMINISTRATION
______________________________________________________________________
INSTRUCTIONS FOR PAPER-SETTER
The question paper will consist of Two parts, A and B. Part A will have 15 short answer questions (40-60 words) of 2 marks each. Part B will have 12 long answer questions of 5 marks each.
The syllabus of the subject is divided into 3 sections I, II and III. The question paper will cover the entire syllabus uniformly. Part A will carry 5 questions from each section and Part B will carry 4 questions from each section.
INSTRUCTION FOR CANDIDATES
Candidates are required to attempt all questions from Part A and 9 questions of Part B out of 12.
______________________________________________________________________
Section I
Overview of MS Windows Server 2003 System Administration
Microsoft windows server 2003, Domain controllers and members servers, Understanding and using server roles, frequently used tools, Using control panel utilities, Using graphical administrative tools, Using command line utilities.
Managing Servers Running Windows Server 2003
Managing networked systems, connecting to other computers, sending console messages, using computer management system and storage tools, Working with services and applications, Managing System environments, profiles and properties, Managing hardware devices and drivers.
Section II
Monitoring Processes, Services and Events
Managing applications, processes and performance, Task manager, Administering applications and processes, Viewing and managing system performance and networking performance, Managing system services, Event logging and viewing, Monitoring server performance and activity, Why monitor your Server?, Getting ready to monitor, Using performance logs ,Viewing and replaying performance logs, Configuration alert for performance counters, Running scripts as actions, Tuning system performance, Monitor and tuning memory usage, processor usage, disk I/O.
ADHNT Syllabus (August 2005) Page 10 of 13
Understanding User and Group accounts
The windows server 2003 security model, Differences between user and group accounts, Default user accounts and groups, Account capabilities, Using default group accounts.
Creating User and Group accounts
User account setup and organization, Configuring account policies, Configuring user rights policies, Adding a user account, Adding a group account, handling global group membership.
Section III
Working with Support Services and Remote Desktop
Introducing support services, Working with the automated help system, using the help and support center, introducing the application frame work, monitoring system health. Understanding and using automatic updates, an overview of automatic updates, configuring automatic updates, and update servers, downloading and installing automatic updates ,removing automatic updates to recover from problems, Managing remote access to servers, Configuring remote assistance and remote desktop access, Making remote desktop connections, Configuring windows time and window server 2003, enabling and disabling window time on stand – alone and member servers.
ADHNT-203 LINUX ADMINISTRATION
______________________________________________________________________
INSTRUCTIONS FOR PAPER-SETTER
The question paper will consist of Two parts, A and B. Part A will have 15 short answer questions (40-60 words) of 2 marks each. Part B will have 12 long answer questions of 5 marks each.
The syllabus of the subject is divided into 3 sections I, II and III. The question paper will cover the entire syllabus uniformly. Part A will carry 5 questions from each section and Part B will carry 4 questions from each section.
INSTRUCTION FOR CANDIDATES
Candidates are required to attempt all questions from Part A and 9 questions of Part B out of 12.
______________________________________________________________________
Section I
Installing Red Hat Linux
Starting the Red Hat Linux installer, Beginning the installation, Installation type, Disk partitioning setup, Disk setup, Boot loader configuration, Account configuration, Installing packages, Graphical interface configuration, Finishing first run configuration.
Navigating Linux at the Console
Understanding virtual consoles, Logging in a virtual console, Introducing the shell, Working with the filesystem, Linux file system, Home directory, Current working directory, manipulating files and directories, Understanding permissions. ADHNT Syllabus (August 2005) Page 11 of 13
Making the console work for you
Creating, Editing and Saving text files using vi, Using emacs to create text files, Grouping files for efficient file management, Searching files and directories quickly, Using pipes, Moving between multiple open applications.
Section II
Introducing the Red Hat Desktop
GNOME and KDE Environment, Logging in to desktop, Launching applications, Using window controls, working with multiple windows, Understanding virtual desktops.
Working with files on the desktop
Opening, editing and closing an existing file, Cutting, copying and pasting files, Duplicating a file, Renaming, Deleting items, Changing file permissions, Creating a new directory, Manipulating files using drag and drop, Working with trash contents.
Section III
Command Line System Administration
Using the su command, Managing system processes, Managing running services, Managing filesystems, Managing accounts.
Desktop System Administration
Managing system processes, Managing running services, Managing network interfaces, Managing accounts, Reading system logs, Mounting and unmounting filesystems
ADHNT -204 DATABASE ADMINISTRATION
_____________________________________________________________________
INSTRUCTIONS FOR PAPER-SETTER
The question paper will consist of Two parts, A and B. Part A will have 15 short answer questions (40-60 words) of 2 marks each. Part B will have 12 long answer questions of 5 marks each.
The syllabus of the subject is divided into 3 sections I, II and III. The question paper will cover the entire syllabus uniformly. Part A will carry 5 questions from each section and Part B will carry 4 questions from each section.
INSTRUCTION FOR CANDIDATES
Candidates are required to attempt all questions from Part A and 9 questions of Part B out of 12.
______________________________________________________________________
Section I
Intro to Database and SQL Server 2000: Client/Server Concept, Types of Databases, Relational Vs. Flat File Database. Background of SQL Server, Versions of SQL Server and Clients Supported by SQL Server. Installation & Configuring SQL Server: Installing
ADHNT Syllabus (August 2005) Page 12 of 13
SQL Server 2000, Unattended Installations, SQL Server Services. Configuring SQL Server Network Protocol Settings. Installing SQL Server Clients.
SQL Server Tools and Utilities: Managing SQL Server with Enterprise Manager, Query Analyser, SQL Server Groups. Tools Menu, Action Menu. Introduction to Transact – SQL(T-SQL)
Section II
Managing Database: Creating Database, Database File Placement(RAID 0, RAID 1 RAID 5), Creating Database using T-SQL and Enterprise Manager. Altering, Renaming, Dropping Database. Creating Objects in Database: Tables, Views, Constraints, Indexes.
Managing Security: Understanding Security Modes, Windows Authentication Modes, Mixed Mode, SQL Server Logins, Windows Logins, Fixed Server Logins, Creating Users, Database Roles, (Grant, Revoke, Deny) N-Tier Security.
Section III
Database Backups and Restore: Copying Database with Copy Database Wizard. SQL Database Backup Modes(Full, Differential, Transactional Log Backup). Backing Up of the Database. Restoring Database. DTS: Its meaning, DTS Packages. DTS Storage and Designer.
SQL Server Agent: Configuring Understanding Alerts, Jobs and Events. Creating Jobs: Multi Server Jobs, Creating, Editing and Deleting of Jobs. Optimization Techniques: Queries and Stored Procedure, Proper Indexing, Locks and Defragmentation.
ADHNT
Read More

Advanced Diploma in Hardware & Networking Technologies ADHNT Syllabus


Advanced Diploma in Hardware & Networking Technologies
Hardware and Networking, Education, Computer, Under Graduate,

ADHNT Syllabus

INSTRUCTION FOR CANDIDATES
Candidates are required to attempt all questions from Part A and 9 questions of Part B out of 12.
______________________________________________________________________
Section I
Introduction
What is computer? Characteristics of Computers. How Computers evolved. Some earlier computers like Mark-I, EDVAC, EDVAC, EDSAC, UNIVAC. The five computer generations-key technologies, features and characteristics of each generation.
Basic Computer Organisation
Five basic operations of a computer. Block diagram showing basic organization of a computer system. Input Unit, Output Unit. Storage Unit: Primary storage, Secondary Storage. Arithmetic Logic Unit. Control Unit. Central Processing Unit. The System Concept. The Main Memory. Main Memory Organisation. Main Memory Capacity. RAM, ROM, PROM, EPROM, UVEPROM, EEPROM. Cache Memory.
Number Systems
Non-Positional Number Systems, Positional Number Systems: Binary, Octal, Hexadecimal number system, Converting from one number system to another.
Computer Arithmetic
Why binary numbers instead of decimal numbers. 7-bit ASCII Code. Binary arithmetic: Addition, Subtraction.
Section II
Secondary Storage Devices
Secondary Storage Devices: Limitations of primary storage, Sequential and Direct-Access Devices. Magnetic Disk, Basic principle of operation, Storage Organisation, Storage Capacity, Access mechanism, Access Time: Seek Time, Latency, Transfer Rate. Disk Formatting, Disk Drive, Disk Controller, Types of Magnetic Disks, Floppy Disks, Floppy-disk Drive, 3½-inch Floppy Disk, Hard Disks: Zip Disks, Disk Packs, Winchester Disk, Advantages and Limitations of Magnetic Disks, Uses of Magnetic Disks. Optical Disk, Basic principle of operation, Storage organization, Storage capacity,

Access Mechanism, Access Time, Optical Disk Drive, Types of Optical Disks: CD-ROM, WORM Disk, Advantages and Limitations of Optical Disks, Uses of Optical Disks
Input Devices
Keyboard. Point and Draw Devices: Mouse, Trackball, Joystick, Electronic pen, Touch Screen. Data Scanning Devices: Image Scanner: Flat-Bed and Hand-held Scanner, Optical Character Recognition Device, Optical mark reader, Bar-Code Reader, Magnetic-Ink Character Recognition. Digitizer. Electronic-card Reader. Voice Recognition Devices. Vision-Input System
Output Devices
Monitors Printers: Dot-Matrix Printers, Inkjet Printers, Laser Printers. Screen Image Projector. Voice Response Systems: Voice Reproduction System, Speech Synthesizer
Computer Software
What is Software? Relationship between Hardware and Software, Types of Software: System Software, Application Software, Functions of System Software, Type of System Software: Operating Systems, Language Translators, Utility Programs, Communications Software. Application Software, Commonly Used Application Softwares: Word Processing, Spreadsheet, Database, Graphics Personal Assistance, Education, Entertainment Software. Logical System Architecture showing relationship between hardware, system software, application software and users of a computer system. Firmware
Computer Languages
Analogy with natural languages, Machine Language, Advantages and Limitations of Machine Language, Assembly language: Assembler. Advantages of Assembly Language over Machine Language. Limitation of Assembly Language, High-Level Language: Compiler. Linker, Interpreter. Advantages and Limitations of High Level Languages, Some High Level Languages: Basic, Pascal, C, C++, Java.

Section III
Operating Systems
What is an Operating System? Main Functions of an Operating System. Measuring System Performance: Throughput, Turnaround time, Response time. Process Management: Process management in early systems. Multiprogramming: Requirements. Multitasking. Multiprocessing: Advantages and limitations. Difference between Multiprogramming and Multiprocessing. Timesharing: Requirements, Advantages. Memory management: Uniprogramming, Multiprogramming with fixed and variable number of memory partitions. Virtual memory: How is virtual memory realized? , Advantages and disadvantages of virtual memory. File management: File access methods-Sequential and Random access files, File operations, File naming. Command Interpretation: Command line interface, Graphical user interface. Some popular operating systems: Unix, MS-DOS, Microsoft Windows, Linux
The Internet
What is Internet? Brief History. Electronic mail. File Transfer Protocol. World Wide Web. WWW Browsers. Uses of the Internet
Classification of Computers
Notebook computers, Personal Computers, Workstations, Mainframe Systems, Supercomputers, Clients and servers.

INSTRUCTIONS FOR PAPER-SETTER
The question paper will consist of Two parts, A and B. Part A will have 15 short answer
questions (40-60 words) of 2 marks each. Part B will have 12 long answer questions of 5 marks each.
The syllabus of the subject is divided into 3 sections I, II and III. The question paper will cover the entire syllabus uniformly. Part A will carry 5 questions from each section and Part B will carry 4 questions from each section.

INSTRUCTION FOR CANDIDATES
Candidates are required to attempt all questions from Part A and 9 questions of Part B out of 12.
______________________________________________________________________
Section I
Structure of C Programming
Structure of a C Program, Execution of a C Program
Basic Elements
Character set, Identifiers and Keywords, Data Types, Constants, Variables, Declaration of Variables, Expressions, Statements, Overflow and underflow, Reading data from keyboard, Symbolic constants.
Operators and Expressions
Arithmetic operators, Integer arithmetic, Real arithmetic, Mixed mode arithmetic, Relational Operators, logical Operator, Assignment Operators, Increment and Decrement Operators, Conditional Operator. Arithmetic Expressions and their evaluation
Section II
Input and Output Operations
Reading a character, Writing a character, Formatted input and Output
Control Statements
if statement, switch statement, goto statement, while statement, do-while statement, for statement. Jumping in/out of a loop, Skipping part of a loop.
Arrays
One dimensional array, Two dimensional array, Multidimensional array.
Section III
Character Strings
Reading and Writing Strings, Arithmetic operators on Characters, Putting Strings together, Comparison of Two Strings, Functions for String handling: strcat, strcmp, strcpy, strlen
User Defined Functions
Advantages of User defined functions, Defining a function, Category of functions, Function Prototypes, Recursion, Function with arrays, Nested functions, variables in functions


Read More