Vous êtes sur la page 1sur 29

Work-Experience Sample

Questions

Sample Question-1-3
Q1)The set of computer programs that manage the
hardware/software of a computer is called
Ans- Operating system
Q2)Which Operating system is used on mobile phones?
Ans-Android
Q3) Which software is used to convert High level
programming language into machine language
Ans-Compiler

Sample Question-4-7
Q4)The term DNS stands for
Ans-Domain Name System
Q5) Errors in computer programmes are called
Ans-Bugs
Q6) CD ROM stands for
Ans-Compact Disk Read Only Memory
Q7)What is the permanent memory built into your
computer called ?
Ans-ROM

Sample Question:8-11
Q8)The scientist who developed the idea of the WWW is
Ans-Tim Berns Lee
Q9)"Dpi" stands for
Ans-Dots per inch
Q10)Computers use . language to process data
Ans- Binary
Q11) What is the storage capacity of a DVD?
Ans-4.7 GB

Sample Question:12-16
Q12)Back up of the data files will help to prevent
Ans-loss of data
Q13)The benefit of using computers is that .
Ans-Computers are very fast and can store huge
amounts of data
Q14)How can you insert a new row into the Store table?
Ans-Insert into store values(1,Abc Rice);
Q15)How can you delete the rows with marks blow 33 in the
student Table?
Ans-Delete from student where marks<33

Sample Questions:16-19
Q16) Which statement is used to modify data in a table?
Ans-Update
Q17) What we can do with alter command?
Ans-ADD/DROP/Modify
Q18)DDL is used to define the structure of a database,
including the tables, columns, and data types that it
contains. Its full form is ?
Ans-Data Definition Language
Q19)The word bandwidth is also used to mean ________
Ans-Amount of data transferred

Sample Questions:20-23
Q20)Structured Query Language (SQL) is used for
Ans- Create, Modify & Query Databases
Q21)Which is NOT true about a database?
Ans-A database is a Programming Language
Q22)Tables are made up of
Ans- Columns and rows
Q23)Fill in the blank to view a list of tables for the
currently selected database.
Show
___Databases;__________

Sample Questions:24-26
Q24)With SQL, how can you return all the records from a table
named "Persons" sorted descending by "FirstName"?
Ans-SELECT * FROM Persons ORDER BY FirstName DESC
Q25)Fill in the blanks to select the name of the student whose id is
equal to 23.
Ans-Select id, name from students
_where_________id=23__________
Q26)Build a query to select name and city from the people table
and order by the id
Ans-Select name, city__________ from ____people_______
__________order by___ id;

Sample Questions:27-30
Q27)The Use command
Ans-Should be used to choose the database you want to
use once you have connected to MySQL
Q28)What does SQL stand for?
Ans-Structured Query Language
Q29) Which SQL statement is used to extract data from a
database?
Ans-SELECT
Q30) Which SQL statement is used to update data in a
database?
Ans-UPDATE

Sample Question 31-34


Q31)Which SQL statement is used to delete data from a database?
Ans- DELETE
Q32) Which SQL statement is used to insert new data in a
database?
Ans-INSERT INTO
Q33) With SQL, how do you select all the columns from a table
named "Persons"?
Ans-SELECT * FROM Persons;
Q34) Which SQL statement is used to return only different values?
Ans-SELECT DISTINCT;

Sample Question 35-37


Q35)Which SQL keyword is used to sort the result-set?
Ans-ORDER BY
Q36)Fill in the blank s to select name and city from the
people table
Ans-Select _name,__________ city from__People_________;
Q37)How can you change "Hansen" into "Nilsen" in the
"LastName" column in the Persons table?
Ans-UPDATE Persons SET LastName='Nilsen' WHERE
LastName='Hansen;

Sample Question 38-41


Q38)Which of the following is an example of an optical
disk?
Ans-Digital versatile disk
Q39)IC chips used in computers are made of
Ans-Silicon
Q40)Blue tooth technology allows:
Ans-Wireless communication between equipments
Q41)A . is an electronic device that process data,
converting it into information
Ans-Computer

Sample Question 42-45


Q42)The tells the computer how to use its
components.
Ans-Operating system
Q43)Where does a computer add and compare its data ?
Ans-Processor
Q44)Computers on an internet are identified by
Ans-IP address
Q45)Which one of the following is not an Internet Service
Provider (ISP)?
Ans-Infotech India Ltd.

Sample Question 46-49


Q46)1 GB is equal to
Ans-230bytes
Q47) Which MySQL command is used to view the structure of
the table
Ans-Describe tablename;
Q48)Which MySQL command is used to add a new column in the
existing table
Ans-Alter command
Q49) Which MySQL command is used to drop any column from
the existing table
Ans-Alter command

Sample Question 50-53


Q50)Which datatype is used for name column in the table
Ans-Varchar
Q51)Which datatype is used for date column in the table
Ans-Date
Q52)Full form of DML
Ans-Data Manipulation Language
Q53)Which MySQL statements come under DML category?
Ans -Update , Select, Insert into ,delete

Sample Question 54-57


Q54) Which company Developed MySQL
Ans-Swedish Company, MySQL AB
Q55)Which Programming language is used for creation of MySQL
Ans-C and C++
Q56)Who developed MySQL?
Ans-David Axmark
,Allan Larsson and Michael
Widenus
Q57)In which year MySql was Developed?
Ans-1995

Sample Question 58-61


Q58)Who invented RAM?
Ans-Robert Dennard is the inventor of RAM, although it was
known as DRAM
Q59)Who invented the mouse?
Ans-Douglas Engelbart, an American engineer
Q60)Who invented email?
Ans-Email was invented by V.A. Shiva Ayyadurai, who started
developing the electronic mail system in 1978, at age 14
Q61)Who developed first microprocessor and in which
year?
Ans-Intelintroduces the first microprocessor,
theIntel4004on November 15, 1971

Sample Question 62-63


Q62) How to create a table in MySQL
Ans- Syntax:-Create table tablename(columnname1
datatype,columnname-2 datatype,columnname-3
datatype,coulmnname-4 datatype)
Example-Create table student(Admno int, Rollno int,
Name varchar(20),marks(4,1));
Q63) how to insert a new row in a table
Ans-Syntax: insert into tablename
values(firstvalue,value-2,value-3,value-4)
Insert into student values(1000,11001,Rahul,67.5);

Sample Question 64-66


Q64)How we can add new column into the existing table
Ans-Alter table tablename add columnname datatype
Example-alter table student add address varchar(30);
Q65)How you can delete any column from an existing table
Ans-Alter table tablename drop columnname ;
Example-alter table student drop address ;
Q66)How can we modify any column from an existing table
Ans-Alter table tablename modify columnname datatype
Example-alter table student modify address varchar(35);

Sample Question 67-69


Q67)Full form of DDL
Ans-Data Definition Language
Q68) Which MySQL statements come under DDL category?
Ans create database , Alter table , create table ,drop
table
Q69) With SQL, how do you select all the records from a table
named "Persons" where the value of the column "FirstName"
starts with an "a"?
Ans-SELECT * FROM Persons WHERE FirstName LIKE 'a
%'

Sample Question 70-73


Q70)_______is a hidden program for example in a game or
spreadsheet that looks safe to execute but has some hidden side
effects also.
Ans-Trojan Horse
Q71)Calculator is a
Ans Customized software
Q72)A bit stands for
Ans-Boolean digit
Q73)A program written in high level language is called as
Ans-Source Program

Sample Question 74-77


Q74)MICR stands for
Ans-Magnetic Ink Character Reader
Q75)Name the First Object Oriented Programming Language.
Ans-Simula (1967)
Q76)Name the person who introduced the First concept a modern
computer.
Ans-TheTuring machinewas first proposed byAlan
Turingin1936.
Q77) The OR operator displays a record if ANY conditions listed are
true. The AND operator displays a record if ALL of the conditions listed
are true
Ans- True

Sample Question 78-80


Q78)What is the most common type of join?
Ans-INSIDE JOIN
Q79) The main Mysql program that does all the data
handling is called
Ans-mysqld
Q80) Which of these is not a valid name for a column
Ans-from

Sample Question 80-84


Q80)How do I find out all databases starting with test?
Ans-SHOW DATABASES LIKE test%;
Q81)Can DISTINCT command be used for more than one
column?
Ans-Yes
Q82)Which is the default order of sort in ORDER BY clause?
Ans-Ascending
Q83)A field or a combination of fields in a table that has a
unique value for each row is called
Ans-Primary key

Sample Question 84-87


Q84)Which MySQL command is used to get the current
date?
Ans-SELECT CURDATE();
Q85).MPG' extension refers to:
Ans- Movie file
Q86)If software is released under open source ,it means
Ans-Its source code is available to user
Q87)A relation can have only one _________key and may
have more than one ______________key
Ans-Primary Key,Candidate Key

Sample Question 88-90


Q88) An outer join requires each record in the two joined
tables to have a matching record.
Ans-False
Q89)Fill in the blanks to select distinct names from the
students table ordered by name
AnsSelect____distinct________,name_from__________students
____________order by__name
Q90)A Parallel port is most often used by
Ans-Parallel port

Sample Question 91-94


Q91)What is an open source DBMS product that runs on UNIX,
Linux and Windows.
Ans-MySQL
Q92)Fill in the missing keyword to list the table names
show____________tables;
Q93)What does the table join do?
Ans-Creates a temporary table with the joined tables
data
Q94)What do we call the pictorial representation that uses
predefined symbols to describe either the logic of a computer
program or the data flow and processing steps of a system?
Ans-Flowchart

Sample Question 95-97


Q95)What is the ultimate purpose of Defragmentation?
Ans-Make the PC faster
Q96)When some unidentified / unknown person / firm
sends you mail in a trustworthy /lucrative way asking for
sensitive banks and online payment information, this is a
case of __?
Ans-Phishing
Q97)What is the fullform of W3C?
Ans-World Wide Web Consortium

Sample Question 98-100


Q98)Fill in the blanks to select name and age from students
where age is greater than the average of all ages.use a subquery
to calculate the average value of age
Ans-Select____name,age from students where_________ age
>(select __avg_____(age) from students)
Q99) How would you display all those rows from a table named
friends where the value of the columns hobbies is swimming
Ans-Select * from friends where hobbies =swimming;
Q100)How can you delete the rows with marks below 33 in the
student table?
Ans-Delete from student where marks<33;

Vous aimerez peut-être aussi