Skip to main content

ads1

Chapter - 7 Introducation to Ubuntu Linux GUI

 Chapter - 7  Introducation to Ubuntu Linux GUI


 


GNOME2 Desktop Open source software is all about freedom and choices. Linux is no exception. It provides multiple choices for most components of the operating system. The desktop manager or simply the desktop is no exception. Linux provides several desktop managers, including GNOME, KDE, Unity, Xfce, LXDE, and many more. While the first three desktops require more powerful systems with better graphics capability, the last two desktops are light-weight and can run even on quite low-end machines. 


The last option in the Me Menu allows you to register the computer that you use with Canonical's free cloud 


Ubuntu One also provides an online music store (currently not available in India) and the facility of instantly uploading and sharing photographs taken using an Android phone with friends and relatives. Ubuntu One can be accessed from computers running Ubuntu, some other Linux/Unix operating systems and Microsoft Windows as well as Android and iOS mobile phones. The free account provides 5GB of storage. Additional storage, if needed, can be purchased.


By default there are four workspaces in Ubuntu. The four workspaces are arranged in a 1 x 4 grid. It even tries to show how many and which windows are open in which workspace in such a small area. We may switch to any of the workspaces by clicking on its mini representation in the workspace switcher. We may also use the shortcut keys CTRL-ALT arrow keys to switch between the workspaces. 


The Desktop :-  The desktop is the entire area between the top and bottom panels. A background picture is displayed on it. Any other item the user puts on the desktop will be placed in front of the background, obscuring that much portion of the background. Initially the desktop is empty, but the user may place frequently used files, directories as well as application launchers on the desktop for quick access. 


 

The Visual Effects tab has three levels of special effects to choose from – None, Normal and Extra (in increasing order of visual eye-candy provided). The default is none. Setting a higher level enables a wide range of 2D and 3D visual effects.


GNOME2 desktop. We saw how to use the three major components of GNOME2 that is the top panel, the desktop and the bottom panel. We looked at the list of built-in software available under the Applications menu. We also learnt the use of the Places menu and the options available under the System menu. Finally we saw how to customize the appearance of the GNOME2 Desktop. 


Choose the most appropriate option from those given below : 

(1) Which of the following is NOT a Linux desktop manager ? 


(a) KDE 

(b) LXDE 

(c) Unity 

(d) Brasero 


(2) Which of the following is a light-weight desktop manager ? 


(a) KDE 

(b) LXDE 

(c) Unity 

(d) GNOME2 


(3) Right-clicking an item brings up - 


(a) context menu 

(b) global menu 

(c) tool tip 

(d) system menu 


(4) Which of the following is not a menu in GNOME2's top panel under Ubuntu ? 


(a) Applications 

(b) Places 

(c) Preferences 

(d) System 


(5) Which of the following is not a part of the top panel in Ubuntu with GNOME2 ? 


(a) mini-representations of windows 

(b) application launchers 

(c) session menu 

(d) notification area 


(6) Which of the following is not a part of the bottom panel in Ubuntu with GNOME2 ? 


(a) Show Desktop icon 

(b) Trash icon 

(c) desktop/workspace switcher 

(d) notification area 


(7) Which of the following is not an application category by default in the Applications menu ? 


(a) games 

(b) administration 

(c) graphics 

(d) office 


(8) Which of the following applications is not available in the office category? 


(a) OpenOffice.org Writer 

(b) OpenOffice.org Draw 

(c) OpenOffice.org calc 

(d) OpenOffice.org Impress 


(9) Which of the following is not a folder inside the user's home directory? 


(a) Desktop 

(b) Music 

(c) Documents 

(d) Computer 

 

(10) Which of the following is a built-in application launcher in the top panel ? 


(a) OpenOffice.org Writer 

(b) OpenOffice.org calc 

(c) Help 

(d) All of these 


(11) Launchers in the top panel can be separated by - 


(a) line 

(b) vertical bar 

(c) horizontal bar 

(d) separator 


(12) Which menu is identified by the currently logged in user's name? 


(a) the Me menu 

(b) the User menu 

(c) the Personalize menu ze menu 

(d) the session menu 


(13) The cloud service from Ubuntu is known as 


(a) Ubuntu One 

(b) Ubuntu Music Store 

(c) Ubuntu Cloud 

(d) Ubuntu Drive 


(14) Files deleted from the Nautilus file browser go into - 


(a) Recycle Bin 

(b) Recycle Can 

(c) Trash Can 

(d) Trash Bin 


(15) Which of the following is NOT a built-in theme for Ubuntu ? 

(a) Ambience 

(b) ClearType 

(c) Dust Sand 

(d) High Contrast Inverse 

    

ads2

Popular posts from this blog

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise or class wise.

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise  or class wise. Solution :-   # x-axis is shows the subject and y -axis # shows the markers in each subject # import pandas and matplotlib  import pandas as pd  import matplotlib.pyplot as plt # Simple Line Chart with setting of Label of X and Y axis, # title for chart line and color of line  subject = ['Physic','Chemistry','Mathematics', 'Biology','Computer'] marks =[80,75,70,78,82] # To draw line in red colour plt.plot(subject,marks,'r',marker ='*')     # To Write Title of the Line Chart plt.title('Marks Scored') # To Put Label At Y Axis plt.xlabel('SUBJECT')           # To Put Label At X Axis plt.ylabel('MARKS')             plt.show() Output :- 

Class 10th Chapter 7 Functions in Calc

   Functions in Calc Calc provide built-in standard functions for mathematical, logical, statistical, date and time, financial and other calculations on numbers and text. The process of inserting a function is similar for all functions.That is, to use a function we need to enter a correct spelling of the function along with necessary arguments. This is known as syntax of the functions. t is possible to loose the grip on it and easy to introduce errors. To avoid this, you may take help of function wizard. The Calc support some more functions that support logical decision making. These functions are AND, OR, and NOT. (1) In which of the following ways we can enter a function in Calc ? (a) Directly typing function name in a cell nan (b) Function wizard or selecting from tool bar (c) A and B both (d) Depends on functions (2) A function can start with which of the following options ? (a) '='sign (b) Alphabets (c) Numbers (d) Any of these (3) Which of the following is not a logical...

11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following:

    11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following: Basic Salary <= 10000 : HRA = 20%, DA = 80% Basic Salary <= 20000 : HRA = 25%, DA = 90% Basic Salary > 20000 : HRA = 30%, DA = 95% Static Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     if(basic <=10000)     {         da = basic * 0.8;         hra = basic *0.2;     }              else if(basic <=20000)     {         da = basic * 0.9;         hra = basic *0.25;     }     else     {         da = basic * 0.95; ...