0% found this document useful (0 votes)
18 views9 pages

Class 11

Uploaded by

manasvikora23
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views9 pages

Class 11

Uploaded by

manasvikora23
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

1.User communicates with a computer with the help of which devices?

a) Input device

b) Output device

c) Software device

d) Both a and b

2.What do you call a program in execution?

a)Process

b)Task

c)Command

d)Instruction

3.State the hexadecimal number system has .......... base.

a) 2

b) 8

c) 10

d) 16

4.Which of the following is not a valid string in Python?

a.“Hello” b. Hello' c."""Hello""" d.{Hello}

5.Name the series of eight bits is called

a) Bit

b) Byte

c) Number

d) Kilobyte

6.Trace a humanoid that uses artificial intelligence, visual data processing, facial recognition and also
imitates human gestures and facial expressions.

a. Rover

b. Sophia
c. Drone

d. None of the above

7.Examine the hexadecimal number of the decimal system of number 20 is

a)14

b)16

c)1A

d)A3

8.Construct binary representation of 8?

b)0001

c)1000

d)0011

9.Estimate the following binary number (110101)2 to octal number system?

a) 12

b) 65

c) 56

d) 1111

10.Which of the following is not an example of system software.

a)A Language Translator

b)Word Processors

c)Utility Software

d)Communication Software

11.The base values of binary, octal and hexadecimal are


a. 10, 80 and 160 respectively.

b. 4, 8 and 16 respectively.

c. 2, 8 and 16 respectively.

d. 1, 8 and 16 respectively.

12.Which of the following is not a valid identifier name in Python?

a) 5Total b) _Radius c) pie d)While

13.What will be the output on screen after executing: print (math. fabs (-6.4))?

a) -6.4 b) 6.4 c) 4.0 d) 5.0

14.Which of the following is the lowest in the computer memory hierarchy?

a) Cache

b) RAM

c) Secondary memory

d) CPU registers

15.Express hexadecimal to octal conversion, base 16 number should be changed to

a)base 2

b)base 8

c)base 10

d)base 3

16.Operating system is an example of

(a) Application Software

(b) System Software

(c ) Utility Program

(d) None of these

17.Illustrate the network of devices that have an embedded hardware and software to communicate
(connect and exchange data) with other devices on the same network.
a. Internet of Things

b. Big Data

c. Model

d. None of the above

18.Count the number of digits in the binary number system?

a) One

b) Two

c) Three

d) Four

19.What will be the output of the following Python function?

len(["hello",2, 4, 6])

a) Error

b) 6

c) 4

d) 3

20.What will the following expression be evaluated to in Python?

print(6*3 / 4**2//5-8)

(a) -10

(b) 8.0

(c) 10.0

(d) -8.0

21.What is the full form of ROM?

a) Read-Only Memory

b) Random Only Memory

c) Register Only Memory

d) Readable Only Memory


22.Identify removing errors that occur during a dry run of the algorithm

a) debugging

b) coding

c) testing

d) erros

23.Python programs are types in :

a) Interactive mode

b) Script mode

c) A combination of interactive and script mode

d) None of the above

24.Identify the valid declaration name=“Pooja”

a) List

b) Tuple

c) String

d) Dictionary

25.(A+B)' is equal to

a)A'+B' b)A'B' c)(AB)' d)A'+B

26.What will be the value of the following Python expression?

4+3%5

a) 7

b) 2

c) 4

d) 1

27.Who developed the Python Programming Language?

a) Guido van Rossum

b) Rasmus Lerdorf
c) Wick van Rossum

d) Niene Stom

28.Virtual Reality have been used in the field of __________

a. Military training

b. Psychology

c. Medical procedures

d. All of the above

29.Propose the following can be used to create comments?

a.//

b.#

C.””

d.”.....”

30.What is the function used to produce the output

a.print()

b.Seed()

c.sqrt()

d.Factorial()

31.Recognise that input() returns the value as _______ type

Integer

Float

String

complex

32.Relate the following and identify which escape character is used to give the space in the output
statement?

A.\t

B.\q
C.\y

D.\e

33.Describe that special meaning words of that python,fixed for specific functionality are called
_______________

a. keywords

b. Functions

C. identifiers

D. literals

34.Name which of the following are keywords?

a.name

B.print

C.print

d.while

35.Identify type casting in python?

a.Declaration of data type

b.Destroy data type

c.Change data type property

d.None of the above

36.Name Which of the following is not the example of typecasting?

a.int(5)

b.hello(5)

c.str("xyz")

d.float(10.5)

37.Trace output of the following statement: (30 SEC) (U)

>>>”a”+”bc”

What will be the output of this statement?


a. a+bc

b. abc

c. a bc

d. a

38.Predict Which of the following is not a keyword in Python language?

a. val

b. raise

c. try

d. with

39.list, tuple, and range are the ___ of Data Types.

a.Sequence Types

b.Binary Types

c.Boolean Types

d.None of the mentioned above

40.The % operator returns the ___.

a.Quotient

b.Divisor

c.Remainder

d.None of the mentioned above

41.Python Dictionary is used to store the data in a ___ format.

Key value pair

Group value pair

Select value pair

None of the mentioned above

42.What will be the output of the following Python code?


print("Hello {name1} and {name2}".format(name1='foo', name2='bin'))

a) Hello foo and bin

b) Hello {name1} and {name2}

c) Error

d) Hello and

43. What will be the output of the following Python code snippet?

print('The sum of {0} and {1} is {2}'.format(2, 10, 12))

a) The sum of 2 and 10 is 12

b) Error

c) The sum of 0 and 1 is 2

d) None of the mentioned

44.How to output the string “May the odds favor you” in Python?

a.print(“May the odds favor you”)

b.echo(“May the odds favor you”)

c.System.out(“May the odds favor you”)

d.printf(“May the odds favor you”)

45.How to create a variable in Python with a value 22.6?

a.int a = 22.6

b.a = 22.6

c.Integer a = 22.6

d.None of the above

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy