Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create...

10
Course Code : BCSL-013 Course Title : Computer Basics and PC Software Assignment Number : BCA (1)/ L-013/Assignment/2019-20 Maximum Marks : 100 Last Date of Submission : 15th October, 2019 (For July, 2019 Session) 15th April, 2020 (For January, 2020 Session) Section1: Linux operating system Q1. (a) Run the following (Linux commands and write the output) - ls-a - ls-l - mkdir - pwd - chmod Answer: - ls-a - ls-l - mkdir This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Transcript of Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create...

Page 1: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

Course Code : BCSL-013 Course Title : Computer Basics and PC Software

Assignment Number : BCA (1)/ L-013/Assignment/2019-20 Maximum Marks : 100

Last Date of Submission : 15th October, 2019 (For July, 2019 Session) 15th April, 2020 (For January, 2020 Session)

Section1: Linux operating system Q1. (a) Run the following (Linux commands and write the output) - ls-a - ls-l - mkdir - pwd - chmod Answer: - ls-a

- ls-l

- mkdir

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 2: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

- pwd

- chmod

(b) Perform the following tasks in Linux (i) Display the last 20 lines of a text file (you need to create a text file) Answer: Create a Text File Using the Cat Command Our first method for creating text files uses the cat command. It’s useful if you want to immediately add some text to your new file. Just type the following command at the terminal prompt (replacing “sample.txt” with whatever you want to name your file), and then press Enter:

cat > sample.txt

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 3: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

After pressing Enter, you are not returned to the terminal prompt. Instead, the cursor is placed on the next line, and you can start entering text directly into your file. Type your lines of text, pressing Enter after each line. When you are done, press Ctrl+D to exit the file and return to the prompt.

To verify your file was created, you can use the ls command to show a directory listing for the file:

ls -l sample.txt

You can also use the cat command to view the contents of your file. Just type the following command at the prompt, and then press Enter:

cat sample.txt

To display last 20 lines of a file linux use the tail command.

$ tail -20 bigfile.txt

Displays the last 20 lines. The default is 10 if you leave out the -n option.

Other useful options: $ tail -c 100 bigfile.txt

Displays the last 100 bytes of the file ( without reguard for the lines). This can be used on binary

files if you know what you are doing.

The head command is the same as tail except that it operates on the begining of the file.

To get lines out of the middle of the file you can use them together: cat bigfile.txt |head -10|tail -2

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 4: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

(ii) Display the first 15 lines of any text file Answer: the following command will display the first 15 lines of bigfile.txt. head -15 bigfile.txt

(iii)To count the no of times word IGNOU has occurred in a text file. Answer: you wan to find a word named “Orange” in the file called data.txt, run:

$ grep " IGNOU " data.txt

Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides) (i) All slides should follow the common design format (ii) Add a video to at least one slide which can be run on full screen option (iii)All the slides should have timer based transition. (iv)All the slides should have perform heading and slide notes. (v) Each slide should have one image related to Windows operating system. Answer: 2 Create a presentation 1. Open PowerPoint. 2. Select an option: 3. Select Blank Presentation to create a presentation from scratch. 4. Select one of the templates.

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 5: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

(minimum 10 slides)

(i) All slides should follow the common design format

(ii) Add a video to at least one slide which can be run on full screen option To add a Video to the slide: • In Normal View, click the slide to which the Video has to be added. • On the Insert Tab, in the Media Clips group, select the Video option. • Choose the option Video from File, locate the folder that contains the file and then select the file to be inserted. • Choose from the option to play the Video Automatically or When Clicked. This will allow the Video to be played either automatically when the slide appears or has to be started explicitly

by clicking on the Video button.

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 6: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

When a Video is inserted, a pause trigger is added called Trigger. This is added because the movie frame has to be clicked within the slide to play the movie. The movie can be played Full Screen

also by choosing the Play Full Screen option.

(iii)All the slides should have timer based transition. Use Duration to set transition speed. A shorter duration means that a slide advances faster, and a larger number makes the slide advance more slowly. 1. Select the slide that has the transition that you want to modify. 2. On the Transitions tab, in the Timing group, in the Duration box, type the number of seconds that you

want.

(iv)All the slides should have perform heading and slide notes.

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 7: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

(v) Each slide should have one image related to Windows operating system.

Section 3: Word Processing Q3. (a) Create a letter head of your study center where you are enrolled and insert the water mark with that study center name in the letter head. The following guidelines to be followed. - The logo of the company should be placed in the center. - Name, address – left side should be placed at. - Email ID, IP address of the study center should be shown at right side. - Display the ruler bar and the vertical bar to the top of the page.

Answer:

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 8: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

(b) Design a flyer for admission to the foreign university. It should contain “visit our counselors for admission in the foreign University” Use different font style, age, colors, effects, alignment to create the flyer.

Answer:.

Section 4: Worksheet Q4 Create a work sheet for pricing information of a company which sales computers &peripheral devices. You are required to calculate discount, sales price (MRP Discount) and

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 9: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

profit margin(MRP-sales price) Answer:

Section 5: Browsing and Discussion Forum Q5. Collaborate online (in a group) on Google docs to create a presentation on ‘Smart Phone design’. All the group should work on the presentation simultaneously from their respective machines. Use speaker notes for any online discussion and present a comprehensive report. (The report should comprise the latest trends in the design of smart phones).

Answer:

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in

Page 10: Course Code : BCSL-013 Course Title : Computer Basics and ... · Section 2: Power point Q2. Create a Power Point Presentation on the important features of Windows OS (minimum 10 slides)

DRM Software Reviews

This assignment is submitted by Mr. Shivam Kushwaha to http://www.ignousolvedassignment.co.in