Tamilnadu Board Computer Applications State Board (Tamilnadu) for 11th Standard (English Medium) Question paper & Study Materials

11th Standard English Medium Computer Applications Subject Formatting text,Creating Tables,List and Links Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write a short note on 
    (i) < strong >
    (ii) < em >

  • 2)

    What is the use of < mark > tag?

  • 3)

    What is thematic break?

  • 4)

    What are the types of list in HTML?

  • 5)

    How will you define numbered list?

11th Standard English Medium Computer Applications Subject Formatting text,Creating Tables,List and Links Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write an HTML code to display the following text in exactly the same way as given below.
    I am studying Computer Application.

  • 2)

    Briefly explain the attributes of < hr > tag.

  • 3)

    What are the core tags used to create table in HTML?

  • 4)

    Write an HTML code to provide hyperlink to https://www.w3schools.com

  • 5)

    Difference between < UL > and < OL > tags.

11th Standard English Medium Computer Applications Subject Formatting text,Creating Tables,List and Links Book Back 5 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write an HTML code the show the following text:

  • 2)

    Explain the attributes used with < table > tag in HTML.

  • 3)

    Explain the types of list with suitable HTML code.

  • 4)

    What is Link and explain the types of links.

  • 5)

    Write HTML code to create the following table:

    A B
    C D E G
    F

11th Standard English Medium Computer Applications Subject HTML - Adding Multimedia Elements and Forms Book Back 1 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which image format was standardized by W3C?

  • 2)

    The tag used to insert an image in HTML:

  • 3)

    Which value causes the audio play as long as the page is in view?

  • 4)

    Inline sound can be inserted using which of the following tag?

  • 5)

    The tag is used to create dropdown list box in HTML is:

11th Standard English Medium Computer Applications Subject HTML - Adding Multimedia Elements and Forms Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write down the general format of marquee.

  • 2)

    What is inline sound or movie?

  • 3)

    What is the purpose of < input > tag?

  • 4)

    Which tag is used to specify the list of items in dropdown list box?

  • 5)

    What are the major attributes are available in < textarea > tag?

11th Standard English Medium Computer Applications Subject HTML - Adding Multimedia Elements and Forms Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write a short note on familiar images format.

  • 2)

    How will you scroll the text in HTML?

  • 3)

    Explain the main attributes used with < form > tag.

  • 4)

    Explain the values of < input > tag’s type attribute.

  • 5)

    Explain the attributes of < select > and < option > tags.

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Expansion of CSS

  • 2)

    Which of the following is the page level style?

  • 3)

    CSS is also called as:

  • 4)

    The extension of CSS file is

  • 5)

    What is selector?

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    The Declaration block of CSS is surrounded by

  • 2)

    The declaration should be terminated by

  • 3)

    What is the property to set text as bold?

  • 4)

    Which of the following indicates that the text included is a comment?

  • 5)

    Which of the following ways given below is correct to write a CSS?

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is the use of < style > tag?

  • 2)

    What is CSS?

  • 3)

    Write the general format of linking CSS with HTML.

  • 4)

    What is Inline Style?

  • 5)

    Write down general format of CSS declaration.

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which provide a common scripting language to web developers to design, test and deploy Internet Application?

  • 2)

    Expand CGI

  • 3)

    JavaScript programming language is used to develop the

  • 4)

    The Dynamic Web Page help to save server's

  • 5)

    User entered data, is validated before sending it to server is called

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    How many attributes specifies for < script > tag in the scripting language?

  • 2)

    Which attribute is used to indicate the scripting language and its value should be sent to " Text/JavaScript".

  • 3)

    JavaScript ignores spaces that appear between

  • 4)

    Which is mostly used to give a warning message to users?

  • 5)

    In the below snippet, value of x is var x = 250 + 2 - 200;

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write a syntax of < script > tag.

  • 2)

    What is scope of variables and types of scope variable?

  • 3)

    Write a notes to type casting in JavaScript

  • 4)

    How many Literals in Javascript and mention its types.

  • 5)

    What is conditional operator give suitable example?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What are the advantages of programming language?

  • 2)

    Brief the basic data types in Java Scripts.

  • 3)

    Write note on string Operator.

  • 4)

    Write about tag.

  • 5)

    What are the uses of Logical Operators?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which conditional statement is used to transfer control from current statement to another statement?

  • 2)

    _________ statement can be used as alterative to if-else statement.

  • 3)

    Which statement in switch case is used to exit the statement once the appropriate choice is found?

  • 4)

    Which part of the loop statement determines the number of times, the loop will be iterated? 

  • 5)

    Which of the following is not a branching statement?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What will be the output for the following snippet:
    For (var n=0; n < 10; n+1)
    {
    if (n==3)
    {
    break;
    }
    document write (n+"< br >");
    }

  • 2)

    In which loop the condition is evaluated, before executing a statement?

  • 3)

    The _______ statement is especially useful when testing all the possible results of an expression.

  • 4)

    In the _____ loop, body of the loop always executed at least once before the condition can be executed.

  • 5)

    < script type = "text / javascript" >
    x = 6 + "3";
    document write (x);
    < script > what will be the output?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What are the different types of control statement used in JavaScript?

  • 2)

    What is meant by conditional statements in JavaScript?

  • 3)

    List out the various branching statements in JavaScript?

  • 4)

    Write the general syntax for switch statement

  • 5)

    Differentiate the break and continue statement.

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is if statement and write its types?

  • 2)

    Write the syntax for else-if statement.

  • 3)

    What is called a loop and what are its types?

  • 4)

    Differentiate between while and do while statements

  • 5)

    What message will be displayed, if the input for age is given as 20, for the following snippet?
    if (age > = 18 )
    {
    alert ("you are eligible to get Driving licence"}
    }
    else
    alert ("you are not eligible to get driving licence");
    }

11th Standard English Medium Computer Applications Subject JavaScript Functions Book Back 1 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    The parameters work as

  • 2)

    Predefined functions are also called as

  • 3)

    Larger programs are divided into smaller are called

  • 4)

    Which of the following is used to enhance reusability and program clarity.

  • 5)

    Which of the following allow the programmer to modularize a program

11th Standard English Medium Computer Applications Subject JavaScript Functions Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is a function in JavaScript?

  • 2)

    What is the use of function?

  • 3)

    Write a note on Library functions.

  • 4)

    Write a note on user defined functions.

  • 5)

    Write the syntax of functions.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which of the following deals with procedures, practices, and values?

  • 2)

    Commercial programs made available to the public illegally are known as

  • 3)

    Which one of the following are self-repeating and do not require a computer program to attach themselves?

  • 4)

    Which one of the following tracks a user visits a website?

  • 5)

    Which of the following is not a malicious program on computer systems?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    A computer network security that monitors and controls incoming and outgoing traffic is

  • 2)

    The process of converting cipher text to plain text is called

  • 3)

    e-commerce means

  • 4)

    Distributing unwanted e-mail to others is called

  • 5)

    Legal recognition for transactions are carried out by

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is harvesting?

  • 2)

    What are Warez?

  • 3)

    Write a short note on cracking.

  • 4)

    Write two types of cyber attacks.

  • 5)

    What is a Cookie?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is the role of firewalls?

  • 2)

    Write about encryption and decryption.

  • 3)

    Explain symmetric key encryption.

  • 4)

    What are the guidelines to be followed by any computer user?

  • 5)

    What are ethical issues? Name some.

11th Standard English Medium Computer Applications Subject Tamil Computing Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    List the search engines supported by Tamil language.

  • 2)

    What are the keyboard layouts used in Android?

  • 3)

    Write a short note about Tamil Programming Language.

  • 4)

    What is TSCII?

  • 5)

    Write a short note on Tamil Virtual Academy.

11th Standard English Medium Computer Applications Subject Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Name the volatile memory _____

  • 2)

    Identify the input device _____

  • 3)

    Which one of the following is used to in ATM machines

  • 4)

    Expand POST

  • 5)

    Which of the following device identifies the location when address is placed in the memory address register?

11th Standard English Medium Computer Applications Subject Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which one of the following is the main memory?

  • 2)

    Which refers to the number of bits processed by a computer's CPU?

  • 3)

    Expansion for ASCII

  • 4)

    What is the smallest size of data represented in a CD?

  • 5)

    Which of the following Operating system support Mobile Devices?

11th Standard English Medium Computer Applications Subject Book Back 2 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Distinguish between data and information

  • 2)

    What is the function of an ALU?

  • 3)

    What is the function of memory?

  • 4)

    What are the parameters which influence the characteristics of a microprocessor?

  • 5)

    What is multi-user Operating System?

11th Standard English Medium Computer Applications Subject Book Back 2 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is a computer?

  • 2)

    What are the components of a CPU?

  • 3)

    Write the functions of control unit.

  • 4)

    What is a GUI?

  • 5)

    What are the security management features available in Operating System?

11th Standard English Medium Computer Applications Subject Book Back 3 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write the applications of computer.

  • 2)

    Name any three output devices.

  • 3)

    Write short note on impact printer.

  • 4)

    Write down the interfaces and ports available in a computer.

  • 5)

    Explain and list out examples of mobile operating system.

11th Standard English Medium Computer Applications Subject Book Back 3 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is an input device? Give two examples.

  • 2)

    Write the characteristics of sixth generation.

  • 3)

    Classify the microprocessor based on the size of the data .

  • 4)

    Differentiate PROM and EPROM

  • 5)

    Explain and list out examples of mobile operating system.

11th Standard English Medium Computer Applications Subject Book Back 5 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Discuss the various generations of computers.

  • 2)

    How the read and write operations are performed by a processor? Explain.

  • 3)

    Explain the types of ROM.

  • 4)

    Explain the main purpose of an operating system

  • 5)

    Draw and compare the icon equivalence in windows and Ubuntu.

11th Standard English Medium Computer Applications Subject Book Back 5 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Explain the basic components of a computer with a neat diagram.

  • 2)

    Explain the following:
    a. Inkjet Printer
    b. Multimedia projector
    c. Bar code / QR code Reader

  • 3)

    Find 1’s Complement and 2’s Complement for the following Decimal number a) -98 b) -135

  • 4)

    Explain the characteristics of a microprocessor.

  • 5)

    Arrange the memory devices in ascending order based on the access time.

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is used to select to start with blank presentation?

  • 2)

    How many presentation types are there in Impress presentation wizard 3?

  • 3)

    How many presentation types are there in Impress presentation wizard 3

  • 4)

    How many radio buttons are these in presentation wizard 1 ?

  • 5)

    Which of the following operation can not be performed in slide pane________.

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is used to create multimedia?

  • 2)

    Which of the following option selected to display the presentation in computer monitor?

  • 3)

    The pre - packaged presentation are called_________.

  • 4)

    How many checkboxes are there in presentation wizard 1?

  • 5)

    How many parts are there in main Impress window?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Out of the following external file(s) which one(s), which help you include sound in your presentation: JPEG, WAY, GIF, BMP, MP3

  • 2)

    In which menu option is the picture sub menu option present?

  • 3)

    What does presentation software includes?

  • 4)

    How will you start open office impress.

  • 5)

    What are the three parts of the main impress window?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What do you understand by a slide?

  • 2)

    Devi has created a presentation based on "Trends of Wireless Communication", she wants to add header, footer, slide numbers in presentation. Which menu option she click on?

  • 3)

    What is presentation software?

  • 4)

    Name few presentation software.

  • 5)

    How will you create a presentation using templates?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 3 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What do you understand by animation and how does it help in enhancing a presentation?

  • 2)

    Explain the usage of Rephrase Time in options are available in presentation software.

  • 3)

    Write the steps to change the font and effects of the current design theme of a presentation

  • 4)

    Write a short note on impress.

  • 5)

    How will you create a presentation.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Networks increase_________.

  • 2)

    In which Network the coverage range is above 1000kms?

  • 3)

    Which of the following statement is true regarding WLAN?
    (i) Range upto 5 kms
    (ii) connected using Wi-Fi or Bluetooth or Radio waves
    (iii) Installation is not quick and easy
    (iv) High bandwidth due to interference

  • 4)

    How many things are needed to make communication in Internet?

  • 5)

    The parts of IP number is seperated by_________.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    In which network the coverage range is upto 5kms?

  • 2)

    The speed of PAN is up to________.

  • 3)

    A Global network is called_______.

  • 4)

    Which of the following is the most cost - effective method of communication in the world?

  • 5)

    Which become an identity and can be access by the web browser when connected to the Internet?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write any four examples of Internet.

  • 2)

    What is E-Commerce?

  • 3)

    What is Internet Telephony?

  • 4)

    What is sent in an email?

  • 5)

    Write about Trojan horse.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Expand (i) VOIP (ii) ICT

  • 2)

    What is the use of social networking?

  • 3)

    What is E-mail?

  • 4)

    What is E-governance?

  • 5)

    Name any three job searches services for online.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write a note on Intranet

  • 2)

    Write a note on spam.

  • 3)

    What is loT?

  • 4)

    Write note on e-commerce.

  • 5)

    What do you mean by e-banking?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the description of the following Generic Domain Name.
    (i) .com
    (ii) .gov
    (iii) .org
    (iv) .net
    (v) .edu

  • 2)

    What is computer worm?

  • 3)

    What is loT?

  • 4)

    What are the different methods of accessing the internet?

  • 5)

    Write about social networking.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the structure of email. 

  • 2)

    Explain the advantages of email.

  • 3)

    Explain any four familiar Internet Browser

  • 4)

    Explain the do’s and don’t of safe surfing on internet.

  • 5)

    What are the different browsers? Explain.

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following language used to create web pages?

  • 2)

    HTML language is made up of_______.

  • 3)

    How many sections are there in Every Web document?

  • 4)

    Which tag is used to specify the title of the webpage?

  • 5)

    Which tag is used to display the web content on the browser window?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following are coded by HTML commands to display the content in the browser?

  • 2)

    Which sections is used to show the title of a webpage in title bar in browser?

  • 3)

    Which section is used to display the main content on the browser window?

  • 4)

    The tag < title > should be entered with in_______.

  • 5)

    Which of the following cannot be done with web pages without a network?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the default text Editor of windows and linux.

  • 2)

    What is word processor?

  • 3)

    What is the use of attributes?

  • 4)

    What are the two sections of web document?

  • 5)

    What is the use of body section?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the browser available with windows and linux

  • 2)

    Name the web browser developed by Google and Microsoft Google - Chrome

  • 3)

    What is attribute?

  • 4)

    What is the use of head section?

  • 5)

    What are the structural tags of HTML

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 3 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain HTML document structure.

  • 2)

    Write the steps for viewing webpage in a Browser.

  • 3)

    Explain two attributes used in HTML

  • 4)

    What is use of < ! > tag?

  • 5)

    Write briefly about HTML attributes.

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the steps to create a webpage.

  • 2)

    Explain how will you edit and reload the source file in a HTML document

  • 3)

    Explain the four structural tags used in webpage.

  • 4)

    Explain Heading tag with its attributes.

  • 5)

    Explain Line Breaks and Paragraphs in HTML document.

11th Standard English Medium Computer Applications Subject Formattingtext, CreatingTables, ListandLinks Creative 1 Mark Questions with Solution Part-I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is not a container tag?

  • 2)

    Which of the following tag display the text will be old type writer Style?

  • 3)

    Which of the following statement(s) is false?
    (a) < strong > is similar to < b >
    (b) < em > is similar to < i >
    (c) < em > is similar to < u >

  • 4)

    Which of the following is an important formatting feature is used to call attention to the reader which reading webpage?

  • 5)

    The default color of the highlighted webpage text is_______.

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables, ListandLinks Creative 1 Mark Questions with Solution Part-II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    The container tags are otherwise known as________.

  • 2)

    Which of the following Statement(s) is true?
    (i) < SMALL > tag is used to define the text smallar than the current size
    (ii) < BIG > is not often used to call attention a text.

  • 3)

    Which of the following tag is used to highlight the text in HTML?

  • 4)

    Which of the following statement is true?
    (i) < sub > and < sup > tags are used to create subscript and superscript respectively
    (ii) The superscript character is always larger than the rest of the text
    (iii) The subscript character is always smaller than the rest of the text

  • 5)

    The text between < ins > and < /ins > will be shown as _______.

11th Standard English Medium Computer Applications Subject Formattingtext, CreatingTables, ListandLinks Creative 2 Mark Questions with Solution Part-I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the tags which are similar to < b > and < i >.

  • 2)

    Define Highlighting.

  • 3)

    Write the usage of the tag < s >.

  • 4)

    Write the general form of < font > with attributes.

  • 5)

    Write the structure of an anchor tag with href.

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables, ListandLinks Creative 2 Mark Questions with Solution Part-II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the tags used in text bigger and smallers than the, normal size of the text.

  • 2)

    Differentiate < del > and < ins > tag.

  • 3)

    What is the use of < center > tag?

  • 4)

    Defined nested list.

  • 5)

    Defined link.

11th Standard English Medium Computer Applications Subject Formattingtext, CreatingTables, ListandLinks Creative 3 Mark Questions with Solution Part-I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write-the usage and final output of the following tags
    (i) < strong > (ii) < em > (iii) < ins > (iv) < del >

  • 2)

    Define
    (i) cell
    (ii) Border
    (iii) column
    (iv) Table.

  • 3)

    Write note on Physical Style tags / Container tags.

  • 4)

    Write about inserting and deleting text in html document.

  • 5)

    Explain the usage of multiple fonts with face attribute.

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables, ListandLinks Creative 3 Mark Questions with Solution Part-II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write a short note on (i) Subscript (ii) Superscript.

  • 2)

    Explain the attributes used to customize the ordered list.

  • 3)

    Define (i) Ordered list (ii) Unordered list (iii) Definition list

  • 4)

    Explain Highlighting text with an example.

  • 5)

    Explain the usage of < B >,  < I >, < U >, < S > tags

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    First generation computers used ______.

  • 2)

    Name the volatile memory _____

  • 3)

    Identify the output device _____

  • 4)

    Identify the input device _____

  • 5)

    _____ Output device is used for printing building plan.

11th Standard English Medium Computer Applications Subject Formatting text, Creating Tables, List and Links Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the attributes used with < TD >,< TH > and < TR > tag in HTML.

  • 2)

    Define the following terms
    (i) link
    (ii) Hyperlink
    (iii) Internal link
    (iv) Local link
    (v) External link

  • 3)

    What is subscript and superscript?

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which one of the following is used to in ATM machines

  • 2)

    When a system restarts which type of booting is used.

  • 3)

    Expand POST

  • 4)

    Which one of the following is the main memory?

  • 5)

    Which generation of computer used IC's?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following are used to depict many complex concepts in simple way?

  • 2)

    Image format supported by most of the browsers________.

  • 3)

    GIF image format developed by________.

  • 4)

    How many number of colors maximum used by GIF?

  • 5)

    Which of the following is the most popular image format supported by all web browsers?

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is a computer?

  • 2)

    Distinguish between data and information

  • 3)

    What are the components of a CPU?

  • 4)

    What is the function of an ALU?

  • 5)

    Write the functions of control unit.

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which one is added to make attractive and communicative webpages?

  • 2)

    Which of the following image format is suitable for logos, and icons?

  • 3)

    Expansion of GIF is________.

  • 4)

    Which of the following image format suitable for photographic images?

  • 5)

    How many options are there to align the image to the base line of the text?

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write the applications of computer.

  • 2)

    What is an input device? Give two examples.

  • 3)

    Name any three output devices.

  • 4)

    Differentiate Optical and Laser mouse.

  • 5)

    Write the significant features of monitor.

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the few image editing software.

  • 2)

    Write the General format of < img > tag?

  • 3)

    List the attributes of < img > tag

  • 4)

    What is inline?

  • 5)

    What is the use of Src attribute of < embed > tag?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is SVG?

  • 2)

    Name the main attribute of < img > tag state its use.

  • 3)

    What is use of Alt attribute of < img > tag?

  • 4)

    How the video or audio content included in HTML?

  • 5)

    Differentiate < embed > and < noembed > tag.

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write a note on following attribute of < Marquee > tag?
    (i) Scroll delay
    (ii) Scroll amount
    (iii) loop

  • 2)

    What is the use of form in HTML?

  • 3)

    Write a note on method attribute of < form > tag.

  • 4)

    Answer the following: True or false.
    (i) < Text area > tag used to receive multiline text data as input
    (ii) < Input > tag is a container tag
    (iii) user can select more than one option using radio button control

  • 5)

    How will you insert an image in a HTML document?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is the use of align attribute of < img > tag? Explain its values.

  • 2)

    What is the use of form in HTML?

  • 3)

    Explain the use of < select > tag.

  • 4)

    Explain any 2 use of the < Marquee > tag.

  • 5)

    How will you insert video and sound in a webpage?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain scrolling text using < Marquee >.

  • 2)

    Explain the attributes of < input > tag.

  • 3)

    Explain How will you create drop-down list box with an example.

  • 4)

    What do you known about
    (i) Photoshop
    (ii) Picasa
    (ill) GIMP
    (iv) HTML
    (v) W3C

  • 5)

    Explain all the attributes of < IMG > tag with suitable HTML code.

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which section of HTML document used to define < style > tag?

  • 2)

    A seperate style sheet files are known as_________

  • 3)

    CSS was invented in the year__________.

  • 4)

    How many number of properties for each selector allowed in CSS declaration?

  • 5)

    Which of the following tag is used to add CSS file with HTML.

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following tag are called as "Page level styles" or "Internal Style Sheets"?

  • 2)

    That is the name of the file where all style information are stored?

  • 3)

    CSS was invented by___________.

  • 4)

    How many major partes in CSS style declaration?

  • 5)

    The < StyIe > tags are called as ____________ .

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write a < style > tag to change color, font name and size of < h3 > tag?

  • 2)

    Write the steps to create CSS style sheets.

  • 3)

    What is the use of < Link > tag? Give the details of attributes used with < Link >tag.

  • 4)

    What do you mean by Page-Level Styles or Internal Style sheets?

  • 5)

    What do you mean by Sitewide Style sheets or External Style Sheets.

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Differentiate Internal Style Sheets and External Style Sheets

  • 2)

    Write the steps to create CSS style sheets.

  • 3)

    How will you comments inside style sheet?

  • 4)

    What is restriction of internal sheet?

  • 5)

    Write about CSS Comments.

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following language provides many advantages over traditional CGI server-side scripts?

  • 2)

    The version of JavaScript introduced by Netscape and Sun Inc is?

  • 3)

    Javascript can be written using _______.

  • 4)

    Which of the following is a memory location where value can be stored in Javascript_______.

  • 5)

    How many basic data types are there in Javascript?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    JavaScript 1.0 introduced by?

  • 2)

    The value of the type attribute of < script >tag is_______.

  • 3)

    JavaScript statements are seperated using?

  • 4)

    Which of the following statement is true?
    (i) Javascript is a case sensitive language
    (ii) /* */ is treated as a single line comment in Javascript.
    (iii) Javascript can not use keywords

  • 5)

    Which of the following is not an expressions in Javascript?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Expand (i) DHTML (ii) XHTML.

  • 2)

    What does lexical structure specifies?

  • 3)

    Write the general syntax of write statement

  • 4)

    What is meant by JavaScript expression?

  • 5)

    What is the use of assignment operator?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is meant lexical structure of a programming language?

  • 2)

    Define variable? How variable declared in JavaScript?

  • 3)

    Define JavaScript literal.

  • 4)

    Write the three types of expressions in JavaScript

  • 5)

    Write the shorthand arithmetic operators supported by JavaScript.

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the syntax of confirm () dialog box.

  • 2)

    Write the rule of operands used in logical expression

  • 3)

    Write a note on important attributes of < script > tag.

  • 4)

    What are the relational or comparison operators used in JavaScript? Explain.

  • 5)

    What is conditional operator or ternary operator? Explain?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the prompt Dialog Box.

  • 2)

    Write the syntax of alert dialog box.

  • 3)

    Write a note on Relational operators.

  • 4)

    What are the rules for naming avariable?

  • 5)

    What is conditional operator or ternary operator? Explain?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the steps to follow to code Javascript language.

  • 2)

    Explain the lexical structure of a Javascript program.

  • 3)

    Write the rules of naming variables in Javascript program.

  • 4)

    Write a HTML code using relational operator to compare two data.

  • 5)

    Write a HTML code using to test logical operators.

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following statements used to perform different actions based on different conditions which are supported by JavaScript?

  • 2)

    Which of the following statement is true?
    (i) Branching do not transfer control from one statement to another
    (ii) A branch alters the execution sequence
    (iii) There are four type of control statements

  • 3)

    Which of the following statement used commonly within switch to exit if choice is found?

  • 4)

    How many types of looping statements in Javascript?

  • 5)

    Which of the following loop structure is very flexible and useful in Javascript?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following alters the execution sequence?

  • 2)

    Which of the following expression is evaluated in form statement of javascript________.

  • 3)

    Which of the following is only for true condition?

  • 4)

    Which of the following statement to specify a new condition if the first condition is false?

  • 5)

    The same portion of coole needs to be excuted many times is called________.

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the syntax of if statement?

  • 2)

    How the switch statement evaluates the case structure?

  • 3)

    Write the syntax of while loop

  • 4)

    What message will be displayed, if the input for N is 5 for the following snippet?

  • 5)

    What is the output of the following html code?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the syntax of if-else statement?

  • 2)

    Why default and break statement used in switch statement?

  • 3)

    Write the syntax of do-while loop

  • 4)

    What is branching statement?

  • 5)

    What is the output of the following html code?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the execution of while loop with an example?

  • 2)

    Explain the working of do while loop in Javascript with an example?

  • 3)

    Write a Javascript to find whether the given number is positive or negative?

  • 4)

    Write a Javascript to find whether the given number is even or odd?

  • 5)

    Explain while loop with suitable example do .... while loop.

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following are used to encapsulate code that performs a specific task?

  • 2)

    Which of the following statement is false?
    (i) JavaScript function is defined once and executed once.
    (ii) Pre-defined functions are not called library functions.
    (iii) A parametered function definition may include a list of identifiers.

  • 3)

    The punctuator used to identify the function is _______.

  • 4)

    A ____________function definition may include a list of identifiers

  • 5)

    The function body must been closed by________

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    How many types of functions in JavaScript supports?

  • 2)

    The function body enclosed with________.

  • 3)

    Which library function returns the element that has the ID attribute with the specified value_______.

  • 4)

    _______functions allow the programmer to modularize a program.

  • 5)

    The_________ function is used to check whether the given value or variable is valid number.

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 2 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What are the two types of functions supports by JavaScript?

  • 2)

    What are the rules followed while defining functions in JavaScript?

  • 3)

    What do you mean by parameterized function?

  • 4)

    What is pre-defined function?

  • 5)

    List some pre-defined functions

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the followingfunctions with an example.
    (i) touppercase ( )
    (ii) tolowercase ( )
    (iii) length()
    (iv) parselnt()
    (v) parseFloat()

  • 2)

    Write a JavaScript to find sum of two numbers using function.

  • 3)

    Write a JavaScript to find the given value is a number or not Using functions and form.

  • 4)

     Write a program in JavaScript for adding two numbers using function.

  • 5)

    Write a JavaScript to create on-line quiz.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is a cirme which involves computer and network?

  • 2)

    How many types of cyber-crimes that happen across the world?

  • 3)

    Harassing through online, the crime called ___________.

  • 4)

    Distribute unwanted email to a large number of internet users _________.

  • 5)

    Which of the following is not used to prevent unauthorized access?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which presents a major challenge to the ethical use of information technologies?

  • 2)

    Which of the following crime that tricking people into believing something is not true?

  • 3)

    Expansion of IDS is _________.

  • 4)

    Hacking can be protected by_________.

  • 5)

    How many types of encryption are there?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write few accepted standards in cyber world.

  • 2)

    What is Malware?

  • 3)

    What is spoofing?

  • 4)

    Explain the uses of encryption.

  • 5)

    Write the disadvantage of the symmetric key encryption.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What are the changes in the society due teo internet?

  • 2)

    What is the difference between ethics and computer ethics?

  • 3)

    What are Cookies?

  • 4)

    What is digital signature?

  • 5)

    Write about IT Act 2000.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is ethical issue? List the common ethical issues.

  • 2)

    What is cyber attack and cyber security?

  • 3)

    What is Pharming? Explain with suitable diagram.

  • 4)

    An illustration of the man-in-the-middle attack

  • 5)

    Explain the working of Proxy Server.

11th Standard English Medium Computer Applications Subject Number Systems Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which refers to the number of bits processed by a computer's CPU?

  • 2)

    How many bytes does 1 KiloByte contain?

  • 3)

    Expansion for ASCII

  • 4)

    2\(\wedge \)50 is referred as

  • 5)

    How many characters can be handled in Binary Coded Decimal System?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What are the guidelines of ethics?

  • 2)

    Write note on unauthorized access.

  • 3)

    What is phishing? Explain with suitable diagram.

  • 4)

    What do you mean by Man In The Middle attack or Janus attack? Illustrate in a diagram.

  • 5)

    Why web sites use cookies?

11th Standard English Medium Computer Applications Subject Number Systems Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    How many bytes does 1 KiloByte contain?

  • 2)

    For 11012 the equalent Hexadecimal equivalent is?

  • 3)

    What is the 1's complement of 00100110?

  • 4)

    Which amongst this is not an Octal number?

  • 5)

    In a computer, a data is converted into_________.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 5 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the reasons now web sites typically use cookies.

  • 2)

    Explain the function of digital signature.

  • 3)

    Explain Hacking in detail.

  • 4)

    Explain the working of Firewall server.

  • 5)

    What is digital signature? Explain function of digital signature with suitable diagram.

11th Standard English Medium Computer Applications Subject Number Systems Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is data?

  • 2)

    Write the 1's complement procedure.

  • 3)

    Convert (46)10 into Binary number

  • 4)

    We cannot find 1's complement for (28)10 State reason.

  • 5)

    List the encoding systems that represents characters in memory.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 5 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain social engineering with an example.

  • 2)

    Explain the different types of encryption.

  • 3)

    List the computer crimes and their functions.

  • 4)

    Explain Cracking in detail.

  • 5)

    Explain public key encryption.

11th Standard English Medium Computer Applications Subject Number Systems Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is radix of a number system? Give example

  • 2)

    Write note on binary number System.

  • 3)

    Convert (150)10 into Binary, then convert that Binary number to Octal.

  • 4)

    Write short note on ISCII.

  • 5)

    Add (a) -2210 + 1510 (b) 2010+2510

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is the best information technological device?

  • 2)

    In India, Which is the most widely language in Internet?

  • 3)

    Which country provides all their services through the official website in Tamil?

  • 4)

    Which of the following is not a familiar Tamil keyboard interfaces software?

  • 5)

    Which of the following Tamil keyboard layout not used by Android OS?

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    How many percentage of people using Internet is Tamil?

  • 2)

    Which of the following are portal or website of  books collection?

  • 3)

    In white OS, SeUinam Tamil keyboard layout works?

  • 4)

    The first Tamil programming language is _________.

  • 5)

    ___________is office autcmetien working exclusive for Tamil.

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is the use of e-Iibraries?

  • 2)

    What are the familier keyboard used for Tamil typing?

  • 3)

    Write a short note on "Thamizpori".

  • 4)

    Write a short note on Madurai project.

  • 5)

    Write note on search engines

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is the use of Tamil interfaces software?

  • 2)

    List some Tamil Automation softwares.

  • 3)

    Expand
    (i) TSCII
    (ii) ISCII
    (iii) ASCII

  • 4)

    Write a note on Unicode.

  • 5)

    Which search engine provide inbuilt Tamil virtal keyboard

11th Standard English Medium Computer Applications Subject Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    The first calculating device is__________.

  • 2)

    Which component used in third generation computers?

  • 3)

    The fourth generation belongs to________.

  • 4)

    Robotics develop in_____ generation.

  • 5)

    Expansion of CPU is _____

11th Standard English Medium Computer Applications Subject Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    The second generation computers belongs to period _____

  • 2)

    The Third generation computers belongs to the period _____

  • 3)

    In which generation, Microcomputer series such as IBM & APPLE was developed?

  • 4)

    Which generation gave a start to parallel computing?

  • 5)

    Expand NLP _____

11th Standard English Medium Computer Applications Subject Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the Second generation computers.

  • 2)

    Expand VLSI.

  • 3)

    Name the types of computer introduced in Fourth generation computers.

  • 4)

    What is NLP?

  • 5)

    Name the different keys available in the keyboard.

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is said to be the brain of a computer?

  • 2)

    Which of the following is not the part of a microprocessor unit?

  • 3)

    How many bits constitute a word?

  • 4)

    Which of the following device identifies the location when address is placed in the memory address register?

  • 5)

    Which of the following is a CISC processor?

11th Standard English Medium Computer Applications Subject Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the two main categories of Printer.

  • 2)

    What is Non-Impact printers?

  • 3)

    What is booting a computer?

  • 4)

    Write few fields in which computer is used.

  • 5)

    Write the limitations of impact printer.

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which is the fastest memory?

  • 2)

    How many memory locations are identified by a processor with 8 bits address bus at a time?

  • 3)

    What is the capacity of 12cm diameter DVD with single sided and single layer?

  • 4)

    What is the smallest size of data represented in a CD?

  • 5)

    Display devices are connected to the computer through __________

11th Standard English Medium Computer Applications Subject Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Define Transistor.

  • 2)

    What is Machine language?

  • 3)

    What is Robotics?

  • 4)

    Define POST.

  • 5)

    Write the advantages of fingerprint scanner.

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What are the parameters which influence the characteristics of a microprocessor?

  • 2)

    What is an instruction?

  • 3)

    What is a program counter?

  • 4)

    What is HDMI?

  • 5)

    Which source is used to erase the content of a EPROM?

11th Standard English Medium Computer Applications Subject Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is Integrated circuits?

  • 2)

    What is Nano-technology?

  • 3)

    What is use of ALU?

  • 4)

    Write a note on Touch Screen.

  • 5)

    Write a short note on XNOR gate

11th Standard English Medium Computer Applications Subject Creative 5 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Suppose a number system has been designed with radix 10 with symbols (ordered from small to large) A, B, C, D, G, H, I, L, M, N. Convert the following number to equivalent hexadecimal number; (lNDIAN)1O

  • 2)

    Explain the following terms in detail. (1) ASCII (2) BCD (3) EBCDIC

  • 3)

    Write the steps for converting Decimal to Binary numbers.

  • 4)

    Convert the Following - (3674)8 \(\rightarrow \) (?2) = (?)10

  • 5)

    Identify the number system for the following numbers.

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Classify the microprocessor based on the size of the data .

  • 2)

    Write down the classifications of microprocessors based on the instruction set.

  • 3)

    Differentiate PROM and EPROM

  • 4)

    Write down the interfaces and ports available in a computer.

  • 5)

    How will you differentiate a flash memory and an EEPROM?

11th Standard English Medium Computer Applications Subject Creative 5 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain Impact Printers with an Example.

  • 2)

    Explain booting of computer and its types.

  • 3)

    What the Sixth generation computers could be defined as the era of intelligent computers?

  • 4)

    How AND and OR can be realized using NAND and NOR gate

  • 5)

    Explain Unicode.

11th Standard English Medium Computer Applications Subject Operating Systems Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Operating system is a_____.

  • 2)

    Identify the usage of Operating Systems

  • 3)

    Which of the following is not a Function of Operating System?

  • 4)

    Which of the following OS is a Commercially licensed Operating system?

  • 5)

    Which of the following Operating system support Mobile Devices?

11th Standard English Medium Computer Applications Subject Operating Systems Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is not a Function of Operating System?

  • 2)

    File Management manages_______

  • 3)

    Interactive Operating System provides______

  • 4)

    Android is a ________

  • 5)

    Which of the following refers to Android operating system's version?

11th Standard English Medium Computer Applications Subject Operating Systems Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    List out any two uses of Operating System?

  • 2)

    What is multi-user Operating System?

  • 3)

    What is a GUI?

  • 4)

    What are the security management features available in Operating System?

  • 5)

    What are the different Operating Systems used in computer?

11th Standard English Medium Computer Applications Subject Typical Operating System(Windows & Linux) Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    From the options given below, choose the operations managed by the operating system.

  • 2)

    Which is the default folder for many Windows Applications to save your file?

  • 3)

    Under which of the following OS, the option Shift + Delete - permanently deletes a file or folder?

  • 4)

    What is the meaning of "Hibernate" in Windows XP/Windows 7?

  • 5)

    Which of the following OS is not based on Linux?

11th Standard English Medium Computer Applications Subject Typical Operating System(Windows & Linux) BookBack 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which of the following in Ubuntu OS is used to view the options for the devices installed?

  • 2)

    Identify the default email client in Ubuntu?

  • 3)

    Which is the default application for spreadsheets in Ubuntu? This is available in the software launcher?

  • 4)

    Which is the default browser for Ubuntu?

  • 5)

    Where will you select the option to log out suspend, restart, or shut down from the desktop of Ubuntu OS?

11th Standard English Medium Computer Applications Subject Typical Operating System (Windows & Linux) Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Differentiate cut and copy options.

  • 2)

    What is the use of a file extension?

  • 3)

    Differentiate Files and Folders

  • 4)

    Differentiate Save and save As option.

  • 5)

    What is Open Source?

11th Standard English Medium Computer Applications Subject Typical Operating System (Windows & Linux) Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    If you are working on multiple files at a time, sometimes the system may hang. What is the reason behind it? How can you reduce it?

  • 2)

    Are drives such as hard drive and floppy drives represented with drive letters?

  • 3)

    Write the specific use of Cortana.

  • 4)

    List out the major differences between Windows and Ubuntu OS.

  • 5)

    Differentiate Thunderbird and Firefox in Ubuntu OS.

11th Standard English Medium Computer Applications Subject Typical Operating System (Windows & Linux) Book Back 5 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Draw and compare the icon equivalence in windows and Ubuntu.

  • 2)

    Explain the versions of Windows Operating System.

  • 3)

    Complete the following matrix.

    Navigational method Located on Ideally suited for
    Start button Task bar  
      Desktop Exploring your disk drives and using system tools.
    Windows Explorer   Seeing hierarchy of all computer contents and resources in one window.
    Quick Launch    
  • 4)

    Observe the figure and mark all the window elements, Identify the version of the Windows Os.

  • 5)

    Write the procedure to create, rename, delete and save a file in Ubuntu OS. Compare it with Windows OS.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which is the opening screen of OpenOffice?

  • 2)

    Which option allows you to assign text, tables, graphics and other items to a key or key combination?

  • 3)

    Which menu contains the Numbering option?

  • 4)

    What is the shortcut key for finding and replacing text in a document?

  • 5)

    Which is displayed at the top part of the window?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is changing the default appearance of the text called?

  • 2)

    Find & Replace option is available in which menu?

  • 3)

    Which button selects all instances of the search text in the document?

  • 4)

    What is the shortcut key to go to the start of the document?

  • 5)

    What is the shortcut key for Undo?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    How do you insert pictures in to your document?

  • 2)

    What is auto text in writer?

  • 3)

    How do you merge cells in a table?

  • 4)

    What are the different packages in OpenOffice Writer?

  • 5)

    State the differences between proprietary software and open source software.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is the difference between moving and copying text?

  • 2)

    What are the different types of orientation?

  • 3)

    How do you insert rows and columns?

  • 4)

    What are the different ways to save a document?

  • 5)

    Write the steps to change the line spacing of text.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which is the first electronic Spreadsheet?

  • 2)

    Which of the following applications was the parent to Open Office Calc?

  • 3)

    Grid of cells with a programmable calculator :

  • 4)

    A column heading in Calc is represented using________.

  • 5)

    Which key is used to move the cell pointer in the forward direction within the worksheet?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    A formula in calc may begin with________.

  • 2)

    What will be the result from the following formula (Assume A1=5, B2=2)? +A1^B2

  • 3)

    What will be the result from the following expression (Assume H1=12, H2=12)? = H1< >H2

  • 4)

    Which of the following symbol is used to make a cell address as an absolute reference?

  • 5)

    Which of the following key combinations is used to increase the width of the current column?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 2 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What are the types of toolbars available in OpenOffice calc?

  • 2)

    What is a Cell pointer?

  • 3)

    Write about the text operator in OpenOffice Calc.

  • 4)

    Write the general syntax of constructing a formula in Calc.

  • 5)

    What are the keyboard shortcuts to cut, copy and paste?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 2 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Can you edit the contents of a cell? If yes, explain anyone of the method of editing the cell content.

  • 2)

    What are the options available in "Insert Cells" dialog box?

  • 3)

    Match the following.

    A B
    (a) Cut, Copy and Paste (1) Absolute Cell
    (b) Cell pointer (2) Status bar
    (c) Selection Mode (3) Standard Toolbar
    (d) $ A5 $ (4) Active cell
  • 4)

    Define the following
    (i) Text Operator
    (ii) Rows and Columns of spreadsheet.

  • 5)

    Differentiate between Copy - Paste and Cut-Paste

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Write a short note on OpenOffice Calc.

  • 2)

    Write about inserting columns and rows in Calc

  • 3)

    Differentiate Deleting data using Backspace and Delete.

  • 4)

    Write any three formatting options.

  • 5)

    In cell A1=34 A2=65 A3=89 write the formula to find the average.

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    The first calculating device is__________.

  • 2)

    Which of the following period the first generation computers belongs________.

  • 3)

    Laptops, Notebook, Tablets are belongs to _____ generation computers.

  • 4)

    The fifth generation computers belongs to _____

  • 5)

    ENAIC was invented by _____

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    The Third generation computers belongs to the period _____

  • 2)

    Which of the following is a Third generation computer?

  • 3)

    Super Conductors are used in _____ generation computers.

  • 4)

    The present computers are belongs to _____ generation.

  • 5)

    Which of the following is the heart of the computer?

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the Second generation computers.

  • 2)

    Expand VLSI.

  • 3)

    Name the types of computer introduced in Fourth generation computers.

  • 4)

    What is NLP?

  • 5)

    What is use of scanner?

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the Third generation computers.

  • 2)

    Write the developments of Sixth generation computers.

  • 3)

    What is CPU?

  • 4)

    Write any two pointing device.

  • 5)

    How the date travel through control bus?

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Define Transistor.

  • 2)

    What is Machine language?

  • 3)

    What is Robotics?

  • 4)

    Define POST.

  • 5)

    Write the advantages of fingerprint scanner.

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Define Punched cards.

  • 2)

    What is Integrated circuits?

  • 3)

    What is Nano-technology?

  • 4)

    What is use of ALU?

  • 5)

    Write a note on Touch Screen.

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain any two input and output devices.

  • 2)

    Explain in detail the different types of Mouse.

  • 3)

    Explain Impact Printers with an Example.

  • 4)

    Explain booting of computer and its types.

  • 5)

    What the Sixth generation computers could be defined as the era of intelligent computers?

11th Standard English Medium Computer Applications Subject Number Systems Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which gate is called as the logical inverter?

  • 2)

    NOR is a combination of?

  • 3)

    The singular form of data is...........

  • 4)

    "75% of Men likes cricket" is............

  • 5)

    In a computer, a data is converted into_________.

11th Standard English Medium Computer Applications Subject Number Systems Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    NAND is called as ......Gate

  • 2)

    Data means..............

  • 3)

    How the message represented in computers?

  • 4)

    Which establishment done convention using groups of 8 bits as a basic unit of storage medium?

  • 5)

    Which is considered as the basic unit of measuring the memory size in the computer?

11th Standard English Medium Computer Applications Subject Number Systems Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write a short note on NAND Gate

  • 2)

    Write the associative laws?

  • 3)

    List the types of information stored in a computer.

  • 4)

    Name the four types of Number system.

  • 5)

    How the given messages are represented in computers?

11th Standard English Medium Computer Applications Subject Number Systems Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Draw the truth table for XOR gate

  • 2)

    What are derived gates?

  • 3)

    Name the Number system is used in general.

  • 4)

    Write the radix of Decimal, Binary, Octal, Hexadecimal Number systems.

  • 5)

    What is information?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which is used to move quickly from one slide to another?

  • 2)

    Which is the shortcut key to view the slide show?

  • 3)

    In Impress, which views shows thumbnail versions of all your slides arranged in horizontal rows.

  • 4)

    Identify the default view in Impress.

  • 5)

    Which menu contains the Slide Transition option?

11th Standard English Medium Computer Applications Subject Number Systems Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the truth table of fundamental gates

  • 2)

    Reason out why the NAND an NOR are called universal gates?

  • 3)

    Write the De Morgan's law.

  • 4)

    (101010)2 \(\rightarrow \) (?10\(\rightarrow \) (?10)

  • 5)

    Describe the parameters are used to determine the value of each digit in a number.

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    In Impress, which views shows thumbnail versions of all your slides arranged in horizontal rows.

  • 2)

    Identify the extension of the Impress presentation.

  • 3)

    In presentation tools, the entry effect as one slide replaces another slide in a slideshow. Identity the option that suits after reading the statement.

  • 4)

    Vanya has made a presentation on "Global Warming". She wants to progress her slide show automatically while speaks on the topic in the class. Which features of Impress would she use?

  • 5)

    How many ways to create a new presentation in OpenOffice impress________.

11th Standard English Medium Computer Applications Subject Number Systems Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is MSB, LSB and Binary point? Give example.

  • 2)

    Write the three common ways of representing a signed binary number?

  • 3)

    Write the steps to find 2's complement

  • 4)

    What is use of BCD?

  • 5)

    What negative value does 1001 - 1011 represent

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 2 Mark Questions with Solutions updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is the difference between a slide and a slide show?

  • 2)

    How many in-built slide layouts does impress consist of?

  • 3)

    What do you understand by a presentation?

  • 4)

    Define a template in Impress.

  • 5)

    What do you understand by the slide layout?

11th Standard English Medium Computer Applications Subject Number Systems Creative 5 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    How AND and OR can be realized using NAND and NOR gate

  • 2)

    Explain Unicode.

  • 3)

    What is number system? Describe different number systems in detail.

  • 4)

    Explain the following terms in detail. (1) ISCII (2) TSCII

  • 5)

    Convert the Following - (101.10)16 \(\rightarrow \)  (?2) = (?)10

11th Standard English Medium Computer Applications Subject Number Systems Creative 5 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the Derived gates with expression and truth table.

  • 2)

    Suppose a number system has been designed with radix 10 with symbols (ordered from small to large) A, B, C, D, G, H, I, L, M, N. Convert the following number to equivalent hexadecimal number; (lNDIAN)1O

  • 3)

    Explain the following terms in detail. (1) ASCII (2) BCD (3) EBCDIC

  • 4)

    Convert the following Octal numbers into Binary numbers. -  145

  • 5)

    Convert the following Octal numbers into Binary numbers. - 62478

11th Standard English Medium Computer Applications Subject Computer Organization Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following deals with the hardware components of a computer system?

  • 2)

    Which of the following performs all tasks in the computer?

  • 3)

    Which of the following process computer instructions?

  • 4)

    Which holds the instruction and data for the execution of the processor?

  • 5)

    How many characteristics the microprocessor depends on?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    How many types of views are provided by Impress to its users?

  • 2)

    Who uses the presentation software and why

  • 3)

    Define the Slide Sorter view and its significance.

  • 4)

    What is a Normal view? Explain.

  • 5)

    How are transition effects helpful in creating an effective presentation in Impress?

11th Standard English Medium Computer Applications Subject Computer Organization Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following is not included in computer organization?

  • 2)

    Which of the following involved in designing a computer?

  • 3)

    Which of the following is not the characteristics of Microprocessor?

  • 4)

    The present microprocessor use................ bit architecture.

  • 5)

    Which of the following is not an example of CISC processor?

11th Standard English Medium Computer Applications Subject Computer Organization Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What are the collections of System Bus?

  • 2)

    Name the measurement of clock speed of the computer.

  • 3)

    What is word size?

  • 4)

    What is Bus?

  • 5)

    Define Decoder. 

11th Standard English Medium Computer Applications Subject Computer Organization Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Draw the block diagram of a microprocessor based system.

  • 2)

    What is instruction set?

  • 3)

    Name the different types of CPU Register.

  • 4)

    What is the use of MDR?

  • 5)

    What is the use of address bus?

11th Standard English Medium Computer Applications Subject Computer Organization Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is microprocessor? 

  • 2)

    What is Clock speed?

  • 3)

    What does word size determines? 

  • 4)

    Write a note on RISC processor.

  • 5)

    What are the methods used to access the memo

11th Standard English Medium Computer Applications Subject Computer Organization Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Draw a diagram of interconnecting the microprocessor with other devices of the computer system.

  • 2)

    List out the operation carried out by and Instruction set.

  • 3)

    What is the use of System Bus?

  • 4)

    Write a note on else processor.

  • 5)

    Differentiate RAM and ROM.

11th Standard English Medium Computer Applications Subject Operating Systems Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which one of the following is not a function of an operating system?

  • 2)

    Which of the following is not a Multiuser Operating system?

  • 3)

    Processing takes place in parallel is called _______operating system.

  • 4)

    In which operating system, given task done within a fixed timeline?

  • 5)

    Which memory management technique does not provide the program with a "linear and contiguous address space"?

11th Standard English Medium Computer Applications Subject Operating Systems Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which is used to perform any computer operation?

  • 2)

    Multiprocessor operating system is also called _____processing.

  • 3)

    Unix, Linux and windows are the example of_______operating system.

  • 4)

    Which operating system provides GUI?

  • 5)

    Interactive operating system is a____

11th Standard English Medium Computer Applications Subject Operating Systems Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Mention few criteria to be considered by Software company to do the Open source software?

  • 2)

    What is shareware?

  • 3)

    Name any three Utility software.

  • 4)

    What does function of Operating System includes?

  • 5)

    What is MS-DOS?

11th Standard English Medium Computer Applications Subject Operating Systems Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is freeware?

  • 2)

    What is proprietary software or close source software?

  • 3)

    What is an Operating System?

  • 4)

    Name the operating system used in pes and Mobile devices.

  • 5)

    Why GUI is used in Windows?

11th Standard English Medium Computer Applications Subject Operating Systems Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Differentiate Internet and Intranet.

  • 2)

    Write the types of Operating System?

  • 3)

    Identify the type of Operating system for the following.
    (a) It is a multi-tasking and multiuser OS.
    (b) MS-DOS is an example.
    (c) It used to share data and files around the world.

  • 4)

    What is the function of file management?

  • 5)

    Write the classification of OS according to availability.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is the expansion of WLAN?

  • 2)

    Range of Campus Network is

  • 3)

    Each computer on net is called

  • 4)

    The internet is governed by

  • 5)

    Expansion of W3C

11th Standard English Medium Computer Applications Subject Operating Systems Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the usage of operating system.

  • 2)

    Identity the type of operating system for the following Statement.
    (a) It allows same applications to be accessed by multiple user.
    (b) It is used to access shared data and files that reside in any machine around the world.
    (c) It allows only a single user to perform a task at a time.

  • 3)

    Explain Time sharing scheduling or priority scheduling.

  • 4)

    Write a note of RTOS or Real time OS?

  • 5)

    Write a note on BOSS.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Hotspot uses which type of network services?

  • 2)

    USB WiFi adapters are often called as

  • 3)

    Looking for information on the internet is called

  • 4)

    Safari web browser was developed by

  • 5)

    How many types of websites are available?

11th Standard English Medium Computer Applications Subject Operating Systems Creative 5 Mark Questions with Solution updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain memory management techniques.

  • 2)

    Explain File Management.

  • 3)

    Explain the following in detail.
    (a) FIFO (b) SJF (c) Round Robin

  • 4)

    Explain the classification of proprietary licensed OS.

  • 5)

    Explain the classification of Opensource OS

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 2 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    List any four types of available networks?

  • 2)

    Name the two important protocols for internet?

  • 3)

    What is a network?

  • 4)

    What is the role of ICANN?

  • 5)

    What is a search engine?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Multiple applications execute simultaneously in windows is know as_______.

  • 2)

    Which of the following is not an access applications?

  • 3)

    Which key display the Windows desktop?

  • 4)

    The graphical representation of Windows elements are called ______

  • 5)

    Which wildcard character used to substitute for a single character in a file name?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 2 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    What is a browser?

  • 2)

    What is a website?

  • 3)

    What is CC and BCC in an email?

  • 4)

    What is a Dynamic web page?

  • 5)

    What are the benefits of e-governance?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following input devices used in Windows OS?

  • 2)

    Which button is used to get the Windows desktop?

  • 3)

    A rectangular area in an application is called ____

  • 4)

    Which level in the Multilevel directory system is root directory?

  • 5)

    Which command is used to cut file or folder?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 3 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Differentiate PAN and CAN network

  • 2)

    What is TCP/IP ?

  • 3)

    Write a note on Hotspot internet service.

  • 4)

    Differentiate Data Card and Dongles.

  • 5)

    Write a note on two access methods of connecting to internet.

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name any four most popular Linux distributors.

  • 2)

    Name the Linux server distributions are associated with price.

  • 3)

    Name any four icons in the Ubuntu OS desktop?

  • 4)

    What is Launcher?

  • 5)

    What is the use of VBox in Ubuntu OS?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 3 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Differentiate browser and a search engine with suitable examples.

  • 2)

    Differentiate Website and Webpage.

  • 3)

    What is the difference between Static and dynamic web page.

  • 4)

    Write a note on W3C?

  • 5)

    What are Advantages of email?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Name the Linux free server distributions.

  • 2)

    In what way Ubuntu and other OS are similar?

  • 3)

    What is Ambiance in Ubuntu OS?

  • 4)

    Name the icons which is equivalent to MS-office applications.

  • 5)

    What is Trash in Ubuntu OS?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 5 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Compare the different geographical types of Network

  • 2)

    Explain any five types of internet services.

  • 3)

    Explain any five internet applications with suitable examples.

  • 4)

    Write a note on any five Internet browsers other than that given in the book.an

  • 5)

    Classify and explain any five e-commerce parties with suitable examples.

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is OS?

  • 2)

    Write a note on desktop.

  • 3)

    Write a note on window.

  • 4)

    How will you start and close a program in windows?

  • 5)

    How will you delete files and folders using file menu?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 1 Mark Questions with Solution Part - I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    HTML is acronym for

  • 2)

    The coded HTML keywords that indicates how web browser should format and display the content is called_________.

  • 3)

    Which of the following is a special word used inside a tag to specify additional information to the tag?

  • 4)

    HTML tags should be specified within:

  • 5)

    An HTML document is bounded within a pair of ________ tags

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Differentiate between Windows 7 and Windows 8.

  • 2)

    Write the graphical representation of disk drive icons.

  • 3)

    What is the difference between the application window and the document window?

  • 4)

    What is use of windows elements corners and borders?

  • 5)

    How will you delete files and folders?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 1 Mark Questions with Solution Part - II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which of the following symbol is used to prefix with hexadecimal value representing colour in HTML?

  • 2)

    Which of the following attribute is used to change text colour within body tag?

  • 3)

    Within body section, which of the following attribute is used to set top margin?

  • 4)

    How many levels of heading tags are available in HTML?

  • 5)

    The tag used to insert a line break:

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 5 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What are the functions of Windows Operating system.

  • 2)

    Explain the different types of icons of windows desktop

  • 3)

    Explain different ways of creating a new folder.

  • 4)

    Explain the different methods of renaming files and folders.

  • 5)

    Explain how will you copy files and folders in windows.

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 2 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Sandhiya is creating a webpage. She is entering HTML code on her computer. In between, she keeps pressing “Refresh” / “Reload” button on her browser. What is the purpose?

  • 2)

    Explain with the help of an example the difference between container and empty elements of HTML.

  • 3)

    What is the wrong in the following coding?
    < html >
    < my web page >
    < title > Welcome to my web page
    < /head >
    < /title >

  • 4)

    How do you define comments in HTML?

  • 5)

    How do you include an image as your web page background?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 5 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the action and reaction of using mouse.

  • 2)

    Explain the elements of Windows.

  • 3)

    Explain the different ways of finding a file or Folder.

  • 4)

    Explain the different methods of moving files and folders in windows.

  • 5)

    Explain the methods followed while copying files and folders to removable disk.

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 3 Mark Questions with Solution updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Explain the attributes available with < body > tag.

  • 2)

    What are the attributes available in < html >tags?

  • 3)

    How do you view the source file?

  • 4)

    How do you save a file as HTML file?

  • 5)

    What are the HTMLwriting tools?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    ________ menu contains the Numbering option.

  • 2)

    Which of the following is a word processing software?

  • 3)

    Which of the following word processor is not exclusively for Tamil language?

  • 4)

    The shortcut key used to open a new text document is________.

  • 5)

    Which of the following content of openoffice window display the number of pages, current page number etc?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    The openoffice suite developed by_________.

  • 2)

    The opening screen of the openoffice is called_______.

  • 3)

    Which key used to move to the End of line?

  • 4)

    Which key is used to more the insertion point to one cell left?

  • 5)

    The text in a document can be changed to different cases uses the command_____.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is the use of Word Art in writer?

  • 2)

    What is Openoffice?

  • 3)

    Name the proprietary source word processing software along with developer?

  • 4)

    Name the word processors exclusively for Tamil language?

  • 5)

    What is the use of Auto format option?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is word processing?

  • 2)

    Mention any four Open office software package?

  • 3)

    Name the open source word processing software along with developer?

  • 4)

    How will you open a text document in Openoffice writer?

  • 5)

    What is ruler?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is OS?

  • 2)

    Write a note on desktop.

  • 3)

    Write a note on window.

  • 4)

    Write a note on Windows scroll bars.

  • 5)

    How will you start and close a program in windows?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Differentiate between Windows 7 and Windows 8.

  • 2)

    Write the graphical representation of disk drive icons.

  • 3)

    What is the difference between the application window and the document window?

  • 4)

    What is use of windows elements corners and borders?

  • 5)

    How will you delete files and folders?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 5 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the important features of Openoffice Writer.

  • 2)

    Explain the cursor movement keys used in Openoffice Writer document.

  • 3)

    Explain how move and copy the text in the document.

  • 4)

    Explain the types of indenting the text.

  • 5)

    Explain the steps to find and replace the text in writer.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 5 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain any five menus in the Openoffice Writer Menu bar.

  • 2)

    Explain the steps followed to save the document.

  • 3)

    Explain the four types of paragraph alignment

  • 4)

    Explain how will you create and remove bullets and numbering in writer.

  • 5)

    How will you check the spelling mistakes after the document typed.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 1 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which spread sheet software implement GUI?

  • 2)

    Lotus 1-2-3 introduced in the year_______.

  • 3)

    In which toolbar the function wizard icon is available?

  • 4)

    Spreadsheet window has ---------- sets of scroll bars

  • 5)

    How many rows are there in Openoffice calc version 4.1.4?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 1 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Which of the following shows the current cell address?

  • 2)

    How many columns are there in Openoffice calc version 4.1.4?

  • 3)

    Which of the following selection mode(s) are available to select the cells of a worksheet?

  • 4)

    The default zoon scale in_______.

  • 5)

    Which operator in Open office calc gives exponent value?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 2 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write few spreadsheet software package.

  • 2)

    Define worksheet.

  • 3)

    Define cell printer

  • 4)

    How will you select multiple sheets in a worksheet?

  • 5)

    Write the steps that appears in a chart wizard in Calc?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 2 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write few spreadsheet software package.

  • 2)

    Define worksheet.

  • 3)

    Define cell

  • 4)

    Define cell printer

  • 5)

    How will you select multiple sheets in a worksheet?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 3 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write the elements of formula bar and their uses.

  • 2)

    Write the classification of data types in Openoffice calc.

  • 3)

    What are relational operators? Give on example.

  • 4)

    Write the steps to construct a formula in a worksheet?

  • 5)

    Write the steps to Copy a formula from one cell to multiple cells.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 3 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    What is the use of tab key, Shift tab key and Enter key in a worksheet?

  • 2)

    What are arithmetic operators? Give one example.

  • 3)

    Write the three types of reference Operators?

  • 4)

    Write the steps to save a worksheet.

  • 5)

    How the functions are categorized in Openoffice Calc?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 5 Mark Questions with Solution Part - I updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Write down the parts of the OpenOffice Calc window.

  • 2)

    Explain the parts of OpenOffice Calc Status bar.

  • 3)

    Explain how will you cut, copy and Paste data in a worksheet.

  • 4)

    Explain how will you insert a function using Direct Insert method.

  • 5)

    Write the steps to do multiple sorting data.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 5 Mark Questions with Solution Part - II updated Creative Questions - by Question Bank Software View & Read

  • 1)

    Explain the three types of default toolbars in OpenOffice Calc.

  • 2)

    Explain Reference operator with an example.

  • 3)

    Explain how will you generate whole number series.

  • 4)

    Explain how will you insert a function wizard.

  • 5)

    Write the steps to apply standard filter?

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables,List and Links BookBack 1 Mark Questions with Solution Part-I updated Book back Questions - by Question Bank Software View & Read

  • 1)

    Which feature is used to call attention to the reader?

  • 2)

    The tags < sub > and < sup > are used for:

  • 3)

    A named set of certain style of character and number is:

  • 4)

    Match the following

    (a) tfoot  (1) Order list
    (b) start  (2) Hyperlink
    (c) href  (3) Highlight
    (d) mark (4) Table
  • 5)

    Definition list has how many parts?

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables,List andLinks BookBack 1 Mark Questions with Solution Part-II updated Book back Questions - by Question Bank Software View & Read

  • 1)

    A list block can be defined inside another list is:

  • 2)

    Read the following statement and choose the correct statement(s):
    (I) Link in HTML is used to create hyperlinks to web content.
    (II) HREF is abbreviated as Hypertext Markup File

  • 3)

    To create internal link, which of the following attribute should be used?

  • 4)

    Which of the following tags are called as physical style tags?

  • 5)

    Pick odd one from the list

11th Standard English Medium Computer Applications Subject Creative 5 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Explain Impact Printers with an Example.

  • 2)

    Explain booting of computer and its types.

  • 3)

    What the Sixth generation computers could be defined as the era of intelligent computers?

  • 4)

    How AND and OR can be realized using NAND and NOR gate

  • 5)

    Explain Unicode.

11th Standard English Medium Computer Applications Subject Creative 5 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Suppose a number system has been designed with radix 10 with symbols (ordered from small to large) A, B, C, D, G, H, I, L, M, N. Convert the following number to equivalent hexadecimal number; (lNDIAN)1O

  • 2)

    Explain the following terms in detail. (1) ASCII (2) BCD (3) EBCDIC

  • 3)

    Write the steps for converting Decimal to Binary numbers.

  • 4)

    Convert the Following - (3674)8 \(\rightarrow \) (?2) = (?)10

  • 5)

    Identify the number system for the following numbers.

11th Standard English Medium Computer Applications Subject Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is Integrated circuits?

  • 2)

    What is Nano-technology?

  • 3)

    What is use of ALU?

  • 4)

    Write a note on Touch Screen.

  • 5)

    Write a short note on XNOR gate

11th Standard English Medium Computer Applications Subject Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Define Transistor.

  • 2)

    What is Machine language?

  • 3)

    What is Robotics?

  • 4)

    Define POST.

  • 5)

    Write the advantages of fingerprint scanner.

11th Standard English Medium Computer Applications Subject Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Write the two main categories of Printer.

  • 2)

    What is Non-Impact printers?

  • 3)

    What is booting a computer?

  • 4)

    Write few fields in which computer is used.

  • 5)

    Write the limitations of impact printer.

11th Standard English Medium Computer Applications Subject Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Name the Second generation computers.

  • 2)

    Expand VLSI.

  • 3)

    Name the types of computer introduced in Fourth generation computers.

  • 4)

    What is NLP?

  • 5)

    Name the different keys available in the keyboard.

11th Standard English Medium Computer Applications Subject Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    The second generation computers belongs to period _____

  • 2)

    The Third generation computers belongs to the period _____

  • 3)

    In which generation, Microcomputer series such as IBM & APPLE was developed?

  • 4)

    Which generation gave a start to parallel computing?

  • 5)

    Expand NLP _____

11th Standard English Medium Computer Applications Subject Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    The first calculating device is__________.

  • 2)

    Which component used in third generation computers?

  • 3)

    The fourth generation belongs to________.

  • 4)

    Robotics develop in_____ generation.

  • 5)

    Expansion of CPU is _____

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is the use of Tamil interfaces software?

  • 2)

    List some Tamil Automation softwares.

  • 3)

    Expand
    (i) TSCII
    (ii) ISCII
    (iii) ASCII

  • 4)

    Write a note on Unicode.

  • 5)

    Which search engine provide inbuilt Tamil virtal keyboard

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What is the use of e-Iibraries?

  • 2)

    What are the familier keyboard used for Tamil typing?

  • 3)

    Write a short note on "Thamizpori".

  • 4)

    Write a short note on Madurai project.

  • 5)

    Write note on search engines

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    How many percentage of people using Internet is Tamil?

  • 2)

    Which of the following are portal or website of  books collection?

  • 3)

    In white OS, SeUinam Tamil keyboard layout works?

  • 4)

    The first Tamil programming language is _________.

  • 5)

    ___________is office autcmetien working exclusive for Tamil.

11th Standard English Medium Computer Applications Subject Tamil Computing Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following is the best information technological device?

  • 2)

    In India, Which is the most widely language in Internet?

  • 3)

    Which country provides all their services through the official website in Tamil?

  • 4)

    Which of the following is not a familiar Tamil keyboard interfaces software?

  • 5)

    Which of the following Tamil keyboard layout not used by Android OS?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 5 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Explain social engineering with an example.

  • 2)

    Explain the different types of encryption.

  • 3)

    List the computer crimes and their functions.

  • 4)

    Explain Cracking in detail.

  • 5)

    Explain public key encryption.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 5 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write the reasons now web sites typically use cookies.

  • 2)

    Explain the function of digital signature.

  • 3)

    Explain Hacking in detail.

  • 4)

    Explain the working of Firewall server.

  • 5)

    What is digital signature? Explain function of digital signature with suitable diagram.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What are the guidelines of ethics?

  • 2)

    Write note on unauthorized access.

  • 3)

    What is phishing? Explain with suitable diagram.

  • 4)

    What do you mean by Man In The Middle attack or Janus attack? Illustrate in a diagram.

  • 5)

    Why web sites use cookies?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What is ethical issue? List the common ethical issues.

  • 2)

    What is cyber attack and cyber security?

  • 3)

    What is Pharming? Explain with suitable diagram.

  • 4)

    An illustration of the man-in-the-middle attack

  • 5)

    Explain the working of Proxy Server.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What are the changes in the society due teo internet?

  • 2)

    What is the difference between ethics and computer ethics?

  • 3)

    What are Cookies?

  • 4)

    What is digital signature?

  • 5)

    Write about IT Act 2000.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write few accepted standards in cyber world.

  • 2)

    What is Malware?

  • 3)

    What is spoofing?

  • 4)

    Explain the uses of encryption.

  • 5)

    Write the disadvantage of the symmetric key encryption.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which presents a major challenge to the ethical use of information technologies?

  • 2)

    Which of the following crime that tricking people into believing something is not true?

  • 3)

    Expansion of IDS is _________.

  • 4)

    Hacking can be protected by_________.

  • 5)

    How many types of encryption are there?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following is a cirme which involves computer and network?

  • 2)

    How many types of cyber-crimes that happen across the world?

  • 3)

    Harassing through online, the crime called ___________.

  • 4)

    Distribute unwanted email to a large number of internet users _________.

  • 5)

    Which of the following is not used to prevent unauthorized access?

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain the followingfunctions with an example.
    (i) touppercase ( )
    (ii) tolowercase ( )
    (iii) length()
    (iv) parselnt()
    (v) parseFloat()

  • 2)

    Write a JavaScript to find sum of two numbers using function.

  • 3)

    Write a JavaScript to find the given value is a number or not Using functions and form.

  • 4)

     Write a program in JavaScript for adding two numbers using function.

  • 5)

    Write a JavaScript to create on-line quiz.

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What are the two types of functions supports by JavaScript?

  • 2)

    What are the rules followed while defining functions in JavaScript?

  • 3)

    What do you mean by parameterized function?

  • 4)

    What is pre-defined function?

  • 5)

    List some pre-defined functions

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    How many types of functions in JavaScript supports?

  • 2)

    The function body enclosed with________.

  • 3)

    Which library function returns the element that has the ID attribute with the specified value_______.

  • 4)

    _______functions allow the programmer to modularize a program.

  • 5)

    The_________ function is used to check whether the given value or variable is valid number.

11th Standard English Medium Computer Applications Subject JavaScript Functions Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following are used to encapsulate code that performs a specific task?

  • 2)

    Which of the following statement is false?
    (i) JavaScript function is defined once and executed once.
    (ii) Pre-defined functions are not called library functions.
    (iii) A parametered function definition may include a list of identifiers.

  • 3)

    The punctuator used to identify the function is _______.

  • 4)

    A ____________function definition may include a list of identifiers

  • 5)

    The function body must been closed by________

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain the execution of while loop with an example?

  • 2)

    Explain the working of do while loop in Javascript with an example?

  • 3)

    Write a Javascript to find whether the given number is positive or negative?

  • 4)

    Write a Javascript to find whether the given number is even or odd?

  • 5)

    Explain while loop with suitable example do .... while loop.

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Write the syntax of if-else statement?

  • 2)

    Why default and break statement used in switch statement?

  • 3)

    Write the syntax of do-while loop

  • 4)

    What is branching statement?

  • 5)

    What is the output of the following html code?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write the syntax of if statement?

  • 2)

    How the switch statement evaluates the case structure?

  • 3)

    Write the syntax of while loop

  • 4)

    What message will be displayed, if the input for N is 5 for the following snippet?

  • 5)

    What is the output of the following html code?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following alters the execution sequence?

  • 2)

    Which of the following expression is evaluated in form statement of javascript________.

  • 3)

    Which of the following is only for true condition?

  • 4)

    Which of the following statement to specify a new condition if the first condition is false?

  • 5)

    The same portion of coole needs to be excuted many times is called________.

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following statements used to perform different actions based on different conditions which are supported by JavaScript?

  • 2)

    Which of the following statement is true?
    (i) Branching do not transfer control from one statement to another
    (ii) A branch alters the execution sequence
    (iii) There are four type of control statements

  • 3)

    Which of the following statement used commonly within switch to exit if choice is found?

  • 4)

    How many types of looping statements in Javascript?

  • 5)

    Which of the following loop structure is very flexible and useful in Javascript?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain the steps to follow to code Javascript language.

  • 2)

    Explain the lexical structure of a Javascript program.

  • 3)

    Write the rules of naming variables in Javascript program.

  • 4)

    Write a HTML code using relational operator to compare two data.

  • 5)

    Write a HTML code using to test logical operators.

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Explain the prompt Dialog Box.

  • 2)

    Write the syntax of alert dialog box.

  • 3)

    Write a note on Relational operators.

  • 4)

    What are the rules for naming avariable?

  • 5)

    What is conditional operator or ternary operator? Explain?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write the syntax of confirm () dialog box.

  • 2)

    Write the rule of operands used in logical expression

  • 3)

    Write a note on important attributes of < script > tag.

  • 4)

    What are the relational or comparison operators used in JavaScript? Explain.

  • 5)

    What is conditional operator or ternary operator? Explain?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is meant lexical structure of a programming language?

  • 2)

    Define variable? How variable declared in JavaScript?

  • 3)

    Define JavaScript literal.

  • 4)

    Write the three types of expressions in JavaScript

  • 5)

    Write the shorthand arithmetic operators supported by JavaScript.

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Expand (i) DHTML (ii) XHTML.

  • 2)

    What does lexical structure specifies?

  • 3)

    Write the general syntax of write statement

  • 4)

    What is meant by JavaScript expression?

  • 5)

    What is the use of assignment operator?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    JavaScript 1.0 introduced by?

  • 2)

    The value of the type attribute of < script >tag is_______.

  • 3)

    JavaScript statements are seperated using?

  • 4)

    Which of the following statement is true?
    (i) Javascript is a case sensitive language
    (ii) /* */ is treated as a single line comment in Javascript.
    (iii) Javascript can not use keywords

  • 5)

    Which of the following is not an expressions in Javascript?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following language provides many advantages over traditional CGI server-side scripts?

  • 2)

    The version of JavaScript introduced by Netscape and Sun Inc is?

  • 3)

    Javascript can be written using _______.

  • 4)

    Which of the following is a memory location where value can be stored in Javascript_______.

  • 5)

    How many basic data types are there in Javascript?

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Differentiate Internal Style Sheets and External Style Sheets

  • 2)

    Write the steps to create CSS style sheets.

  • 3)

    How will you comments inside style sheet?

  • 4)

    What is restriction of internal sheet?

  • 5)

    Write about CSS Comments.

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write a < style > tag to change color, font name and size of < h3 > tag?

  • 2)

    Write the steps to create CSS style sheets.

  • 3)

    What is the use of < Link > tag? Give the details of attributes used with < Link >tag.

  • 4)

    What do you mean by Page-Level Styles or Internal Style sheets?

  • 5)

    What do you mean by Sitewide Style sheets or External Style Sheets.

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following tag are called as "Page level styles" or "Internal Style Sheets"?

  • 2)

    That is the name of the file where all style information are stored?

  • 3)

    CSS was invented by___________.

  • 4)

    How many major partes in CSS style declaration?

  • 5)

    The < StyIe > tags are called as ____________ .

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which section of HTML document used to define < style > tag?

  • 2)

    A seperate style sheet files are known as_________

  • 3)

    CSS was invented in the year__________.

  • 4)

    How many number of properties for each selector allowed in CSS declaration?

  • 5)

    Which of the following tag is used to add CSS file with HTML.

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain scrolling text using < Marquee >.

  • 2)

    Explain the attributes of < input > tag.

  • 3)

    Explain How will you create drop-down list box with an example.

  • 4)

    What do you known about
    (i) Photoshop
    (ii) Picasa
    (ill) GIMP
    (iv) HTML
    (v) W3C

  • 5)

    Explain all the attributes of < IMG > tag with suitable HTML code.

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is the use of align attribute of < img > tag? Explain its values.

  • 2)

    What is the use of form in HTML?

  • 3)

    Explain the use of < select > tag.

  • 4)

    Explain any 2 use of the < Marquee > tag.

  • 5)

    How will you insert video and sound in a webpage?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write a note on following attribute of < Marquee > tag?
    (i) Scroll delay
    (ii) Scroll amount
    (iii) loop

  • 2)

    What is the use of form in HTML?

  • 3)

    Write a note on method attribute of < form > tag.

  • 4)

    Answer the following: True or false.
    (i) < Text area > tag used to receive multiline text data as input
    (ii) < Input > tag is a container tag
    (iii) user can select more than one option using radio button control

  • 5)

    How will you insert an image in a HTML document?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is SVG?

  • 2)

    Name the main attribute of < img > tag state its use.

  • 3)

    What is use of Alt attribute of < img > tag?

  • 4)

    How the video or audio content included in HTML?

  • 5)

    Differentiate < embed > and < noembed > tag.

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Name the few image editing software.

  • 2)

    Write the General format of < img > tag?

  • 3)

    List the attributes of < img > tag

  • 4)

    What is inline?

  • 5)

    What is the use of Src attribute of < embed > tag?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which one is added to make attractive and communicative webpages?

  • 2)

    Which of the following image format is suitable for logos, and icons?

  • 3)

    Expansion of GIF is________.

  • 4)

    Which of the following image format suitable for photographic images?

  • 5)

    How many options are there to align the image to the base line of the text?

11th Standard English Medium Computer Applications Subject HTML Adding Multimedia Elements and Forms Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following are used to depict many complex concepts in simple way?

  • 2)

    Image format supported by most of the browsers________.

  • 3)

    GIF image format developed by________.

  • 4)

    How many number of colors maximum used by GIF?

  • 5)

    Which of the following is the most popular image format supported by all web browsers?

11th Standard English Medium Computer Applications Subject Formatting text, Creating Tables, List and Links Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain the attributes used with < TD >,< TH > and < TR > tag in HTML.

  • 2)

    Define the following terms
    (i) link
    (ii) Hyperlink
    (iii) Internal link
    (iv) Local link
    (v) External link

  • 3)

    What is subscript and superscript?

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables, ListandLinks Creative 3 Mark Questions with Solution Part-II - by Question Bank Software View & Read

  • 1)

    Write a short note on (i) Subscript (ii) Superscript.

  • 2)

    Explain the attributes used to customize the ordered list.

  • 3)

    Define (i) Ordered list (ii) Unordered list (iii) Definition list

  • 4)

    Explain Highlighting text with an example.

  • 5)

    Explain the usage of < B >,  < I >, < U >, < S > tags

11th Standard English Medium Computer Applications Subject Formattingtext, CreatingTables, ListandLinks Creative 3 Mark Questions with Solution Part-I - by Question Bank Software View & Read

  • 1)

    Write-the usage and final output of the following tags
    (i) < strong > (ii) < em > (iii) < ins > (iv) < del >

  • 2)

    Define
    (i) cell
    (ii) Border
    (iii) column
    (iv) Table.

  • 3)

    Write note on Physical Style tags / Container tags.

  • 4)

    Write about inserting and deleting text in html document.

  • 5)

    Explain the usage of multiple fonts with face attribute.

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables, ListandLinks Creative 2 Mark Questions with Solution Part-II - by Question Bank Software View & Read

  • 1)

    Name the tags used in text bigger and smallers than the, normal size of the text.

  • 2)

    Differentiate < del > and < ins > tag.

  • 3)

    What is the use of < center > tag?

  • 4)

    Defined nested list.

  • 5)

    Defined link.

11th Standard English Medium Computer Applications Subject Formattingtext, CreatingTables, ListandLinks Creative 2 Mark Questions with Solution Part-I - by Question Bank Software View & Read

  • 1)

    Name the tags which are similar to < b > and < i >.

  • 2)

    Define Highlighting.

  • 3)

    Write the usage of the tag < s >.

  • 4)

    Write the general form of < font > with attributes.

  • 5)

    Write the structure of an anchor tag with href.

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables, ListandLinks Creative 1 Mark Questions with Solution Part-II - by Question Bank Software View & Read

  • 1)

    The container tags are otherwise known as________.

  • 2)

    Which of the following Statement(s) is true?
    (i) < SMALL > tag is used to define the text smallar than the current size
    (ii) < BIG > is not often used to call attention a text.

  • 3)

    Which of the following tag is used to highlight the text in HTML?

  • 4)

    Which of the following statement is true?
    (i) < sub > and < sup > tags are used to create subscript and superscript respectively
    (ii) The superscript character is always larger than the rest of the text
    (iii) The subscript character is always smaller than the rest of the text

  • 5)

    The text between < ins > and < /ins > will be shown as _______.

11th Standard English Medium Computer Applications Subject Formattingtext, CreatingTables, ListandLinks Creative 1 Mark Questions with Solution Part-I - by Question Bank Software View & Read

  • 1)

    Which of the following is not a container tag?

  • 2)

    Which of the following tag display the text will be old type writer Style?

  • 3)

    Which of the following statement(s) is false?
    (a) < strong > is similar to < b >
    (b) < em > is similar to < i >
    (c) < em > is similar to < u >

  • 4)

    Which of the following is an important formatting feature is used to call attention to the reader which reading webpage?

  • 5)

    The default color of the highlighted webpage text is_______.

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain the steps to create a webpage.

  • 2)

    Explain how will you edit and reload the source file in a HTML document

  • 3)

    Explain the four structural tags used in webpage.

  • 4)

    Explain Heading tag with its attributes.

  • 5)

    Explain Line Breaks and Paragraphs in HTML document.

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain HTML document structure.

  • 2)

    Write the steps for viewing webpage in a Browser.

  • 3)

    Explain two attributes used in HTML

  • 4)

    What is use of < ! > tag?

  • 5)

    Write briefly about HTML attributes.

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Name the browser available with windows and linux

  • 2)

    Name the web browser developed by Google and Microsoft Google - Chrome

  • 3)

    What is attribute?

  • 4)

    What is the use of head section?

  • 5)

    What are the structural tags of HTML

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Name the default text Editor of windows and linux.

  • 2)

    What is word processor?

  • 3)

    What is the use of attributes?

  • 4)

    What are the two sections of web document?

  • 5)

    What is the use of body section?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following are coded by HTML commands to display the content in the browser?

  • 2)

    Which sections is used to show the title of a webpage in title bar in browser?

  • 3)

    Which section is used to display the main content on the browser window?

  • 4)

    The tag < title > should be entered with in_______.

  • 5)

    Which of the following cannot be done with web pages without a network?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following language used to create web pages?

  • 2)

    HTML language is made up of_______.

  • 3)

    How many sections are there in Every Web document?

  • 4)

    Which tag is used to specify the title of the webpage?

  • 5)

    Which tag is used to display the web content on the browser window?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain the structure of email. 

  • 2)

    Explain the advantages of email.

  • 3)

    Explain any four familiar Internet Browser

  • 4)

    Explain the do’s and don’t of safe surfing on internet.

  • 5)

    What are the different browsers? Explain.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Write the description of the following Generic Domain Name.
    (i) .com
    (ii) .gov
    (iii) .org
    (iv) .net
    (v) .edu

  • 2)

    What is computer worm?

  • 3)

    What is loT?

  • 4)

    What are the different methods of accessing the internet?

  • 5)

    Write about social networking.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write a note on Intranet

  • 2)

    Write a note on spam.

  • 3)

    What is loT?

  • 4)

    Write note on e-commerce.

  • 5)

    What do you mean by e-banking?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Expand (i) VOIP (ii) ICT

  • 2)

    What is the use of social networking?

  • 3)

    What is E-mail?

  • 4)

    What is E-governance?

  • 5)

    Name any three job searches services for online.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write any four examples of Internet.

  • 2)

    What is E-Commerce?

  • 3)

    What is Internet Telephony?

  • 4)

    What is sent in an email?

  • 5)

    Write about Trojan horse.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    In which network the coverage range is upto 5kms?

  • 2)

    The speed of PAN is up to________.

  • 3)

    A Global network is called_______.

  • 4)

    Which of the following is the most cost - effective method of communication in the world?

  • 5)

    Which become an identity and can be access by the web browser when connected to the Internet?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Networks increase_________.

  • 2)

    In which Network the coverage range is above 1000kms?

  • 3)

    Which of the following statement is true regarding WLAN?
    (i) Range upto 5 kms
    (ii) connected using Wi-Fi or Bluetooth or Radio waves
    (iii) Installation is not quick and easy
    (iv) High bandwidth due to interference

  • 4)

    How many things are needed to make communication in Internet?

  • 5)

    The parts of IP number is seperated by_________.

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What do you understand by animation and how does it help in enhancing a presentation?

  • 2)

    Explain the usage of Rephrase Time in options are available in presentation software.

  • 3)

    Write the steps to change the font and effects of the current design theme of a presentation

  • 4)

    Write a short note on impress.

  • 5)

    How will you create a presentation.

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What do you understand by a slide?

  • 2)

    Devi has created a presentation based on "Trends of Wireless Communication", she wants to add header, footer, slide numbers in presentation. Which menu option she click on?

  • 3)

    What is presentation software?

  • 4)

    Name few presentation software.

  • 5)

    How will you create a presentation using templates?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Out of the following external file(s) which one(s), which help you include sound in your presentation: JPEG, WAY, GIF, BMP, MP3

  • 2)

    In which menu option is the picture sub menu option present?

  • 3)

    What does presentation software includes?

  • 4)

    How will you start open office impress.

  • 5)

    What are the three parts of the main impress window?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following is used to create multimedia?

  • 2)

    Which of the following option selected to display the presentation in computer monitor?

  • 3)

    The pre - packaged presentation are called_________.

  • 4)

    How many checkboxes are there in presentation wizard 1?

  • 5)

    How many parts are there in main Impress window?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following is used to select to start with blank presentation?

  • 2)

    How many presentation types are there in Impress presentation wizard 3?

  • 3)

    How many presentation types are there in Impress presentation wizard 3

  • 4)

    How many radio buttons are these in presentation wizard 1 ?

  • 5)

    Which of the following operation can not be performed in slide pane________.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 5 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Explain the three types of default toolbars in OpenOffice Calc.

  • 2)

    Explain Reference operator with an example.

  • 3)

    Explain how will you generate whole number series.

  • 4)

    Explain how will you insert a function wizard.

  • 5)

    Write the steps to apply standard filter?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 5 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write down the parts of the OpenOffice Calc window.

  • 2)

    Explain the parts of OpenOffice Calc Status bar.

  • 3)

    Explain how will you cut, copy and Paste data in a worksheet.

  • 4)

    Explain how will you insert a function using Direct Insert method.

  • 5)

    Write the steps to do multiple sorting data.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is the use of tab key, Shift tab key and Enter key in a worksheet?

  • 2)

    What are arithmetic operators? Give one example.

  • 3)

    Write the three types of reference Operators?

  • 4)

    Write the steps to save a worksheet.

  • 5)

    How the functions are categorized in Openoffice Calc?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write the elements of formula bar and their uses.

  • 2)

    Write the classification of data types in Openoffice calc.

  • 3)

    What are relational operators? Give on example.

  • 4)

    Write the steps to construct a formula in a worksheet?

  • 5)

    Write the steps to Copy a formula from one cell to multiple cells.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Write few spreadsheet software package.

  • 2)

    Define worksheet.

  • 3)

    Define cell

  • 4)

    Define cell printer

  • 5)

    How will you select multiple sheets in a worksheet?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write few spreadsheet software package.

  • 2)

    Define worksheet.

  • 3)

    Define cell printer

  • 4)

    How will you select multiple sheets in a worksheet?

  • 5)

    Write the steps that appears in a chart wizard in Calc?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following shows the current cell address?

  • 2)

    How many columns are there in Openoffice calc version 4.1.4?

  • 3)

    Which of the following selection mode(s) are available to select the cells of a worksheet?

  • 4)

    The default zoon scale in_______.

  • 5)

    Which operator in Open office calc gives exponent value?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which spread sheet software implement GUI?

  • 2)

    Lotus 1-2-3 introduced in the year_______.

  • 3)

    In which toolbar the function wizard icon is available?

  • 4)

    Spreadsheet window has ---------- sets of scroll bars

  • 5)

    How many rows are there in Openoffice calc version 4.1.4?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 5 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Explain any five menus in the Openoffice Writer Menu bar.

  • 2)

    Explain the steps followed to save the document.

  • 3)

    Explain the four types of paragraph alignment

  • 4)

    Explain how will you create and remove bullets and numbering in writer.

  • 5)

    How will you check the spelling mistakes after the document typed.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 5 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Explain the important features of Openoffice Writer.

  • 2)

    Explain the cursor movement keys used in Openoffice Writer document.

  • 3)

    Explain how move and copy the text in the document.

  • 4)

    Explain the types of indenting the text.

  • 5)

    Explain the steps to find and replace the text in writer.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Differentiate between Windows 7 and Windows 8.

  • 2)

    Write the graphical representation of disk drive icons.

  • 3)

    What is the difference between the application window and the document window?

  • 4)

    What is use of windows elements corners and borders?

  • 5)

    How will you delete files and folders?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What is OS?

  • 2)

    Write a note on desktop.

  • 3)

    Write a note on window.

  • 4)

    Write a note on Windows scroll bars.

  • 5)

    How will you start and close a program in windows?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is word processing?

  • 2)

    Mention any four Open office software package?

  • 3)

    Name the open source word processing software along with developer?

  • 4)

    How will you open a text document in Openoffice writer?

  • 5)

    What is ruler?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What is the use of Word Art in writer?

  • 2)

    What is Openoffice?

  • 3)

    Name the proprietary source word processing software along with developer?

  • 4)

    Name the word processors exclusively for Tamil language?

  • 5)

    What is the use of Auto format option?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    The openoffice suite developed by_________.

  • 2)

    The opening screen of the openoffice is called_______.

  • 3)

    Which key used to move to the End of line?

  • 4)

    Which key is used to more the insertion point to one cell left?

  • 5)

    The text in a document can be changed to different cases uses the command_____.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    ________ menu contains the Numbering option.

  • 2)

    Which of the following is a word processing software?

  • 3)

    Which of the following word processor is not exclusively for Tamil language?

  • 4)

    The shortcut key used to open a new text document is________.

  • 5)

    Which of the following content of openoffice window display the number of pages, current page number etc?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 5 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Write the action and reaction of using mouse.

  • 2)

    Explain the elements of Windows.

  • 3)

    Explain the different ways of finding a file or Folder.

  • 4)

    Explain the different methods of moving files and folders in windows.

  • 5)

    Explain the methods followed while copying files and folders to removable disk.

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 5 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What are the functions of Windows Operating system.

  • 2)

    Explain the different types of icons of windows desktop

  • 3)

    Explain different ways of creating a new folder.

  • 4)

    Explain the different methods of renaming files and folders.

  • 5)

    Explain how will you copy files and folders in windows.

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Differentiate between Windows 7 and Windows 8.

  • 2)

    Write the graphical representation of disk drive icons.

  • 3)

    What is the difference between the application window and the document window?

  • 4)

    What is use of windows elements corners and borders?

  • 5)

    How will you delete files and folders?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What is OS?

  • 2)

    Write a note on desktop.

  • 3)

    Write a note on window.

  • 4)

    How will you start and close a program in windows?

  • 5)

    How will you delete files and folders using file menu?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Name the Linux free server distributions.

  • 2)

    In what way Ubuntu and other OS are similar?

  • 3)

    What is Ambiance in Ubuntu OS?

  • 4)

    Name the icons which is equivalent to MS-office applications.

  • 5)

    What is Trash in Ubuntu OS?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Name any four most popular Linux distributors.

  • 2)

    Name the Linux server distributions are associated with price.

  • 3)

    Name any four icons in the Ubuntu OS desktop?

  • 4)

    What is Launcher?

  • 5)

    What is the use of VBox in Ubuntu OS?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following input devices used in Windows OS?

  • 2)

    Which button is used to get the Windows desktop?

  • 3)

    A rectangular area in an application is called ____

  • 4)

    Which level in the Multilevel directory system is root directory?

  • 5)

    Which command is used to cut file or folder?

11th Standard English Medium Computer Applications Subject Working With Typical Operating System Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Multiple applications execute simultaneously in windows is know as_______.

  • 2)

    Which of the following is not an access applications?

  • 3)

    Which key display the Windows desktop?

  • 4)

    The graphical representation of Windows elements are called ______

  • 5)

    Which wildcard character used to substitute for a single character in a file name?

11th Standard English Medium Computer Applications Subject Operating Systems Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain memory management techniques.

  • 2)

    Explain File Management.

  • 3)

    Explain the following in detail.
    (a) FIFO (b) SJF (c) Round Robin

  • 4)

    Explain the classification of proprietary licensed OS.

  • 5)

    Explain the classification of Opensource OS

11th Standard English Medium Computer Applications Subject Operating Systems Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Write the usage of operating system.

  • 2)

    Identity the type of operating system for the following Statement.
    (a) It allows same applications to be accessed by multiple user.
    (b) It is used to access shared data and files that reside in any machine around the world.
    (c) It allows only a single user to perform a task at a time.

  • 3)

    Explain Time sharing scheduling or priority scheduling.

  • 4)

    Write a note of RTOS or Real time OS?

  • 5)

    Write a note on BOSS.

11th Standard English Medium Computer Applications Subject Operating Systems Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Differentiate Internet and Intranet.

  • 2)

    Write the types of Operating System?

  • 3)

    Identify the type of Operating system for the following.
    (a) It is a multi-tasking and multiuser OS.
    (b) MS-DOS is an example.
    (c) It used to share data and files around the world.

  • 4)

    What is the function of file management?

  • 5)

    Write the classification of OS according to availability.

11th Standard English Medium Computer Applications Subject Operating Systems Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is freeware?

  • 2)

    What is proprietary software or close source software?

  • 3)

    What is an Operating System?

  • 4)

    Name the operating system used in pes and Mobile devices.

  • 5)

    Why GUI is used in Windows?

11th Standard English Medium Computer Applications Subject Operating Systems Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Mention few criteria to be considered by Software company to do the Open source software?

  • 2)

    What is shareware?

  • 3)

    Name any three Utility software.

  • 4)

    What does function of Operating System includes?

  • 5)

    What is MS-DOS?

11th Standard English Medium Computer Applications Subject Operating Systems Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which is used to perform any computer operation?

  • 2)

    Multiprocessor operating system is also called _____processing.

  • 3)

    Unix, Linux and windows are the example of_______operating system.

  • 4)

    Which operating system provides GUI?

  • 5)

    Interactive operating system is a____

11th Standard English Medium Computer Applications Subject Operating Systems Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which one of the following is not a function of an operating system?

  • 2)

    Which of the following is not a Multiuser Operating system?

  • 3)

    Processing takes place in parallel is called _______operating system.

  • 4)

    In which operating system, given task done within a fixed timeline?

  • 5)

    Which memory management technique does not provide the program with a "linear and contiguous address space"?

11th Standard English Medium Computer Applications Subject Computer Organization Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Draw a diagram of interconnecting the microprocessor with other devices of the computer system.

  • 2)

    List out the operation carried out by and Instruction set.

  • 3)

    What is the use of System Bus?

  • 4)

    Write a note on else processor.

  • 5)

    Differentiate RAM and ROM.

11th Standard English Medium Computer Applications Subject Computer Organization Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What is microprocessor? 

  • 2)

    What is Clock speed?

  • 3)

    What does word size determines? 

  • 4)

    Write a note on RISC processor.

  • 5)

    What are the methods used to access the memo

11th Standard English Medium Computer Applications Subject Computer Organization Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Draw the block diagram of a microprocessor based system.

  • 2)

    What is instruction set?

  • 3)

    Name the different types of CPU Register.

  • 4)

    What is the use of MDR?

  • 5)

    What is the use of address bus?

11th Standard English Medium Computer Applications Subject Computer Organization Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What are the collections of System Bus?

  • 2)

    Name the measurement of clock speed of the computer.

  • 3)

    What is word size?

  • 4)

    What is Bus?

  • 5)

    Define Decoder. 

11th Standard English Medium Computer Applications Subject Computer Organization Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following is not included in computer organization?

  • 2)

    Which of the following involved in designing a computer?

  • 3)

    Which of the following is not the characteristics of Microprocessor?

  • 4)

    The present microprocessor use................ bit architecture.

  • 5)

    Which of the following is not an example of CISC processor?

11th Standard English Medium Computer Applications Subject Computer Organization Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following deals with the hardware components of a computer system?

  • 2)

    Which of the following performs all tasks in the computer?

  • 3)

    Which of the following process computer instructions?

  • 4)

    Which holds the instruction and data for the execution of the processor?

  • 5)

    How many characteristics the microprocessor depends on?

11th Standard English Medium Computer Applications Subject Number Systems Creative 5 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Explain the Derived gates with expression and truth table.

  • 2)

    Suppose a number system has been designed with radix 10 with symbols (ordered from small to large) A, B, C, D, G, H, I, L, M, N. Convert the following number to equivalent hexadecimal number; (lNDIAN)1O

  • 3)

    Explain the following terms in detail. (1) ASCII (2) BCD (3) EBCDIC

  • 4)

    Convert the following Octal numbers into Binary numbers. -  145

  • 5)

    Convert the following Octal numbers into Binary numbers. - 62478

11th Standard English Medium Computer Applications Subject Number Systems Creative 5 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    How AND and OR can be realized using NAND and NOR gate

  • 2)

    Explain Unicode.

  • 3)

    What is number system? Describe different number systems in detail.

  • 4)

    Explain the following terms in detail. (1) ISCII (2) TSCII

  • 5)

    Convert the Following - (101.10)16 \(\rightarrow \)  (?2) = (?)10

11th Standard English Medium Computer Applications Subject Number Systems Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is MSB, LSB and Binary point? Give example.

  • 2)

    Write the three common ways of representing a signed binary number?

  • 3)

    Write the steps to find 2's complement

  • 4)

    What is use of BCD?

  • 5)

    What negative value does 1001 - 1011 represent

11th Standard English Medium Computer Applications Subject Number Systems Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write the truth table of fundamental gates

  • 2)

    Reason out why the NAND an NOR are called universal gates?

  • 3)

    Write the De Morgan's law.

  • 4)

    (101010)2 \(\rightarrow \) (?10\(\rightarrow \) (?10)

  • 5)

    Describe the parameters are used to determine the value of each digit in a number.

11th Standard English Medium Computer Applications Subject Number Systems Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Draw the truth table for XOR gate

  • 2)

    What are derived gates?

  • 3)

    Name the Number system is used in general.

  • 4)

    Write the radix of Decimal, Binary, Octal, Hexadecimal Number systems.

  • 5)

    What is information?

11th Standard English Medium Computer Applications Subject Number Systems Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write a short note on NAND Gate

  • 2)

    Write the associative laws?

  • 3)

    List the types of information stored in a computer.

  • 4)

    Name the four types of Number system.

  • 5)

    How the given messages are represented in computers?

11th Standard English Medium Computer Applications Subject Number Systems Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    NAND is called as ......Gate

  • 2)

    Data means..............

  • 3)

    How the message represented in computers?

  • 4)

    Which establishment done convention using groups of 8 bits as a basic unit of storage medium?

  • 5)

    Which is considered as the basic unit of measuring the memory size in the computer?

11th Standard English Medium Computer Applications Subject Number Systems Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which gate is called as the logical inverter?

  • 2)

    NOR is a combination of?

  • 3)

    The singular form of data is...........

  • 4)

    "75% of Men likes cricket" is............

  • 5)

    In a computer, a data is converted into_________.

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain any two input and output devices.

  • 2)

    Explain in detail the different types of Mouse.

  • 3)

    Explain Impact Printers with an Example.

  • 4)

    Explain booting of computer and its types.

  • 5)

    What the Sixth generation computers could be defined as the era of intelligent computers?

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Define Punched cards.

  • 2)

    What is Integrated circuits?

  • 3)

    What is Nano-technology?

  • 4)

    What is use of ALU?

  • 5)

    Write a note on Touch Screen.

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Define Transistor.

  • 2)

    What is Machine language?

  • 3)

    What is Robotics?

  • 4)

    Define POST.

  • 5)

    Write the advantages of fingerprint scanner.

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Name the Third generation computers.

  • 2)

    Write the developments of Sixth generation computers.

  • 3)

    What is CPU?

  • 4)

    Write any two pointing device.

  • 5)

    How the date travel through control bus?

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Name the Second generation computers.

  • 2)

    Expand VLSI.

  • 3)

    Name the types of computer introduced in Fourth generation computers.

  • 4)

    What is NLP?

  • 5)

    What is use of scanner?

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    The Third generation computers belongs to the period _____

  • 2)

    Which of the following is a Third generation computer?

  • 3)

    Super Conductors are used in _____ generation computers.

  • 4)

    The present computers are belongs to _____ generation.

  • 5)

    Which of the following is the heart of the computer?

11th Standard English Medium Computer Applications Subject Introduction to Computers Creative 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    The first calculating device is__________.

  • 2)

    Which of the following period the first generation computers belongs________.

  • 3)

    Laptops, Notebook, Tablets are belongs to _____ generation computers.

  • 4)

    The fifth generation computers belongs to _____

  • 5)

    ENAIC was invented by _____

11th Standard English Medium Computer Applications Subject Book Back 5 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Explain the basic components of a computer with a neat diagram.

  • 2)

    Explain the following:
    a. Inkjet Printer
    b. Multimedia projector
    c. Bar code / QR code Reader

  • 3)

    Find 1’s Complement and 2’s Complement for the following Decimal number a) -98 b) -135

  • 4)

    Explain the characteristics of a microprocessor.

  • 5)

    Arrange the memory devices in ascending order based on the access time.

11th Standard English Medium Computer Applications Subject Book Back 5 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Discuss the various generations of computers.

  • 2)

    How the read and write operations are performed by a processor? Explain.

  • 3)

    Explain the types of ROM.

  • 4)

    Explain the main purpose of an operating system

  • 5)

    Draw and compare the icon equivalence in windows and Ubuntu.

11th Standard English Medium Computer Applications Subject Book Back 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is an input device? Give two examples.

  • 2)

    Write the characteristics of sixth generation.

  • 3)

    Classify the microprocessor based on the size of the data .

  • 4)

    Differentiate PROM and EPROM

  • 5)

    Explain and list out examples of mobile operating system.

11th Standard English Medium Computer Applications Subject Book Back 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Write the applications of computer.

  • 2)

    Name any three output devices.

  • 3)

    Write short note on impact printer.

  • 4)

    Write down the interfaces and ports available in a computer.

  • 5)

    Explain and list out examples of mobile operating system.

11th Standard English Medium Computer Applications Subject Book Back 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is a computer?

  • 2)

    What are the components of a CPU?

  • 3)

    Write the functions of control unit.

  • 4)

    What is a GUI?

  • 5)

    What are the security management features available in Operating System?

11th Standard English Medium Computer Applications Subject Book Back 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Distinguish between data and information

  • 2)

    What is the function of an ALU?

  • 3)

    What is the function of memory?

  • 4)

    What are the parameters which influence the characteristics of a microprocessor?

  • 5)

    What is multi-user Operating System?

11th Standard English Medium Computer Applications Subject Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which one of the following is the main memory?

  • 2)

    Which refers to the number of bits processed by a computer's CPU?

  • 3)

    Expansion for ASCII

  • 4)

    What is the smallest size of data represented in a CD?

  • 5)

    Which of the following Operating system support Mobile Devices?

11th Standard English Medium Computer Applications Subject Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Name the volatile memory _____

  • 2)

    Identify the input device _____

  • 3)

    Which one of the following is used to in ATM machines

  • 4)

    Expand POST

  • 5)

    Which of the following device identifies the location when address is placed in the memory address register?

11th Standard English Medium Computer Applications Subject Tamil Computing Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    List the search engines supported by Tamil language.

  • 2)

    What are the keyboard layouts used in Android?

  • 3)

    Write a short note about Tamil Programming Language.

  • 4)

    What is TSCII?

  • 5)

    Write a short note on Tamil Virtual Academy.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is the role of firewalls?

  • 2)

    Write about encryption and decryption.

  • 3)

    Explain symmetric key encryption.

  • 4)

    What are the guidelines to be followed by any computer user?

  • 5)

    What are ethical issues? Name some.

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is harvesting?

  • 2)

    What are Warez?

  • 3)

    Write a short note on cracking.

  • 4)

    Write two types of cyber attacks.

  • 5)

    What is a Cookie?

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    A computer network security that monitors and controls incoming and outgoing traffic is

  • 2)

    The process of converting cipher text to plain text is called

  • 3)

    e-commerce means

  • 4)

    Distributing unwanted e-mail to others is called

  • 5)

    Legal recognition for transactions are carried out by

11th Standard English Medium Computer Applications Subject Computer Ethics and Cyber Security Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following deals with procedures, practices, and values?

  • 2)

    Commercial programs made available to the public illegally are known as

  • 3)

    Which one of the following are self-repeating and do not require a computer program to attach themselves?

  • 4)

    Which one of the following tracks a user visits a website?

  • 5)

    Which of the following is not a malicious program on computer systems?

11th Standard English Medium Computer Applications Subject JavaScript Functions Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is a function in JavaScript?

  • 2)

    What is the use of function?

  • 3)

    Write a note on Library functions.

  • 4)

    Write a note on user defined functions.

  • 5)

    Write the syntax of functions.

11th Standard English Medium Computer Applications Subject JavaScript Functions Book Back 1 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    The parameters work as

  • 2)

    Predefined functions are also called as

  • 3)

    Larger programs are divided into smaller are called

  • 4)

    Which of the following is used to enhance reusability and program clarity.

  • 5)

    Which of the following allow the programmer to modularize a program

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is if statement and write its types?

  • 2)

    Write the syntax for else-if statement.

  • 3)

    What is called a loop and what are its types?

  • 4)

    Differentiate between while and do while statements

  • 5)

    What message will be displayed, if the input for age is given as 20, for the following snippet?
    if (age > = 18 )
    {
    alert ("you are eligible to get Driving licence"}
    }
    else
    alert ("you are not eligible to get driving licence");
    }

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What are the different types of control statement used in JavaScript?

  • 2)

    What is meant by conditional statements in JavaScript?

  • 3)

    List out the various branching statements in JavaScript?

  • 4)

    Write the general syntax for switch statement

  • 5)

    Differentiate the break and continue statement.

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What will be the output for the following snippet:
    For (var n=0; n < 10; n+1)
    {
    if (n==3)
    {
    break;
    }
    document write (n+"< br >");
    }

  • 2)

    In which loop the condition is evaluated, before executing a statement?

  • 3)

    The _______ statement is especially useful when testing all the possible results of an expression.

  • 4)

    In the _____ loop, body of the loop always executed at least once before the condition can be executed.

  • 5)

    < script type = "text / javascript" >
    x = 6 + "3";
    document write (x);
    < script > what will be the output?

11th Standard English Medium Computer Applications Subject Control Structure in JavaScript Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which conditional statement is used to transfer control from current statement to another statement?

  • 2)

    _________ statement can be used as alterative to if-else statement.

  • 3)

    Which statement in switch case is used to exit the statement once the appropriate choice is found?

  • 4)

    Which part of the loop statement determines the number of times, the loop will be iterated? 

  • 5)

    Which of the following is not a branching statement?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What are the advantages of programming language?

  • 2)

    Brief the basic data types in Java Scripts.

  • 3)

    Write note on string Operator.

  • 4)

    Write about tag.

  • 5)

    What are the uses of Logical Operators?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write a syntax of < script > tag.

  • 2)

    What is scope of variables and types of scope variable?

  • 3)

    Write a notes to type casting in JavaScript

  • 4)

    How many Literals in Javascript and mention its types.

  • 5)

    What is conditional operator give suitable example?

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    How many attributes specifies for < script > tag in the scripting language?

  • 2)

    Which attribute is used to indicate the scripting language and its value should be sent to " Text/JavaScript".

  • 3)

    JavaScript ignores spaces that appear between

  • 4)

    Which is mostly used to give a warning message to users?

  • 5)

    In the below snippet, value of x is var x = 250 + 2 - 200;

11th Standard English Medium Computer Applications Subject Introduction to JavaScript Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which provide a common scripting language to web developers to design, test and deploy Internet Application?

  • 2)

    Expand CGI

  • 3)

    JavaScript programming language is used to develop the

  • 4)

    The Dynamic Web Page help to save server's

  • 5)

    User entered data, is validated before sending it to server is called

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is the use of < style > tag?

  • 2)

    What is CSS?

  • 3)

    Write the general format of linking CSS with HTML.

  • 4)

    What is Inline Style?

  • 5)

    Write down general format of CSS declaration.

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    The Declaration block of CSS is surrounded by

  • 2)

    The declaration should be terminated by

  • 3)

    What is the property to set text as bold?

  • 4)

    Which of the following indicates that the text included is a comment?

  • 5)

    Which of the following ways given below is correct to write a CSS?

11th Standard English Medium Computer Applications Subject CSS - Cascading Style Sheets Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Expansion of CSS

  • 2)

    Which of the following is the page level style?

  • 3)

    CSS is also called as:

  • 4)

    The extension of CSS file is

  • 5)

    What is selector?

11th Standard English Medium Computer Applications Subject HTML - Adding Multimedia Elements and Forms Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write a short note on familiar images format.

  • 2)

    How will you scroll the text in HTML?

  • 3)

    Explain the main attributes used with < form > tag.

  • 4)

    Explain the values of < input > tag’s type attribute.

  • 5)

    Explain the attributes of < select > and < option > tags.

11th Standard English Medium Computer Applications Subject HTML - Adding Multimedia Elements and Forms Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write down the general format of marquee.

  • 2)

    What is inline sound or movie?

  • 3)

    What is the purpose of < input > tag?

  • 4)

    Which tag is used to specify the list of items in dropdown list box?

  • 5)

    What are the major attributes are available in < textarea > tag?

11th Standard English Medium Computer Applications Subject HTML - Adding Multimedia Elements and Forms Book Back 1 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Which image format was standardized by W3C?

  • 2)

    The tag used to insert an image in HTML:

  • 3)

    Which value causes the audio play as long as the page is in view?

  • 4)

    Inline sound can be inserted using which of the following tag?

  • 5)

    The tag is used to create dropdown list box in HTML is:

11th Standard English Medium Computer Applications Subject Formatting text,Creating Tables,List and Links Book Back 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write an HTML code the show the following text:

  • 2)

    Explain the attributes used with < table > tag in HTML.

  • 3)

    Explain the types of list with suitable HTML code.

  • 4)

    What is Link and explain the types of links.

  • 5)

    Write HTML code to create the following table:

    A B
    C D E G
    F

11th Standard English Medium Computer Applications Subject Formatting text,Creating Tables,List and Links Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write an HTML code to display the following text in exactly the same way as given below.
    I am studying Computer Application.

  • 2)

    Briefly explain the attributes of < hr > tag.

  • 3)

    What are the core tags used to create table in HTML?

  • 4)

    Write an HTML code to provide hyperlink to https://www.w3schools.com

  • 5)

    Difference between < UL > and < OL > tags.

11th Standard English Medium Computer Applications Subject Formatting text,Creating Tables,List and Links Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write a short note on 
    (i) < strong >
    (ii) < em >

  • 2)

    What is the use of < mark > tag?

  • 3)

    What is thematic break?

  • 4)

    What are the types of list in HTML?

  • 5)

    How will you define numbered list?

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables,List andLinks BookBack 1 Mark Questions with Solution Part-II - by Question Bank Software View & Read

  • 1)

    A list block can be defined inside another list is:

  • 2)

    Read the following statement and choose the correct statement(s):
    (I) Link in HTML is used to create hyperlinks to web content.
    (II) HREF is abbreviated as Hypertext Markup File

  • 3)

    To create internal link, which of the following attribute should be used?

  • 4)

    Which of the following tags are called as physical style tags?

  • 5)

    Pick odd one from the list

11th Standard English Medium Computer Applications Subject Formattingtext,CreatingTables,List and Links BookBack 1 Mark Questions with Solution Part-I - by Question Bank Software View & Read

  • 1)

    Which feature is used to call attention to the reader?

  • 2)

    The tags < sub > and < sup > are used for:

  • 3)

    A named set of certain style of character and number is:

  • 4)

    Match the following

    (a) tfoot  (1) Order list
    (b) start  (2) Hyperlink
    (c) href  (3) Highlight
    (d) mark (4) Table
  • 5)

    Definition list has how many parts?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Explain the attributes available with < body > tag.

  • 2)

    What are the attributes available in < html >tags?

  • 3)

    How do you view the source file?

  • 4)

    How do you save a file as HTML file?

  • 5)

    What are the HTMLwriting tools?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Sandhiya is creating a webpage. She is entering HTML code on her computer. In between, she keeps pressing “Refresh” / “Reload” button on her browser. What is the purpose?

  • 2)

    Explain with the help of an example the difference between container and empty elements of HTML.

  • 3)

    What is the wrong in the following coding?
    < html >
    < my web page >
    < title > Welcome to my web page
    < /head >
    < /title >

  • 4)

    How do you define comments in HTML?

  • 5)

    How do you include an image as your web page background?

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following symbol is used to prefix with hexadecimal value representing colour in HTML?

  • 2)

    Which of the following attribute is used to change text colour within body tag?

  • 3)

    Within body section, which of the following attribute is used to set top margin?

  • 4)

    How many levels of heading tags are available in HTML?

  • 5)

    The tag used to insert a line break:

11th Standard English Medium Computer Applications Subject HTML - Structural Tags Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    HTML is acronym for

  • 2)

    The coded HTML keywords that indicates how web browser should format and display the content is called_________.

  • 3)

    Which of the following is a special word used inside a tag to specify additional information to the tag?

  • 4)

    HTML tags should be specified within:

  • 5)

    An HTML document is bounded within a pair of ________ tags

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Compare the different geographical types of Network

  • 2)

    Explain any five types of internet services.

  • 3)

    Explain any five internet applications with suitable examples.

  • 4)

    Write a note on any five Internet browsers other than that given in the book.an

  • 5)

    Classify and explain any five e-commerce parties with suitable examples.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 3 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Differentiate browser and a search engine with suitable examples.

  • 2)

    Differentiate Website and Webpage.

  • 3)

    What is the difference between Static and dynamic web page.

  • 4)

    Write a note on W3C?

  • 5)

    What are Advantages of email?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 3 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Differentiate PAN and CAN network

  • 2)

    What is TCP/IP ?

  • 3)

    Write a note on Hotspot internet service.

  • 4)

    Differentiate Data Card and Dongles.

  • 5)

    Write a note on two access methods of connecting to internet.

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is a browser?

  • 2)

    What is a website?

  • 3)

    What is CC and BCC in an email?

  • 4)

    What is a Dynamic web page?

  • 5)

    What are the benefits of e-governance?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    List any four types of available networks?

  • 2)

    Name the two important protocols for internet?

  • 3)

    What is a network?

  • 4)

    What is the role of ICANN?

  • 5)

    What is a search engine?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Hotspot uses which type of network services?

  • 2)

    USB WiFi adapters are often called as

  • 3)

    Looking for information on the internet is called

  • 4)

    Safari web browser was developed by

  • 5)

    How many types of websites are available?

11th Standard English Medium Computer Applications Subject Introduction to Internet and Email Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What is the expansion of WLAN?

  • 2)

    Range of Campus Network is

  • 3)

    Each computer on net is called

  • 4)

    The internet is governed by

  • 5)

    Expansion of W3C

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    How many types of views are provided by Impress to its users?

  • 2)

    Who uses the presentation software and why

  • 3)

    Define the Slide Sorter view and its significance.

  • 4)

    What is a Normal view? Explain.

  • 5)

    How are transition effects helpful in creating an effective presentation in Impress?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 2 Mark Questions with Solutions - by Question Bank Software View & Read

  • 1)

    What is the difference between a slide and a slide show?

  • 2)

    How many in-built slide layouts does impress consist of?

  • 3)

    What do you understand by a presentation?

  • 4)

    Define a template in Impress.

  • 5)

    What do you understand by the slide layout?

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    In Impress, which views shows thumbnail versions of all your slides arranged in horizontal rows.

  • 2)

    Identify the extension of the Impress presentation.

  • 3)

    In presentation tools, the entry effect as one slide replaces another slide in a slideshow. Identity the option that suits after reading the statement.

  • 4)

    Vanya has made a presentation on "Global Warming". She wants to progress her slide show automatically while speaks on the topic in the class. Which features of Impress would she use?

  • 5)

    How many ways to create a new presentation in OpenOffice impress________.

11th Standard English Medium Computer Applications Subject Presentation-Basics (OpenOffice Impress) Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which is used to move quickly from one slide to another?

  • 2)

    Which is the shortcut key to view the slide show?

  • 3)

    In Impress, which views shows thumbnail versions of all your slides arranged in horizontal rows.

  • 4)

    Identify the default view in Impress.

  • 5)

    Which menu contains the Slide Transition option?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write a short note on OpenOffice Calc.

  • 2)

    Write about inserting columns and rows in Calc

  • 3)

    Differentiate Deleting data using Backspace and Delete.

  • 4)

    Write any three formatting options.

  • 5)

    In cell A1=34 A2=65 A3=89 write the formula to find the average.

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 2 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Can you edit the contents of a cell? If yes, explain anyone of the method of editing the cell content.

  • 2)

    What are the options available in "Insert Cells" dialog box?

  • 3)

    Match the following.

    A B
    (a) Cut, Copy and Paste (1) Absolute Cell
    (b) Cell pointer (2) Status bar
    (c) Selection Mode (3) Standard Toolbar
    (d) $ A5 $ (4) Active cell
  • 4)

    Define the following
    (i) Text Operator
    (ii) Rows and Columns of spreadsheet.

  • 5)

    Differentiate between Copy - Paste and Cut-Paste

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 2 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    What are the types of toolbars available in OpenOffice calc?

  • 2)

    What is a Cell pointer?

  • 3)

    Write about the text operator in OpenOffice Calc.

  • 4)

    Write the general syntax of constructing a formula in Calc.

  • 5)

    What are the keyboard shortcuts to cut, copy and paste?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    A formula in calc may begin with________.

  • 2)

    What will be the result from the following formula (Assume A1=5, B2=2)? +A1^B2

  • 3)

    What will be the result from the following expression (Assume H1=12, H2=12)? = H1< >H2

  • 4)

    Which of the following symbol is used to make a cell address as an absolute reference?

  • 5)

    Which of the following key combinations is used to increase the width of the current column?

11th Standard English Medium Computer Applications Subject Spreadsheet-Basics (OpenOffice Calc) Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which is the first electronic Spreadsheet?

  • 2)

    Which of the following applications was the parent to Open Office Calc?

  • 3)

    Grid of cells with a programmable calculator :

  • 4)

    A column heading in Calc is represented using________.

  • 5)

    Which key is used to move the cell pointer in the forward direction within the worksheet?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is the difference between moving and copying text?

  • 2)

    What are the different types of orientation?

  • 3)

    How do you insert rows and columns?

  • 4)

    What are the different ways to save a document?

  • 5)

    Write the steps to change the line spacing of text.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    How do you insert pictures in to your document?

  • 2)

    What is auto text in writer?

  • 3)

    How do you merge cells in a table?

  • 4)

    What are the different packages in OpenOffice Writer?

  • 5)

    State the differences between proprietary software and open source software.

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    What is changing the default appearance of the text called?

  • 2)

    Find & Replace option is available in which menu?

  • 3)

    Which button selects all instances of the search text in the document?

  • 4)

    What is the shortcut key to go to the start of the document?

  • 5)

    What is the shortcut key for Undo?

11th Standard English Medium Computer Applications Subject Word Processor Basics (OpenOffice Writer) Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which is the opening screen of OpenOffice?

  • 2)

    Which option allows you to assign text, tables, graphics and other items to a key or key combination?

  • 3)

    Which menu contains the Numbering option?

  • 4)

    What is the shortcut key for finding and replacing text in a document?

  • 5)

    Which is displayed at the top part of the window?

11th Standard English Medium Computer Applications Subject Typical Operating System (Windows & Linux) Book Back 5 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Draw and compare the icon equivalence in windows and Ubuntu.

  • 2)

    Explain the versions of Windows Operating System.

  • 3)

    Complete the following matrix.

    Navigational method Located on Ideally suited for
    Start button Task bar  
      Desktop Exploring your disk drives and using system tools.
    Windows Explorer   Seeing hierarchy of all computer contents and resources in one window.
    Quick Launch    
  • 4)

    Observe the figure and mark all the window elements, Identify the version of the Windows Os.

  • 5)

    Write the procedure to create, rename, delete and save a file in Ubuntu OS. Compare it with Windows OS.

11th Standard English Medium Computer Applications Subject Typical Operating System (Windows & Linux) Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    If you are working on multiple files at a time, sometimes the system may hang. What is the reason behind it? How can you reduce it?

  • 2)

    Are drives such as hard drive and floppy drives represented with drive letters?

  • 3)

    Write the specific use of Cortana.

  • 4)

    List out the major differences between Windows and Ubuntu OS.

  • 5)

    Differentiate Thunderbird and Firefox in Ubuntu OS.

11th Standard English Medium Computer Applications Subject Typical Operating System (Windows & Linux) Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Differentiate cut and copy options.

  • 2)

    What is the use of a file extension?

  • 3)

    Differentiate Files and Folders

  • 4)

    Differentiate Save and save As option.

  • 5)

    What is Open Source?

11th Standard English Medium Computer Applications Subject Typical Operating System(Windows & Linux) BookBack 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following in Ubuntu OS is used to view the options for the devices installed?

  • 2)

    Identify the default email client in Ubuntu?

  • 3)

    Which is the default application for spreadsheets in Ubuntu? This is available in the software launcher?

  • 4)

    Which is the default browser for Ubuntu?

  • 5)

    Where will you select the option to log out suspend, restart, or shut down from the desktop of Ubuntu OS?

11th Standard English Medium Computer Applications Subject Typical Operating System(Windows & Linux) Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    From the options given below, choose the operations managed by the operating system.

  • 2)

    Which is the default folder for many Windows Applications to save your file?

  • 3)

    Under which of the following OS, the option Shift + Delete - permanently deletes a file or folder?

  • 4)

    What is the meaning of "Hibernate" in Windows XP/Windows 7?

  • 5)

    Which of the following OS is not based on Linux?

11th Standard English Medium Computer Applications Subject Operating Systems Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    List out any two uses of Operating System?

  • 2)

    What is multi-user Operating System?

  • 3)

    What is a GUI?

  • 4)

    What are the security management features available in Operating System?

  • 5)

    What are the different Operating Systems used in computer?

11th Standard English Medium Computer Applications Subject Operating Systems Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which of the following is not a Function of Operating System?

  • 2)

    File Management manages_______

  • 3)

    Interactive Operating System provides______

  • 4)

    Android is a ________

  • 5)

    Which of the following refers to Android operating system's version?

11th Standard English Medium Computer Applications Subject Operating Systems Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Operating system is a_____.

  • 2)

    Identify the usage of Operating Systems

  • 3)

    Which of the following is not a Function of Operating System?

  • 4)

    Which of the following OS is a Commercially licensed Operating system?

  • 5)

    Which of the following Operating system support Mobile Devices?

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Classify the microprocessor based on the size of the data .

  • 2)

    Write down the classifications of microprocessors based on the instruction set.

  • 3)

    Differentiate PROM and EPROM

  • 4)

    Write down the interfaces and ports available in a computer.

  • 5)

    How will you differentiate a flash memory and an EEPROM?

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What are the parameters which influence the characteristics of a microprocessor?

  • 2)

    What is an instruction?

  • 3)

    What is a program counter?

  • 4)

    What is HDMI?

  • 5)

    Which source is used to erase the content of a EPROM?

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which is the fastest memory?

  • 2)

    How many memory locations are identified by a processor with 8 bits address bus at a time?

  • 3)

    What is the capacity of 12cm diameter DVD with single sided and single layer?

  • 4)

    What is the smallest size of data represented in a CD?

  • 5)

    Display devices are connected to the computer through __________

11th Standard English Medium Computer Applications Subject Computer Organization Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which of the following is said to be the brain of a computer?

  • 2)

    Which of the following is not the part of a microprocessor unit?

  • 3)

    How many bits constitute a word?

  • 4)

    Which of the following device identifies the location when address is placed in the memory address register?

  • 5)

    Which of the following is a CISC processor?

11th Standard English Medium Computer Applications Subject Number Systems Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is radix of a number system? Give example

  • 2)

    Write note on binary number System.

  • 3)

    Convert (150)10 into Binary, then convert that Binary number to Octal.

  • 4)

    Write short note on ISCII.

  • 5)

    Add (a) -2210 + 1510 (b) 2010+2510

11th Standard English Medium Computer Applications Subject Number Systems Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is data?

  • 2)

    Write the 1's complement procedure.

  • 3)

    Convert (46)10 into Binary number

  • 4)

    We cannot find 1's complement for (28)10 State reason.

  • 5)

    List the encoding systems that represents characters in memory.

11th Standard English Medium Computer Applications Subject Number Systems Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    How many bytes does 1 KiloByte contain?

  • 2)

    For 11012 the equalent Hexadecimal equivalent is?

  • 3)

    What is the 1's complement of 00100110?

  • 4)

    Which amongst this is not an Octal number?

  • 5)

    In a computer, a data is converted into_________.

11th Standard English Medium Computer Applications Subject Number Systems Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    Which refers to the number of bits processed by a computer's CPU?

  • 2)

    How many bytes does 1 KiloByte contain?

  • 3)

    Expansion for ASCII

  • 4)

    2\(\wedge \)50 is referred as

  • 5)

    How many characters can be handled in Binary Coded Decimal System?

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 3 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    Write the applications of computer.

  • 2)

    What is an input device? Give two examples.

  • 3)

    Name any three output devices.

  • 4)

    Differentiate Optical and Laser mouse.

  • 5)

    Write the significant features of monitor.

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 2 Mark Questions with Solution - by Question Bank Software View & Read

  • 1)

    What is a computer?

  • 2)

    Distinguish between data and information

  • 3)

    What are the components of a CPU?

  • 4)

    What is the function of an ALU?

  • 5)

    Write the functions of control unit.

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 1 Mark Questions with Solution Part - II - by Question Bank Software View & Read

  • 1)

    Which one of the following is used to in ATM machines

  • 2)

    When a system restarts which type of booting is used.

  • 3)

    Expand POST

  • 4)

    Which one of the following is the main memory?

  • 5)

    Which generation of computer used IC's?

11th Standard English Medium Computer Applications Subject Introduction to Computers Book Back 1 Mark Questions with Solution Part - I - by Question Bank Software View & Read

  • 1)

    First generation computers used ______.

  • 2)

    Name the volatile memory _____

  • 3)

    Identify the output device _____

  • 4)

    Identify the input device _____

  • 5)

    _____ Output device is used for printing building plan.

11th Standard Computer Applications Text Book – 2021 - by QB Admin View & Read