Programming in Python 2016

Size: px
Start display at page:

Download "Programming in Python 2016"

Transcription

1 Practical No. 1 Write a program that prompts the user for input and check whether input contain repeated characters or numbers or not. If it contain repeated characters then count the total repeated characters and print it. To make aware of the basics of string functions and looping statements. String Functions and control flow statements. CO1: design and implement programs using Python programming language. Page no Give example of if control flow statement. 2. Which string function is used to count total number of characters? Ms. Mitali Dixit Page 1

2 Practical No. 2 Enrollment No Write a menu driven program that prints triangle pattern based on user selection. Menu should have 3 menu items in it namely pattern1, pattern2 and pattern3. a. When user selects pattern1 then first it should ask user to enter value for number of line and then according to input following pattern should be displayed b. When user selects pattern2 then first it should ask user to enter value for number of line and then according to input following pattern should be displayed c. When user selects pattern3 then first it should ask user to enter value for number of line and then according to input following pattern should be displayed. * * * * * * * * * * * * * * * * * * * * * * * * * To make aware of the basics of conditional statements and looping statements. Control flow statement CO1: design and implement programs using Python programming language. Ms. Mitali Dixit Page 2

3 Programming in Python 2016 Page no Differentiate for loop and while loop. 2. What is the significance of using else clause in loop? Ms. Mitali Dixit Page 3

4 Practical No Programming in Python 2016 ractical Problem Take a list, say for example this one: a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] Write a program that prints out all the elements of the list that are less than Instead of printing the elements one by one, make a new list that has all the elements less than 5 from this list in it and print out this new list also print this list in one line. 2. Ask the user for a number and return a list that contains only elements from the original list a that are smaller than that number given by the user. To make aware of list data type and its methods. List data type CO1: design and implement programs using Python programming language Page No: What are the benefits to use list data type? 2. Write the statements which demonstrates the usage of list methods. Ms. Mitali Dixit Page 4

5 Practical No. 4 Write a function that reads the words in words.txt and stores them as keys in a dictionary. Use the in operator to check whether a string is in the dictionary. To make aware of dictionary data type and its methods. Dictionary data type CO1: design and implement programs using Python programming language Page no Write three differences between mutable and non muta ble object. 2. Give example of three methods of dictionary. Ms. Mitali Dixit Page 5

6 Practical No. 5 Write a Python script to generate and print a dictionary that contains number (between 1 and n) in the form (x, x*x). Sample Dictionary ( n = 5) : Expected Output : {1: 1, 2: 4, 3: 9, 4: 16, 5: 25} To make aware python function Knowledge of dictionary and its functions. CO1: design and implement programs using Python programming language Page no Write down any two dictionary functions with example. 2. Differentiate dictionary and list. Ms. Mitali Dixit Page 6

7 Practical No. 6 Write a Python function that accepts a string and calculate the number of upper case letters and lower case letters Sample String : 'The quick Brow Fox' Expected Output : No. of Upper case characters : 3 To make aware of passing named parameter and positional parameter. Writing function definition, calling of a function and type of parameters passing. CO1: design and implement programs using Python programming language Page No Distinguish named parameter and positional parameter. 2. What is the significance of using * and ** with respect to function parameter? Ms. Mitali Dixit Page 7

8 Practical No. 7 Write a Python class to implement pow(x, n). To make aware of classes and object oriented concepts. Object oriented concepts. 1.5 Hour CO1: design and implement programs using Python programming language Page no How to define constructor in a class? 2. Can we create multiple default constructor in class? Ms. Mitali Dixit Page 8

9 Practical No. 8 Write a program to create parent class Person and from it derive two classes namely Student and Employee. Classes shall have following attributes and methods: Person name, age, gender, city, get(), set() Student id, sem, div, sub1marks, sub2marks, sub3marks, result() Employee id, designation, salary, gross_salary() Note: for gross_salary() consider following value: If salary < then HRA=10%, DA=5%, PF=200 If salary > then HRA=15%, DA=7%, PF=10% To make aware of inheritance and its types. Object oriented concepts. 1.5 Hour CO1: design and implement programs using Python programming language Page no Write pros and cons of each multi level inheritance. 4. How new MRO is good than classic MRO? Ms. Mitali Dixit Page 9

10 Practical No. 9 Enrollment No Create classes Area,Triangle and Square. Area c l a s s c o n t a i n s a method call area_cal() to calculate area of particular shape based on which class object called it and even contain print_area() method used to print area calculated. Use method overriding concept. To make aware of inheritance and method overriding. Object oriented concepts. CO1: design and implement programs using Python programming language Page no How delegating super class method supports multi level inheritance? 2. Write a code which demonstrate overriding attributes and methods. Ms. Mitali Dixit Page

11 Practical No. 10 A payroll program can make use of inheritance to take care of different classes of employees such as Manager, Scientist. They all share basic characteristics such as: Empno Empname Salary In addition to the common characteristics, they may have some additional ones: Manager will get bonus and Scientist will get prize Each class should have its own set of properties and common method ShowData() which will calculate total bonus amount and total prizes. Write a python program to implement such situation. To make aware of multi level inheritance. Object oriented concepts. CO1: design and implement programs using Python programming language Page no Write usage of init method. 2. Write example of cooperative super class method calling. Ms. Mitali Dixit Page 10

12 Practical No. 11 Generate translation.py using Translation table concept, to implement following actions: a. Generate translation table with mapping of small vowels to capital vowels b. Apply the generated translation table on string to replace the mapped character To make aware of Template class and methods. Usage of string library. CO2: comprehend the standard libraries and modules namely re, string and os. Page no Describe the methods provided by template string. 2. Differentiate substitute and safe_substitute method. Ms. Mitali Dixit Page 11

13 Practical No. 12 Write a python shell script which searches the string and replaced by another string. Also display how many strings have been replaced. To make aware of regular expression object methods. Regular expression and string methods. CO3: develop program to solve pattern matching problem using re module. Page no Give brief idea about regular expression object methods. 2. Write a python statement to demonstrate the difference of match and search method. Secured by the student Ms. Mitali Dixit Page 12

14 Practical No. 13 Write a program to print string starts in following pattern from given sequence of string. If pattern do not match then provide appropriate message. a. A.* b. AB.* c. AC.* d. AD.* To make aware of pattern searching using RE. Regular expression. CO3: develop program to solve pattern matching problem using re module. Page no List out the RE pattern with their meaning. 2. Write the above given program with search method. Ms. Mitali Dixit Page 13

15 Practical No. 14 Write a menu driven program that contains following menu items. 1. Print total number of sub-directory in current directory. 2. Print total number of files available in sub-directory of given path. 3. Print current given directory name exists or not. 4. Remove.txt files from given path. To make aware of OS file object methods. File object. CO4: develop program to perform operations on file using os module. Page no Explain open() method to create file with all file mode. 2. Differentiate read, readline and readlines methods. Ms. Mitali Dixit Page 14

16 Practical No. 15 Write a program to search digits from file and print addition of all digits. To make aware library of OS module. File object methods. CO4: develop program to perform operations on file using os module. Page no Describe four methods of shutil module. 2. Write one line description for all methods of os.path module. Ms. Mitali Dixit Page 15

17 .Practical No. 16 Create a window which contains an Entry box and a button. On click of button, content of Entry box shall be written into the txt file. Appropriate validation is required. To make aware of Tkinter GUI programming. Tkinter fundamentals. CO4: develop program to perform operations on file using os module. CO5: use Tkinter module to create widgets. Page No , Write about the functions available with TkMessagebox module to print different type of message. 2. Write about the functions available with TkFileDialog module. Ms. Mitali Dixit Page 16

18 Practical No. 17 Create a facebook registration page with proper validation using Tkinter. On submit redirect a control on log-in page. To log-in in to his/her account, user has to provide log-in credential. On submitting log-in credential another window should be opened with welcome message using user name. To make aware of Tkinter GUI programming with container widget. Container widget. CO5: use Tkinter module to create widgets. Page No Which other container is available to solve this problem? 2. Explain the methods of top level container. Ms. Mitali Dixit Page 17

19 Practical No. 18 Create a text editor using Tkinter. Basic functionality should be added such as Selection,Select all,bold, italic, underline to selection. To make aware of text editor class in Tkinter. Widget fundamentals. CO5: use Tkinter module to create widgets. Page No Write about text widget methods. 2. How marks and tags are useful in text editor? Ms. Mitali Dixit Page 18

20 Practical No. 19 Create a window which contains a menu for colour,cursor and exit options, on click of color option a window which contains following menu and options should be open, on click of particular color option, frame background should be changed, on click of cursor option,cursor shape should be change, and on click of exit, window should be close. Color Menu Red, Green, Blue, Yellow, Exit. Cursor Menu arrow, circle, clock, cross, dotbox, exchange, Exit To make aware of menu bar with Tkinter. Widget fundamentals, container widget. PEO2: To provide quality practical skill of tools and technologies to solve CO5: use Tkinter module to create widgets. Laborator y Page No Explain menu specific methods. 2. How many menu entries are available? Define each. Out of Marks 1 0 Vi va 5 Ms. Mitali Dixit Page 20

21 Practical No. 20 Using Tkinter, write a menu driven program to insert, update, and delete data of students with the help of SQLite3 database table and generate mark sheet of particular student in appropriate format. To make aware of database operations in python. DBAPI 2.0 CO6: use and explore DBAPImodule to work with database using Python. Page No Comprehend DBAPI Give example of connection object method. Ms. Mitali Dixit Page 21

Programming in Python 2014

Programming in Python 2014 Practical No. 1 Write a program that prompts the user for following information: a. Number b. Choice (Choice value can be 1 or 2) If user enters choice 1 then it should check whether the given number is

More information

Babu Madhav Institute of Information Technology 2016

Babu Madhav Institute of Information Technology 2016 5 Years Integrated M.Sc. (IT) 5 th Semester Practical Problems 060010503: Advanced Java Practical No : 1 Practical Problem Duration for completion PEO(s) to be PO(s) to be CO(s) to be Solution must contain

More information

Course Code Course Name Theory Practical Tutorial Theory TW/Practical Tutorial Total. Internal assessment. End Sem. Exam. Avg.

Course Code Course Name Theory Practical Tutorial Theory TW/Practical Tutorial Total. Internal assessment. End Sem. Exam. Avg. Course Code Course Name Theory Practical Tutorial Theory TW/Practical Tutorial Total ITL304 Java Programming Lab -- 2+2* -- -- 2 -- 2 Examination Scheme Theory Marks Course Code Course Name Internal assessment

More information

Programming in Python

Programming in Python COURSE DESCRIPTION This course presents both the programming interface and the techniques that can be used to write procedures in Python on Unix / Linux systems. COURSE OBJECTIVES Each participant will

More information

Course Title: Python + Django for Web Application

Course Title: Python + Django for Web Application Course Title: Python + Django for Web Application Duration: 6 days Introduction This course offer Python + Django framework ( MTV ) training with hands on session using Eclipse+Pydev Environment. Python

More information

DHANALAKSHMI COLLEGE OF ENGINEERING TAMBARAM, CHENNAI DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

DHANALAKSHMI COLLEGE OF ENGINEERING TAMBARAM, CHENNAI DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING DHANALAKSHMI COLLEGE OF ENGINEERING TAMBARAM, CHENNAI 601 301 DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING CS8383 OBJECT ORIENTED PROGRAMMING LABORATORY III SEMESTER - R 2017 LABORATORY MANUAL Name Reg.

More information

Networks Florida Social Studies Primary Source Library K-5 Digital Training Guide

Networks Florida Social Studies Primary Source Library K-5 Digital Training Guide Networks Florida Social Studies Primary Source Library K-5 Digital Training Guide Table of Contents Page Navigating Social Studies Content 2 Lesson Plans 3 My Calendar 4 Customize Lesson Plans 5 Lesson

More information

Final Java Experiment List(For Internal and External)

Final Java Experiment List(For Internal and External) Final Java Experiment List(For Internal and External) 1. Write a java program to create an abstract class named Shape that contains an empty method named area (). Provide two classes named Square and Triangle

More information

Introduction to Python

Introduction to Python Introduction to Python Version 1.1.5 (12/29/2008) [CG] Page 1 of 243 Introduction...6 About Python...7 The Python Interpreter...9 Exercises...11 Python Compilation...12 Python Scripts in Linux/Unix & Windows...14

More information

WRITE COMMANDS USING sed or grep (1 mark each) 2014 oct./nov march/april Commands using grep or egrep. (1 mark each)

WRITE COMMANDS USING sed or grep (1 mark each) 2014 oct./nov march/april Commands using grep or egrep. (1 mark each) WRITE COMMANDS USING sed or grep (1 mark each) 2014 oct./nov. 1. Display two lines starting from 7 th line of file X1. 2. Display all blank lines between line 20 and 30 of file X1. 3. Display lines beginning

More information

Department of Computer Science and Technology, UTU

Department of Computer Science and Technology, UTU 060010502: Programming in Python Unit 1:Introduction to Python Que: 1 Answer the following question in short. 1. Which components of lexical structure are used write programme? 2. How to terminate the

More information

[CHAPTER] 1 INTRODUCTION 1

[CHAPTER] 1 INTRODUCTION 1 FM_TOC C7817 47493 1/28/11 9:29 AM Page iii Table of Contents [CHAPTER] 1 INTRODUCTION 1 1.1 Two Fundamental Ideas of Computer Science: Algorithms and Information Processing...2 1.1.1 Algorithms...2 1.1.2

More information

CSE 212 : JAVA PROGRAMMING LAB. IV Sem BE (CS&E) (2013) DEPT OF COMPUTER SCIENCE & ENGG. M. I. T., MANIPAL. Prepared By : Approved by :

CSE 212 : JAVA PROGRAMMING LAB. IV Sem BE (CS&E) (2013) DEPT OF COMPUTER SCIENCE & ENGG. M. I. T., MANIPAL. Prepared By : Approved by : 1 CODE: CSE212 CSE 212 : JAVA PROGRAMMING LAB IV Sem BE (CS&E) (2013) DEPT OF COMPUTER SCIENCE & ENGG. M. I. T., MANIPAL Prepared By : Approved by : Dr. Harish S. V. Mr. Chidananda Acharya Ms. Roopashri

More information

Lab 3a Using the vi editor

Lab 3a Using the vi editor Lab 3a Using the vi editor Objectives: Become familiar with the vi Editor Review the three vi Modes Review keystrokes to move between vi modes Create a new file with vi Editor Invoke vi with show mode

More information

Flask Web Development Course Catalog

Flask Web Development Course Catalog Flask Web Development Course Catalog Enhance Your Contribution to the Business, Earn Industry-recognized Accreditations, and Develop Skills that Help You Advance in Your Career March 2018 www.iotintercon.com

More information

Guide to Employee Self Service

Guide to Employee Self Service Guide to Employee Self Service If you are unable to log into Employee Self Service please contact the Enterprise Service Desk at 260 451 6800 or email at enterpriseservicedesk@exelisinc.com To Access Employee

More information

Time: 3 HOURS Maximum Marks: 100

Time: 3 HOURS Maximum Marks: 100 ANNA UNIVERSITY:CHENNAI 600 025 M.E/M.Tech. DEGREE EXAMINATIONS, NOV./DEC. 2014 Regulations 2013 Third Semester B.E. Computer Science and Engineering CS6311: PROGRAMMING AND DATA STRUCTURES LABORATORY

More information

2a. Widgets-Basics 10/30/06 4:05 PM

2a. Widgets-Basics 10/30/06 4:05 PM Dashboard and Widgets - Basics About Dashboard Dashboard - is part of Mac OS 10 Tiger, and is Apple software that creates the user interface for widgets. A widget is an element of a graphical user interface

More information

3.3 Structures. Department of CSE

3.3 Structures. Department of CSE 3.3 Structures 1 Department of CSE Objectives To give an introduction to Structures To clearly distinguish between Structures from Arrays To explain the scenarios which require Structures To illustrate

More information

Creating Postcards in Microsoft Publisher

Creating Postcards in Microsoft Publisher Creating Postcards in Microsoft Publisher Open Publisher either from the desktop or through the Start menu. Once Publisher opens, select Postcards from the menu on the right hand side of the screen. Scroll

More information

Practical Problem: Create an Android app that having following layouts.

Practical Problem: Create an Android app that having following layouts. Practical No: 1 Practical Problem: Create an Android app that having following layouts. Objective(s) Duration for completion PEO(s) to be achieved PO(s) to be achieved CO(s) to be achieved Solution must

More information

Lab Manual Object Oriented Programming with JAVA (15ECSP203)

Lab Manual Object Oriented Programming with JAVA (15ECSP203) Lab Manual Object Oriented Programming with JAVA (15ECSP203) 2016 17 Sl. No. Contents 1. Course Outcomes (COs) 2. List of Experiments 3. Introduction to Object Oriented Programming 4. Standard Operating

More information

Go to click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this:

Go to   click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this: Go to www.newlifeodessa.org, click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this: 1. At the bottom of the area, under Log In, click Need an Account

More information

Using NetBeans to document code. The NetBeans IDE can be used to help generate Javadoc documentation and to check that the documentation is complete.

Using NetBeans to document code. The NetBeans IDE can be used to help generate Javadoc documentation and to check that the documentation is complete. Using NetBeans to document code The NetBeans IDE can be used to help generate Javadoc documentation and to check that the documentation is complete. Before you generate documentation you should set the

More information

ADMINISTRATIVE MANAGEMENT COLLEGE

ADMINISTRATIVE MANAGEMENT COLLEGE First Semester ADMINISTRATIVE MANAGEMENT COLLEGE BACHELOR OF COMPUTER APPLICATION COURSE OUTCOME (CO) Problem solving techniques Using C CO 1: Understand the basic concepts of programming, software and

More information

Instructions for Accessing Student Access Center (SAC)

Instructions for Accessing Student Access Center (SAC) Instructions for Accessing Student Access Center (SAC) 1. Log into the FCS website http:\\www.fultonschools.org 2. Access the on the Students and Parents menu by resting the cursor on the title Move the

More information

Babu Madhav Institute of Information Technology, UTU 2015

Babu Madhav Institute of Information Technology, UTU 2015 Five years Integrated M.Sc.(IT)(Semester 5) Question Bank 060010502:Programming in Python Unit-1:Introduction To Python Q-1 Answer the following Questions in short. 1. Which operator is used for slicing?

More information

Instructions for Using PDF Tests and Journals

Instructions for Using PDF Tests and Journals Instructions for Using PDF Tests and Journals To use the test and journal PDFs onscreen, open them in Adobe Acrobat Reader DC, a free version of the Adobe app you can download here: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html.

More information

Babu Madhav Institute of Information Technology 2015

Babu Madhav Institute of Information Technology 2015 Paper No.:060010102 Subject: Database Management Systems (Practical) Program: 5 Years Integrated M.Sc.(IT) Semester: 01 Practical No: 1 Enrolment No: Practical Problem Create following tables: CLIENT_MASTER

More information

Lesson 2 Quick Tour and Features

Lesson 2 Quick Tour and Features Lesson 2 Quick Tour and Features Objectives Students will format a document page. Students will use a spell-checker. Students will copy, cut, and paste text. Students will adjust paragraph indentations.

More information

PTN-202: Advanced Python Programming Course Description. Course Outline

PTN-202: Advanced Python Programming Course Description. Course Outline PTN-202: Advanced Python Programming Course Description This 4-day course picks up where Python I leaves off, covering some topics in more detail, and adding many new ones, with a focus on enterprise development.

More information

Babu Madhav Institute of Information Technology, UTU

Babu Madhav Institute of Information Technology, UTU 5 Years Integrated M.Sc. (IT) 7 th Semester Practical List 060010710: Java Framework Practical No : 1 Enrollment No: Practical 1. Develop a web application called Student Information Problem System(SIS)

More information

Molina Agent User Guide

Molina Agent User Guide Molina Agent User Guide REGISTERING and LOGGING IN Welcome to Sentinel Elite! Sentinel is accessible at www.sentinelelite.com. If you are new to Sentinel please register as a new agent. Once selected,

More information

Question 2. [2 points] True False By default, structures are passed-by-reference.

Question 2. [2 points] True False By default, structures are passed-by-reference. CS 101, Spring 2016 May 5th Exam 4 Name: For Questions 1 5, circle True or False. Question 1. [2 points] True False A structure is a user-defined data type. Question 2. [2 points] True False By default,

More information

This course is designed for anyone who needs to learn how to write programs in Python.

This course is designed for anyone who needs to learn how to write programs in Python. Python Programming COURSE OVERVIEW: This course introduces the student to the Python language. Upon completion of the course, the student will be able to write non-trivial Python programs dealing with

More information

Employee Access Guide

Employee Access Guide 1 Employee Access Main Me nu The Main Menu is the first screen you see when logging in to Employee Access. This screen provides a brief description of each task available. The tasks are listed as links

More information

UNIT -I PART-A Q.No Question Competence BTL

UNIT -I PART-A Q.No Question Competence BTL VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur-60303. Department of Information Technology Academic Year: 06-07 QUESTION BANK- ODD SEMESTER Name of the Subject Subject Code Semester Year Department

More information

Homework 2 Implementing the University Application Due: November 7, 2004 (Sunday midnight)

Homework 2 Implementing the University Application Due: November 7, 2004 (Sunday midnight) Homework 2 Implementing the University Application Due: November 7, 2004 (Sunday midnight) In this assignment, you will implement the University application from homework 1. Instead of implementing your

More information

Registration Help. Table of Contents for Help. Starting the Registration Process. Choosing Your User Role (Provider Type)

Registration Help. Table of Contents for Help. Starting the Registration Process. Choosing Your User Role (Provider Type) Registration Help Table of Contents for Help Starting the Registration Process Choosing Your User Role (Provider Type) Registering as a Home Health User Registering as a Hospital User Registering as a

More information

WordPress Manual First Year Experience

WordPress Manual First Year Experience WordPress Manual First Year Experience May 18, 2015 Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 The Home Page

More information

Overview of OOP. Dr. Zhang COSC 1436 Summer, /18/2017

Overview of OOP. Dr. Zhang COSC 1436 Summer, /18/2017 Overview of OOP Dr. Zhang COSC 1436 Summer, 2017 7/18/2017 Review Data Structures (list, dictionary, tuples, sets, strings) Lists are enclosed in square brackets: l = [1, 2, "a"] (access by index, is mutable

More information

Atlantic Capital Exchange ACE Secure Browser Quick Start Guide

Atlantic Capital Exchange ACE Secure Browser Quick Start Guide Atlantic Capital Exchange ACE Secure Browser Quick Start Guide ACE Secure Browser is a user friendly, secure application that protects your company while accessing bank information and services. Early

More information

Data Structures (list, dictionary, tuples, sets, strings)

Data Structures (list, dictionary, tuples, sets, strings) Data Structures (list, dictionary, tuples, sets, strings) Lists are enclosed in brackets: l = [1, 2, "a"] (access by index, is mutable sequence) Tuples are enclosed in parentheses: t = (1, 2, "a") (access

More information

Table of Contents EVALUATION COPY

Table of Contents EVALUATION COPY Table of Contents Introduction... 1-2 A Brief History of Python... 1-3 Python Versions... 1-4 Installing Python... 1-5 Environment Variables... 1-6 Executing Python from the Command Line... 1-7 IDLE...

More information

Practical List of. MCA IV SEM Session -2010

Practical List of. MCA IV SEM Session -2010 1. WAP to create own exception. Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of MCA IV SEM Session -2010 MCA-401 - Internet and Java Programming

More information

5 Years Integrated M.Sc. (IT) 6th Semester Web Development using ASP.NET MVC Practical List 2016

5 Years Integrated M.Sc. (IT) 6th Semester Web Development using ASP.NET MVC Practical List 2016 Practical No: 1 Enrollment No: Name: Practical Problem (a) Create MVC 4 application which takes value from browser URL. Application should display following output based on input no : Ex. No = 1234 o/p

More information

DEPARTMENTAL COORDINATOR v8.0

DEPARTMENTAL COORDINATOR v8.0 Handout #3 DEPARTMENTAL COORDINATOR v8.0 MAXIMUS, Inc. 2012 All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means,

More information

Static Webpage Development

Static Webpage Development Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for PHP Given below is the brief description for the course you are looking for: - Static Webpage Development Introduction

More information

Answer any Five Questions. All questions carry equal marks.

Answer any Five Questions. All questions carry equal marks. PART II, PAPER XII (Object Oriented Analysis and Design) 1. What are the benefits of object oriented development over structure development. How one way association is different than two way association.

More information

Screen Student Loan Recipient Table

Screen Student Loan Recipient Table Screen 419 - Student Loan Recipient Table This screen is used to maintain the table of student loan recipients. The recipient code from this table is used on Screen 127 to determine where Student Loan

More information

The simplest way to search for and enroll in classes is to do so via the Enrollment Shopping Cart.

The simplest way to search for and enroll in classes is to do so via the Enrollment Shopping Cart. The simplest way to search for and enroll in classes is to do so via the Enrollment Shopping Cart. 1. Starting from the Student Center Screen, click on the blue enrollment shopping cart in order to access

More information

ASSIGNMENT 1 to 7 (Practical)

ASSIGNMENT 1 to 7 (Practical) ASSIGNMENT 1 to 7 (Practical) SESSION: 2015-16 DIPLOMA IN COMPUTER APPLICATION (DCA) Please read the instructions carefully before attempting assignment questions. INSTRUCTIONS Dear Learner, Welcome to

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION Grade- XI COMPUTER SCIENCE Unit I Programming and Computational Thinking 1. What are the functions of computer? 2. Briefly explain the basic architecture

More information

Instructions for completing 2015 MN Square Dance Federation Dues on-line

Instructions for completing 2015 MN Square Dance Federation Dues on-line Instructions for completing 2015 MN Square Dance Federation Dues on-line Open a web page: Copy and paste the address below into your web browser. http://mnfederationmembers.org/federationmembership/default.aspx

More information

V.S.B. ENGINEERING COLLEGE, KARUR. Department of Information Technology. Academic Year: (Oddsemester) Assignment Questions

V.S.B. ENGINEERING COLLEGE, KARUR. Department of Information Technology. Academic Year: (Oddsemester) Assignment Questions Academic Year: 2017-2018 (Oddsemester) Assignment Questions Class / Semester: II Year/III Semester B.Tech Information Technology Name of the Subject: Computer Architecture Name of faculty member: V.Matheswaran

More information

Set Up and Use Your Kiosk... 1

Set Up and Use Your Kiosk... 1 Kiosk User Guide Kiosk User Guide Contents Set Up and Use Your Kiosk... 1 Download the Application... 1 Enable Auto-Updates... 1 Technical Support... 2 Access the User Guide... 2 Report a Technical Problem...

More information

User Guide Version 2.0

User Guide Version 2.0 User Guide Version 2.0 Page 2 of 8 Summary Contents 1 INTRODUCTION... 3 2 SECURESHELL (SSH)... 4 2.1 ENABLING SSH... 4 2.2 DISABLING SSH... 4 2.2.1 Change Password... 4 2.2.2 Secure Shell Connection Information...

More information

MASTER OF COMPUTER APPLICATIONS (MCA)

MASTER OF COMPUTER APPLICATIONS (MCA) MASTER OF COMPUTER APPLICATIONS (MCA) MCA/ASSIGN/SEMESTER-II ASSIGNMENTS (July - 2018 & January - 2019) MCS-021, MCS-022, MCS-023, MCS-024, MCSL-025 SCHOOL OF COMPUTER AND INFORMATION SCIENCES INDIRA GANDHI

More information

M.Com IT (Information Tech.) -Scheme with Practical List Colleges BHARATHIAR UNIVERSITY,COIMBATORE

M.Com IT (Information Tech.) -Scheme with Practical List Colleges BHARATHIAR UNIVERSITY,COIMBATORE Page 1 of 7 BHARATHIAR UNIVERSITY,COIMBATORE-641 046 M.Com I T (Information Technology) with Diploma in Services Marketing / Diploma in Capital and Commodity Markets /Diploma in Insurance Management /

More information

COP4530 Data Structures, Algorithms and Generic Programming Recitation 3 Date: January 20 & 22, 2009

COP4530 Data Structures, Algorithms and Generic Programming Recitation 3 Date: January 20 & 22, 2009 COP4530 Data Structures, Algorithms and Generic Programming Recitation 3 Date: January 20 & 22, 2009 Lab objectives: 1) Quiz 2) Set up SSH to run external programs. 3) Learn how to use the DDD debuger.

More information

Lab 5a Shell Script Lab 4 Using Arithmetic Operators in shell script

Lab 5a Shell Script Lab 4 Using Arithmetic Operators in shell script Lab 5a Shell Script Lab 4 Using Arithmetic Operators in shell script Objective Upon completion of this lab, the student will be able to use arithmetic operators in Linux shell script. Scenario The student

More information

Networks Florida Social Studies WorkText K-5 Digital Training Guide

Networks Florida Social Studies WorkText K-5 Digital Training Guide Networks Florida Social Studies WorkText K-5 Digital Training Guide Table of Contents Page Navigating Social Studies Content 2 Lesson Plans 3 My Calendar 4 Customize Lesson Plans 5 Lesson Presentations

More information

Intermediate Python 3.x

Intermediate Python 3.x Intermediate Python 3.x This 4 day course picks up where Introduction to Python 3 leaves off, covering some topics in more detail, and adding many new ones, with a focus on enterprise development. This

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 INFORMATION TECHNOLOGY TUTORIAL QUESTION BANK Course Name Course Code Class Branch : Web Technologies : ACS006 : B. Tech

More information

Welcome to e-people 4. What is e-people? 4. Accessing e-people 4. AHS Accounts 4

Welcome to e-people 4. What is e-people? 4. Accessing e-people 4. AHS  Accounts 4 User Guide Table of contents Welcome to e-people 4 What is e-people? 4 Accessing e-people 4 AHS Email Accounts 4 How to Access Your AHS Email Account Externally 4 AHS Outlook Web Access Log Off 5 How to

More information

Datastore Model Designer

Datastore Model Designer Datastore Model Designer The Datastore Model Designer allows you to define the datastore model for your Wakanda application. A model is a description of how data will be accessed and stored into structures

More information

Ascending. Load. Descending. Save. Exit. Numbers

Ascending. Load. Descending. Save. Exit. Numbers 1. Create an abstract class shape. Derive three classes sphere, cone and cylinder from it. Calculate area and volume of all (use method overriding) [30] 2. Design an HTML page containing 4 option buttons

More information

BCA (Part II) EXAMINATION, 2009 C++ PROGRAMMING Time allowed: Three Hours Maximum Marks: 50 Attempt any five questions

BCA (Part II) EXAMINATION, 2009 C++ PROGRAMMING Time allowed: Three Hours Maximum Marks: 50 Attempt any five questions C++ PROGRAMMING Attempt any five questions 1. (a) What is encapsulation? Why is data considered safe if encapsulated? How are the terms abstraction and encapsulation related. 4 (b) What do you understand

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION. Subject- Informatics Practices

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION. Subject- Informatics Practices Grade- XI INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION Unit 1 Programming and Computational Thinking Chapter 1 Introduction to Computer Systems 1. What are the functions of computer? 2. What

More information

EXAM Microsoft MTA Software Development Fundamentals. Buy Full Product.

EXAM Microsoft MTA Software Development Fundamentals. Buy Full Product. Microsoft EXAM - 98-361 Microsoft MTA Software Development Fundamentals Buy Full Product http://www.examskey.com/98-361.html Examskey Microsoft 98-361 exam demo product is here for you to test the quality

More information

R. C. TECHNICAL INSTITUTE, AHMEDABAD COMPUTER ENGG. DEPARTMENT ASSIGNMENT 1

R. C. TECHNICAL INSTITUTE, AHMEDABAD COMPUTER ENGG. DEPARTMENT ASSIGNMENT 1 R. C. TECHNICAL INSTITUTE, AHMEDABAD COMPUTER ENGG. DEPARTMENT Sub:-CMTS Sem-5 th ASSIGNMENT 1 CHAPTER 1 1. Explain Generation of Computer in brief. 2. List out Components available on Motherboard. 3.

More information

Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of. MCA III SEM Session -2010

Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of. MCA III SEM Session -2010 Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of MCA III SEM Session -2010 MCA-301 - Object Oriented Programming in C++ 1. WAP to generate Fibonacci

More information

KRISHNA KANTA HANDIQUI STATE OPEN UNIVERSITY Hiranya Kumar Bhuyan School of Science and Technology

KRISHNA KANTA HANDIQUI STATE OPEN UNIVERSITY Hiranya Kumar Bhuyan School of Science and Technology HOME ASSIGNMENT FOR BACHELOR OF COMPUTER APPLICATIONS (BCA) THIRD SEMESTER, 2017 N.B. The learners will have to collect receipt after submitting the assignment with the signature and seal of the collector

More information

Downloaded from

Downloaded from FIRST TERMINAL EXAMINATION, INFORMATICS PRACTICES Time : 3 hrs. Class - XI M.M. : 70 Instructions: This question paper contains seven questions. All the questions are compulsory. Answer the questions carefully.

More information

Linux & Shell Programming 2014

Linux & Shell Programming 2014 Practical No : 1 Enrollment No: Group : A Practical Problem Write a date command to display date in following format: (Consider current date as 4 th January 2014) 1. dd/mm/yy hh:mm:ss 2. Today's date is:

More information

ACER Online Assessment and Reporting System (OARS) User Guide

ACER Online Assessment and Reporting System (OARS) User Guide ACER Online Assessment and Reporting System (OARS) User Guide January 2015 Contents Quick guide... 3 Overview... 4 System requirements... 4 Account access... 4 Account set up... 5 Create student groups

More information

Review for Second Midterm Exam

Review for Second Midterm Exam Review for Second Midterm Exam 1 Policies & Material 2 Questions modular design working with files object-oriented programming testing, exceptions, complexity GUI design and implementation MCS 260 Lecture

More information

ACCUPLACER Placement Validity Study Guide

ACCUPLACER Placement Validity Study Guide ACES ACES (Admitted Class Evaluation Service TM ) ACCUPLACER Placement Validity Study Guide February 2018 COLLEGEBOARD.ORG/ACES Table of Contents Page ACES Overview ACCUPLACER Placement Validity Study

More information

Object Fundamentals, Part One. Kenneth M. Anderson University of Colorado, Boulder CSCI 4448/5448 Lecture 2 08/27/2009

Object Fundamentals, Part One. Kenneth M. Anderson University of Colorado, Boulder CSCI 4448/5448 Lecture 2 08/27/2009 Object Fundamentals, Part One Kenneth M. Anderson University of Colorado, Boulder CSCI 4448/5448 Lecture 2 08/27/2009 1 Lecture Goals Introduce basic concepts, terminology, and notations for object-oriented

More information

DEPARTMENT OF COMPUTER APPLICATIONS SRM INSTITUTE OF SCIENCE AND TECHNOLOGY SRM NAGAR, KATTANKALATHUR

DEPARTMENT OF COMPUTER APPLICATIONS SRM INSTITUTE OF SCIENCE AND TECHNOLOGY SRM NAGAR, KATTANKALATHUR DEPARTMENT OF COMPUTER APPLICATIONS SRM INSTITUTE OF SCIENCE AND TECHNOLOGY SRM NAGAR, KATTANKALATHUR SYLLABUS / QUESTION BANK Class & Semester : I ECE & II Semester Subject Code : CS152 Subject Name :

More information

Name of subject: JAVA PROGRAMMING Subject code: Semester: V ASSIGNMENT 1

Name of subject: JAVA PROGRAMMING Subject code: Semester: V ASSIGNMENT 1 Name of subject: JAVA PROGRAMMING Subject code: 17515 Semester: V ASSIGNMENT 1 3 Marks Introduction to Java (16 Marks) 1. Write all primitive data types available in java with their storage size in bytes.

More information

CS 2316 Exam 3. Practice. Failure to properly fill in the information on this page will result in a deduction of up to 5 points from your exam score.

CS 2316 Exam 3. Practice. Failure to properly fill in the information on this page will result in a deduction of up to 5 points from your exam score. CS 2316 Exam 3 Practice Name (print clearly): T-Square ID (gtg, gth, msmith3, etc): Section (e.g., B1): Signature: Failure to properly fill in the information on this page will result in a deduction of

More information

Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks Marks

Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks Marks Subject Code: CC103-N Subject Title: FUNDAMENTALS OF PROGRAMMING Teaching scheme Total L T P Total Theory Credit Evaluation Scheme Mid Sem Exam CIA Pract. Total Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks

More information

Product Information Manager PIM. Supplier Guide for PIM How to Create Item Family - WEBUI

Product Information Manager PIM. Supplier Guide for PIM How to Create Item Family - WEBUI Product Information Manager PIM Supplier Guide for PIM How to Create Item Family - WEBUI Supplier Login Page Supplier Login Page: http://pim.aafes.com Enter your username and password to log into PIM 2

More information

ADVANCED LINUX SYSTEM ADMINISTRATION

ADVANCED LINUX SYSTEM ADMINISTRATION Lab Assignment 1 Corresponding to Topic 2, The Command Line L1 Main goals To get used to the command line. To gain basic skills with the system shell. To understand some of the basic tools of system administration.

More information

Certificate in Programming fundamentals CCII onwards Page 1 of 5 BHARATHIAR UNIVERSITY: COIMBATORE

Certificate in Programming fundamentals CCII onwards Page 1 of 5 BHARATHIAR UNIVERSITY: COIMBATORE Certificate in Programming fundamentals CCII 2013-14 onwards Page 1 of 5 BHARATHIAR UNIVERSITY: COIMBATORE 641046 CENTRE FOR COLLABORATION OF INDUSTRY AND INSTITUTIONS(CCII) CERTIFICATE IN PROGRAMMING

More information

ALIGARH MUSLIM UNIVERSITY Department of Computer Science. JAVA Lab Assignment Course: MCA II nd Semester Academic Session:

ALIGARH MUSLIM UNIVERSITY Department of Computer Science. JAVA Lab Assignment Course: MCA II nd Semester Academic Session: ALIGARH MUSLIM UNIVERSITY Department of Computer Science Dated: 25-01-2016 JAVA Lab Assignment Course: MCA II nd Semester Academic Session: 2015-2016 CSM-241: Object Oriented Programming Using JAVA Note:

More information

mycoresource.com Member User Guide

mycoresource.com Member User Guide mycoresource.com Member User Guide January 2017 i Table of Contents Portal Overview... 1 Create Account - Member... 2 Sign In... 8 Forgot Password or Username... 10 Home Page... 13 View My Expenses...

More information

Write a java program to prints the count of odd and even no s entered.

Write a java program to prints the count of odd and even no s entered. Dated: 27-01-2014 ALIGARH MUSLIM UNIVERSITY Department of Computer Science CS-2P1: Object Oriented Programming Using JAVA Java Lab Assignment Course: MCA (Semester-II nd ) Academic Session: 2013-2014 Note:

More information

Employee Dashboard User Manual

Employee Dashboard User Manual Employee Dashboard User Manual Employee Dashboard... 2 The Actions Bar... 2 Actions... 4 Punch tab... 4 Clock In... 4 Clock Out... 5 Begin Break... 5 Transfer... 6 End Break... 6 Begin Meal... 7 End Meal...

More information

Power Teacher August 2015

Power Teacher August 2015 Power Teacher 2015-2016 August 2015 1 What s Possible with Power Teacher 2.8 Can change a student s given name to his/her preferred name. Can leave a late-enrolling student at the bottom of the class list.

More information

ABOUT WEB TECHNOLOGY COURSE SCOPE:

ABOUT WEB TECHNOLOGY COURSE SCOPE: ABOUT WEB TECHNOLOGY COURSE SCOPE: The booming IT business across the globe, the web has become one in every of the foremost necessary suggests that of communication nowadays and websites are the lifelines

More information

Question Bank PL/SQL Fundamentals-I

Question Bank PL/SQL Fundamentals-I Question Bank PL/SQL Fundamentals-I UNIT-I Fundamentals of PL SQL Introduction to SQL Developer, Introduction to PL/SQL, PL/SQL Overview, Benefits of PL/SQL, Subprograms, Overview of the Types of PL/SQL

More information

MA400: Financial Mathematics

MA400: Financial Mathematics MA400: Financial Mathematics Introductory Course Lecture 1: Overview of the course Preliminaries A brief introduction Beginning to program Some example programs Aims of this course Students should have

More information

DEPARTMENT OF INFORMATION TECHNOLOGY

DEPARTMENT OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY II Year/III Sem CS8392- OBJECT ORIENTED PROGRAMMING Prepared by: Komal Kumar.N, AP/IT, VTHT UNIVERSITY QUESTIONS FROM 2011 to 2018 PART-A 1. What are the advantages

More information

ADP Reporting Skills Business Requirements ADP Pro User Conference

ADP Reporting Skills Business Requirements ADP Pro User Conference ADP Reporting Skills Business Requirements 2015 ADP Pro User Conference Disclaimer The screen shots used in this presentation come from the current version of ADP Custom Reporting. What you see when you

More information

NORTH EAST I.S.D. PAYROLL DEPARTMENT KRONOS WORKFORCE CENTRAL V 8 TIME AND ATTENDANCE SUPERVISORS QUICK REFERENCE

NORTH EAST I.S.D. PAYROLL DEPARTMENT KRONOS WORKFORCE CENTRAL V 8 TIME AND ATTENDANCE SUPERVISORS QUICK REFERENCE NORTH EAST I.S.D. PAYROLL DEPARTMENT KRONOS WORKFORCE CENTRAL V 8 TIME AND ATTENDANCE SUPERVISORS QUICK REFERENCE 1. Log in information will remain the same. 2. User Name is 6-digit employee ID number

More information

NAVIANCE TRAINING O C T O B E R

NAVIANCE TRAINING O C T O B E R NAVIANCE TRAINING O C T O B E R 2 0 1 5 OVERVIEW OF NAVIANCE Web-based collegeand career- ready platform Components: Self-Discovery Career Exploration Academic Planning Post-Secondary Preparation Naviance

More information

Migrating to SQLBase for Linux. By Charles McLouth Product Manager - SQLBase

Migrating to SQLBase for Linux. By Charles McLouth Product Manager - SQLBase Migrating to SQLBase for Linux By Charles McLouth Product Manager - SQLBase September, 2004 Table of Contents Abstract...3 Introduction...3 Installing SQLBase for Linux...3 Configuring SQLBase for Linux...8

More information

PYTHON CONTENT NOTE: Almost every task is explained with an example

PYTHON CONTENT NOTE: Almost every task is explained with an example PYTHON CONTENT NOTE: Almost every task is explained with an example Introduction: 1. What is a script and program? 2. Difference between scripting and programming languages? 3. What is Python? 4. Characteristics

More information