Vaiva Question
Vaiva Question
Ans: Array is a collection of group of elements of same data type and same name.
2. What are the types of array?
Ans : Single Dimentional Array
Two Dimentional Array
Multi Dimentional Array
3. Expand ESS.
Ans : Electronic Spread Sheet
4. What is index and Subscript?
Ans : Index : The individual element of an array is identified by its own unique
positive integer value.
Subscript : The elements are numbered as 0,1,2,3..n-1 these numbers are known
as subscripts.
5. What is work sheet?
Ans : A page in MS EXCEL is called as worksheet.
6. What is Spread sheet?
Ans : Spread sheet is a computer application program that can hold formulas in a
cell and server as a calculator.
Ex: MS EXCEL
7. What is a cell?
Ans: The intersection of rows and columns are called cells.
8. What is the short cut key for cut,copy,paste?
Ans:
copy (ctrl+c) – It sends the copy of selection to a clipboard. Paste (ctrl+v) – it
inserts the resent clipboard contents to a current location.
Cut (ctrl+x) – it moves the selected contents to the clipboard.
9. What is WWW?
Ans: World Wide Web it is the system of interlinked,hyper text documents that
runs over the internet.
10.What is html?
Ans : HTML is a Hyper Text Markup Language which is used to create web site or
web pages.
11.What is Search Engine?Give an Example.
Ans : It is a software code designed to search desired information on www.
Ex: google,yahoo Wikipedia etc..
12.What is a Website?
Ans : It is a collection of web pages which identifies a computer or group of
computers of an organization.
13.When do we use for loop?
Ans : It is used as increment or decrement looping statement
14.What is Testing and Debugging?
Ans : Testing : It is a process of checking whether program
Works correctly for all possible set of input values.
Debugging : It is a process of detecting and correcting the errors.
15.Define Class.
Ans : A class is a blue print for creating objects.
16.What are the concepts of OOPS?
Ans : Modularity, Abstraction,Data encapsulation, Inheritance, Polymorphism,
Dynamic binding, Message passing.
17.What are the different types of Looping constructs?
Ans : While loop, For loop, Do-while loop
18.What is a Variable?
Ans : Variable is an identifier whose values changes during program execution.
19.What is Data Type?
Ans : A set of values stored in a variable along with possible operation that can
be performedon values.
20.Name the Selection constructs?
Ans : if statement,if-else statement,else-if statement,nested-if statement,
switch statement.