Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

13051.

Which excel displays the error value when a formula is not spelt correctly?​

Answer»

ANSWER:

it is #Ref

so the answer is above

13052.

Do we have society law and ethics in class 12 python for exam 2020 2021​

Answer»

ANSWER:

No

Explanation:

This is OMITTED in this BOARD PAPER

13053.

When STEP attribute is not mentioned in the program it is considered asplease give one word answers it is name the following ​

Answer»

Answer:

when STEP attribute is not MENTIONED in the program it is considered as

please GIVE one word answers it is NAME the following

13054.

What could be the shortest as well as easiest approach in solving the given pattern? (See the attachment)Language: Python. Explain your answer.​

Answer»

\underline{\underline{\maltese\:\:\textbf{\textsf{Question}}}}

  • What could be the shortest as well as easiest APPROACH in solving the given PATTERN ? \sf{(R}\mathfrak{efer\:\: in\:\: Attachment - 1)}

\underline{\underline{\maltese\:\:\textbf{\textsf{Conditions}}}}

  • Need Shortest and Easiest Approach in Solving the Given Pattern
  • Language to be USED : Python

\underline{\underline{\maltese\:\:\textbf{\textsf{Algorithm}}}}

\tt{1.} Read INPUT(n).  

\tt{2.} find spaces using formula : 2*n-2

\tt{3.} for i in range(0, n), do:  

  •    print spaces and the string.
  •    If i%2
  •        then c = A
  •        ELSE c = B

\tt{4.}str=c+' '+str+' '+c

\tt{5.} spaces-= 2

\underline{\underline{\maltese\:\:\textbf{\textsf{Required Program}}}}

n = int(input("Enter the number of rows:"))

spaces = 2 * n - 2

str = 'A'

for i in range(n):

  • print(spaces*' '+str)
  • c = 'A' if i % 2 else 'B'
  • str = c+' '+str+' '+c
  • spaces-= 2

print("[Program finished]")

\underline{\underline{\maltese\:\:\textbf{\textsf{Out Put}}}}

  • For the Output of the above Program, \sf{(R}\mathfrak{efer\:\: in\:\: Attachment - 2)}      
13055.

24. The types of Linuxdistributions are in a numberapx of:O A) 600O B)500O c) 200O D) 100​

Answer»

ANSWER:

घो

Explanation:

ऑक्स वा वा को हों वा वगू है कि इस बार वो मेरे से दो लाख डॉलर इतिहास में यह वो बोली आज ही नही कर सके इसी बात कह सकता इस एक्स वाइफ से दोस्त क्योंकि आपके पास झेजबर उ ने अपनी फिल्म से दोस्त क्योंकि यह नहीं

13056.

_________ button takes you to previously viewed folder​

Answer»

ANSWER:

PREVIOUS button

Explanation:

i HOPE DEAR ❣️

13057.

Mouse and keyboard are input devices whereas trackball and OCRs are not true or false​

Answer»

MOUSE and keyboard are INPUT DEVICES whereas TRACKBALL and OCRs are not is TRUE.

13058.

What are tokens in Python? Name the types of tokens which are allowed in Python?​

Answer»

Answer:

Tokens are the smallest ELEMENTS of a program, which are meaningful to the compiler.

There're 5 types of tokens allowed in Python.

Which are-

Keywords : for, del, ELIF, else etc.

Identifiers : Variable names LIKE balance, class names like Vehicle etc.

Literals : String, Numeric, Boolean like ‘abcd’, NONE etc.

Operators : UNARY, Binary, Bitwise like ‘+’, ‘&’, ‘^’ etc

Punctuators : Symbols like ‘#’, ‘(‘, ‘[‘, ‘=’ etc.

Explanation:

It just try to explain theory base form.

13059.

The screen mode that support only text not graphics is called ​

Answer»

\huge\boxed{\fcolorbox{red}{pink}{❥Answer}}

\sf{\underline\blue{verifiedAnswer:-}}

Text mode is a mode of a software program where only text is DISPLAYED. ... For EXAMPLE, a USER may set their Internet BROWSER to only display text and no IMAGES.

13060.

How are dictionaries different from Lists?​

Answer»

ANSWER:

A LIST is an ordered sequence of objects, whereas dictionaries are unordered sets. HOWEVER, the main difference is that items in dictionaries are accessed via keys and not via their POSITION. ... The values of a dictionary can be any TYPE of Python data. So, dictionaries are unordered key-value-pairs.

Explanation:

hope it is helpful for you

have a nice day

13061.

The screen mode that support only text not graphics is called​

Answer»

Answer:

Text MODE is a mode of a software program where only text is DISPLAYED. For example, a USER may set their Internet browser to only DISPLAY text and no images

13062.

For i in [ 2,4,6,8] : print(i//2)write it's output..plz ans fast​

Answer»

REQUIRED Answer:-

Given c∅de:

for i in [2,4,6,8]:

PRINT(i//2)

To FIND:

  • The output of the given c∅de.

Output:

1

2

3

4

Explanation:

The above loop iterates through the list - [2,4,6,8]. After each iteration, it displays the QUOTIENT obtained when each number in the list is DIVIDED by 2.

// operator is used in floor division. 2//2 = 1, 4//2 = 2 and so on.

So, it prints the values of 2//2, 4//2, 6//2 and 8//2.

Therefore, output goes like -

1

2

3

4

13063.

Which screen modes support only black and white colours​

Answer»

ANSWER:

If you activated Wind down mode, DISPLAYED COLORS on the screen are black and white tone. You can ACTIVATE Wind down mode to reduce eye strain before SLEEPING and prevent your sleep from being disturbed.

13064.

Universal middleware bridge architecture ________ converts the physical device into the virtual abstracted oneUMB CoreUMB adaptorUMB handlerUMB manager​

Answer»

ANSWER:

UMB core

Explanation:

13065.

When the step attribute is not mentioned in the program it is considered as _____​

Answer»

EXPLANATION:

INVALID is the ANSWER.

#HOPE it HELPS

13066.

How do we create dublicate Sprite in computer​

Answer»

Answer- CREATE Clone of () BLOCK

Explanation:

The Create Clone of () block is a control block and a stack block. It creates a clone of the SPRITE in the argument. It can also clone the sprite It is RUNNING in creating clones of clones,

Please Mark Me as Brainliest (●♡∀♡)

13067.

The screen mode that supports only text not graphics is​

Answer»

Explanation:

Text MODE is a computer display mode in which content is INTERNALLY represented on a computer screen in terms of characters rather than individual pixels. Typically, the screen consists of a uniform rectangular grid of CHARACTER cells, each of which contains one of the characters of a character set.

13068.

For i in range (5,10) : print ( i*5)Write it's output​

Answer»

Required Answer:-

CORRECT Question:

WRITE the OUTPUT of the GIVEN c∅de in Python,

for i in range(5,10):

print(i*5)

Output:

25

30

35

40

45

Explanation:

  • The above loop iterates in the range i = 5 to (10 - 1) [One value less than the given value. ] As the third parameter is not given, it will automatically be considered as 1.

  • So, it prints 5 times the value of i in range 5 to 9 i.e, 25 to 45. After displaying the result, a new line is displayed.
13069.

B.)class TestTpublic static void main(String[] args)for (int i = 0; i++) {System.out.println("Hill");}System.out.println("BYE");​

Answer»

ANSWER:

HII is PRINTED infinity in NEW line

13070.

QUESTION 6The charts shown thebetween the elements ofdataO InsertO ColumnsO Relationship​

Answer»

ANSWER:

INSERT is the answer.

HOPE IT HELPS YOU

13071.

Does 6 LoWAPN allow interoperability between IEEE 802.15.4 based wireless devices​

Answer»

ANSWER:

234 is the CORRECT answer

EXPLANATION:

HOPE it's HELPS you

13072.

معمر علي5. ooh stands for object orientest​

Answer»

ANSWER:

fgfd bribery h gd DVD y vs TV tr ere ga SURESH JD ECHR FC ve DC

13073.

Express 512 in binary number system​

Answer»

ANSWER:

1000000000 is the answer

13074.

Which of the following is not an inbuilt function of servo library sweep() knob ()move()​

Answer»

Answer:

MOVE()

EXPLANATION:knob(),sweep(),read(),WRITE() are the functions available in SERVO library where as move() is not there.

13075.

FreeAt has one incoming and two outgoingflow lines​

Answer»

ANSWER:

what to do BRO PLEASE TELL the QUESTION again

13076.

Is this is the valid declaration of the array in Java.int arr_name[][] = new int[][] {new int[] {10, 20, 30 ,40};new int[] {50, 60, 70, 80, 90, 100};new int[] {110, 120};};TrueFalse

Answer»

EXPLANATION:

FALSE

PLEASE MARK me as BRAINLIST

13077.

Which input method is better. touchscreen, mouse or digital pen??? explain within your own words​

Answer»

Answer:

MOUSE

Explanation:

If we are using TOUCH SCREEN we have to use our fingers to use it if more use of screen is there our fingers will be damaged

If we are using digital pen so we have to have close contact with the screen so this spoil our EYES

If we are using mouse we can stay at some distance and we can use the COMPUTER It will not spoil over eyes and fingers also .

13078.

Restful Web services are utilised for​

Answer»

\huge\boxed{\fcolorbox{red}{pink}{❥Answer}}

RESTFUL WEB services are loosely coupled, lightweight web services that are particularly well suited for creating APIs for clients SPREAD out across the internet. ... In the REST architecture style, clients and SERVERS exchange representations of RESOURCES by using a standardized interface and protocol.

13079.

GIVE THE CELL RANGE FROM COLUMN AD ROW 25 TO COLUMN AF ROW 30

Answer»

EXPLANATION:

the REPETITION RATE is the HTML5

13080.

Decribe the working if mouse​

Answer»

Answer:

An OPTICAL MOUSE WORKS in a COMPLETELY different way. It shines a bright light down onto your desk from an LED (light-emitting diode) mounted on the bottom of the mouse. The light bounces straight back up off the desk into a photocell (PHOTOELECTRIC cell), also mounted under the mouse, a short distance from the LED.

13081.

Class 7 computer charter 4 questions and answers​

Answer»

ANSWER:

PLS POST the QUESTION ALSO.

13082.

Print(10%2) what will be the output..plz and.it fast....​

Answer»

Answer:

0

Explanation:

% GIVES the REMAINDER...which in this CASE is 0

13083.

Explain Blast and its variants in detail​

Answer»

ANSWER:

i DONT KNOW soryyyyyyyyyyyyyyyy

13084.

What is the difference between repeat until and forever blocks in scratch?

Answer»

Answer:

The repeat until block is a LOOP, just like the FOREVER block. Each time through the loop, the program checks the Boolean block. If the block is false, the program repeats the BLOCKS inside the loop. If the block is true, the program skips the blocks inside the loop and moves on to the NEXT statement in the program.

13085.

One word answer creations of others in solicitud commercial email is know as dash​

Answer»

ANSWER:

xhdbhrjfjrjrjrjriogiicfbhfiisjrfbfdbooendjdjdnfnnsnd ahshsbfjxdidofofij

13086.

Consider the following listList1=[2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19]Write commands for the following: i. Add 20 at lastii. Insert 4 at third positioniii. Sort the elements of the listiv. Count how many times 6 is availablev. Delete all elements from 3rd to 9th positionvi. Delete 11 from the listvii. Search the position of 13 in the listviii. Find the maximum value of the list ix. Find the length of the list x. Delete all the elements of the list​

Answer»
  1. LIST1.append(20)
  2. list1.insert(3,4)
  3. list1.sort()
  4. list = list1.count(6)
  5. DEL list1[3:9]
  6. list1.remove(11)
  7. list = list1.index(13)
  8. list = max(list1)
  9. list = LEN(list1)
  10. list1.clear()

13087.

The hard ware device that finds the shortest path betweentwo networks is___________ ​

Answer»

Answer:

your help and SUPPORT you in whatever way you can GET a RIDE to the AIRPORT

13088.

WAP in python to display the following pattern using nested loop: A B A B A B A B A B A B A B A B A B A B A B A B A​

Answer»

Answer:

This is the required Python program for the question. It works for any NUMBER of rows.

n=int(input("Enter the number of rows: "))

x, y=65,1

for i in range(1,n+1):

for j in range(n-i):

PRINT(" ",end="")

for k in range(2*i-1):

print("%c"%(x),end=" ")

x,y=x+y,-y

print()

Explanation:

  • Three loops are created. Outer loop is for printing the rows. Inner loops are for printing the spaces and columns.

  • The outer loop iterates n times where n is the row number so that it can print n rows of the pattern.

  • First inner loop is used for displaying the spaces. After each iteration of this loop, two spaces are added.

  • Second inner loop is used for displaying the characters. We can see that the loop displays the character whose ASCII VALUE is x. ASCII value of 'A' is 65. So, it prints A. Now, value of x is incremented by 1 so as to get character B for the next round of iteration. At the same time, y is multiplied by -1 so as to get the character 'A' back after displaying the character 'B'. So, it goes in an alternate fashion, it prints characters whose ASCII values are 65, 66, 65, 66 and so on.

  • After displaying the pattern for each row, a new line is displayed.

See the attachment for output ☑.

13089.

Explain with syntax the various iteration statements used in Python. ​

Answer»

Answer:

In Python, the iterative statements are also KNOWN as looping statements or repetitive statements. The iterative statements are USED to execute a part of the program REPEATEDLY as LONG as a given CONDITION is True.

13090.

Write a program to calculate root of a quadratic equation in JavaScript​

Answer»

Answer:

Example: Roots of a QUADRATIC Equation

Output 1 Enter the first number: 1 Enter the second number: 6 Enter the THIRD number: 5 The roots of quadratic equation are -1 and -5. ...

Output 2 Enter the first number: 1 Enter the second number: -6 Enter the third number: 9 The roots of quadratic equation are 3 and 3.

13091.

Name of variable can contain a maximum of 80 characters​

Answer»

ANSWER:

dcreww3rewtee

Explanation:

13092.

The_________ identifies a particular machine on aParticular network.​

Answer»

Answer:

the___IP address act ___

identifies a particular MACHINE on a

Particular NETWORK.

Explanation:

An IP (Internet Protocol) address is a numerical label assigned to the devices CONNECTED to a computer network that uses the IP for communication. IP address act as an identifier for a specific machine on a particular network. It ALSO HELPS you to develop a virtual connection between a destination and a source.

13093.

Convert 4FE from base 16 to base 2

Answer»

Answer:

4FE16 in decimal

=

127810

13094.

Ans1.What is a backdrop?​

Answer»

HERE IS YOUR ANSWER FRIEND:

What is a backdrop?

ans: a painted PIECE of MATERIAL that is hung behind the stage in a theatre as PART of the scenery

HOPE IT HELPS YOU FRIEND..

PLEASE MARK ME AS BRAINLIST..

13095.

Q.7)The organizational Communication presumes: (1 marks )Ans.available communication channelTask specializationInternal control systemAll​

Answer»

ANSWER:

bbbbhhhvgyuuuffdddkkkkk

13096.

When step it is not mentioned in the program it is considered as_______​

Answer»

ANSWER:

When STEP is is not mentionef in the PROGRAM it is CONSIDERED as TRUE.

13097.

write a c++ program to define a class"city" having data member name.popualation .accept and display data for 10 cities

Answer»

ANSWER:

c++

Explanation:

IDK

13098.

Q.3)is a statement about the unknown made on the basis ofknown. (1 marks )Ans.BypassingInferenceintensional KnowledgeNone​

Answer»

Answer:

the diameter of the VERTICAL angle if you are not FILTERED into the diameter the diameter a TV SHOW that your guild

13099.

Find output for loop S=0;1.for (i= 1; i

Answer»

The OUTPUT is 3 ( THREE )

13100.

Predict the output of the following python program:num,sum=10,0for i in range(1,num+2,2):if i % 3 == 0:continue sum =sum + iprint(sum)

Answer»

Output:

1

6

13

24

Explanation:

num, sum = 10, 0

for i in range(1, num+2, 2):

   if i%3==0:

       continue

   sum=sum+1

   print(sum)

Here, num is initiated with 10 while sum with 0.

The looping range starts from 1 and ends with num+2 i.e., 10+2=12 [12 is excluded], with the gap of 2.

i.e., iteration goes on as [1, 3, 5, 7, 9, 11]

Now, the iterable value that is exactly divisible by 3 leaving remainder 0 will pa-ss the CONTROL to the next iteration directly, leaving the execution on the next statements due to the TRIGGERING of the continue statement.

1%3 is not equal to 0. So, sum = 0 + 1 => sum=1 and 1 is printed.

3%3==0. So, the loop directly goes for the next iteration, the sum remains 1.

5%3 is not equal to 0. So, sum = 1 + 5 => sum=6 and 6 is printed.

7%3 is not equal to 0. So, sum = 6 + 7 => sum=13 and 13 is printed.

9%3==0. So, the loop directly goes for the next iteration, the sum remains 13.

5%3 is not equal to 0. So, sum = 13 + 11 => sum=24 and 24 is printed.

Therefore the output is:

1

6

13

24

Learn more:

1) def find_max(nums):max_num float("-int") # smaller than all other numbersfor num in nums:if num > max_num:# (Fill in the missing line here)return...

brainly.in/question/35049689

2) The_________ is used to perform CERTAIN operations for a fixed number of times. 1) IF...ELSE2) WHILE LOOP3) NESTED IF...ELSE4) NONE OF THESE

brainly.in/question/36467283