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.

2501.

Which feature of MS-Wor helps to create accurate business diagrams? (1)ShapesSmartArtWordArt​

Answer»

ANSWER:

SMART ART is the answer

2502.

please answer these one word following form computer chapter: (MS POWERPOINT 2010 EDITING AND FORMATTING SLIDES) please ans first give right answers then I will make your answer as brainlist answer and will follow you please anyone give​

Answer»

ANSWER:

a)

B)

C)

d)

EXPLANATION:

2503.

Which of the following is not a type of database ​

Answer»

Answer:

GIVE OPTIONS please winout options we can't able to answer of your questions

please mark my answer as BRAINLIST answer please

2504.

Which SQL command is used to display the records from a database table? (1)UpdateSelectInsert​

Answer»

ANSWER:

INSERT is the answer that I THINK

2505.

Is the buying and selling of goods and sentLook at theSocial NetwoGMis the process of sending messages from one person to another perallows numbers to reconnect with old friends, make new fromis a meeting between two (or) more people from different locationsis a regularly updated website (or) web page run by an individualeIntellectual Skill SheetPin the blanks1: Bamples of Emails arecome together with number of similar interestscomputer networks to transmit audio and video datais talking to other people who are onlineр(or) small group of people​

Answer»

ANSWER:

donnnttt knowwwwwwwwww

2506.

Google is a ....... engine​

Answer»

ANSWER:

GAE

Explanation:

Google APP Engine (OFTEN referred to as GAE or simply App Engine) is a Platform as a Service and cloud computing platform for developing and hosting web applications in Google-managed data centers. ... Google App Engine primarily supports Go, PHP, Java, Python, Node.

please MARK as brainlist

2507.

Write the names of three editors which support WYSIWYG​

Answer»

EXPLANATION:

The THREE EDITORS of wYSIWYG are:

1 Adobe Dreamweaver.

2 Amaya.

3 BlueGriffon.

2508.

Which of the following is not a data type in MS-Access 2010? (1)TextStringMemo​

Answer»

ANSWER:

string

Explanation:

MARK my ans as BRAINLIST please

2509.

1. Wap to print product of first ten numbers.​

Answer»

Answer:

Handwritten methods:

#just a helper METHOD to not have to write this more than once

DEF value_checker(n):

if isinstance(n, str):

TRY:

n=INT(n) #raises an ValueError

except ValueError:

return False

if not isinstance(n, int): return False

return n>=0

#recursive method

#the helping bool variable avoids running the valuecheck serval times

def fac_rec(n, valueChecked=False):

if valueChecked or value_checker(n):

return 1 if n==0 else n*fac_rec(n-1, True)

return "NaN"

#iterativ method

def fac_iter(n):

if value_checker(n):

r=1

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

r*=i

return r

return "NaN"

from functools IMPORT reduce

fac_lambda=lambda n:"NaN" if not value_checker(n) else reduce(lambda a, b:a*b, range(1, n+1))

Hope it helped u..✌️

2510.

When you burn cd, you are ___ songs form computer to cd​

Answer»

When you BURN CD you are SAVING your SONGS from COMPUTER to cd.          

2511.

Write steps to copy paragraph from one page it paste it on next page of the document​

Answer»
2512.

Name the type of chart that cannotdisplay the data in the form of x-axisand y-axisO Bar chartO Pie chartO Column chartO None of these​

Answer»

ANSWER:

OPTION C) COLUMN chart

hope it will HELP you

2513.

The block to add two numbers are located under the _______ block menu​

Answer»

ANSWER:

VARIABLE BLOCKS

Explanation:

mark me as brainlist

2514.

What do you Understand by publishing video in Window Movie Maker?​

Answer»

ANSWER:

what????????????? KYA BHAI kya kehe RAHA HAI

2515.

Who many types of computer are there​

Answer»

Answer:

There are SEVEN types of Computer 1 Supercomputer 2 Mainframe 3 Microcontroller 4 Server Computer 5 Personal Computer 6 Workstation computer 7 smartphone. There are FOUR Different Computer Types We have four different computer types classified ACCORDING to their performance, power, and size.

2516.

Define five different types of function with their examples ​

Answer»

Answer:

\large\mathbb{\underbrace\purple{ANSWER}}

TYPES of Functions

  • MANY – one function.

  • Onto – function (Surjective Function)

  • Into – function.

  • Polynomial function.

  • Linear Function.

  • Identical Function.

  • Quadratic Function.

2517.

______ number system we use digits from 0 to 7​

Answer»

Answer:

WHOLE number

Explanation:

if my answer is CORRECT plsss make me as a brillence STAR

and follow me and TAKE follow back

2518.

Can you give examples?

Answer»

Explanation:

EXAMPLE of an e-mail is a HAPPY BIRTHDAY message a PERSON sends from their Yahoo account to their mom at her Gmail account. NOUN

2519.

What requires human to run​

Answer»

ANSWER:

OXYGEN , ENERGY.........

2520.

मीनिंग ऑफ सिग्निफी एप्समीनिंग ऑफ सिग्निफी गेम्स​

Answer»

ANSWER ☺️

The word app is a noun, and it's SHORT for “application.” Application in this case refers to a software application — in other words, an app is a software program. But an app is not just any OLD software program — it's a SPECIAL type of software programs.

2521.

Which bar displays the contents of a cell in a worksheet

Answer»

Answer:

The FORMULA BAR displays the CONTENTS of the active cell.

2522.

How can we mark a answer as brainliest????please answer as fast as you can...

Answer»

ANSWER:

when 2 people gives U answer the brainliest mark is there on the top of ANSWERS

2523.

Friends write g. k Question​

Answer»

ANSWER:

OK.....................

2524.

X-axis is the horizontal axis. True of False​

Answer»

Answer:

hey mate......here is your answer you are SEARCHING for........

True

hope it helps you........please THANK my answer and mark as brainliest if it was helpful.......

And also follow me to get FOLLOWED..........

2525.

Option places the selected text slightly above the baseline.​

Answer»

Answer:

The Superscript OPTION places the SELECTED text slightly above the baseline. On the contrary, the Subscript option places the selected text slightly below the baseline and makes it appear SMALLER than the rest of the text.

2526.

Refer to the positioning of text on a page​

Answer»

Answer:

Answer: Align text left or right, center text, or JUSTIFY text on a PAGE. ... VERTICAL alignment determines the POSITION of the text within a section of a document RELATIVE to the top and bottom margins, and is often used to create a cover page.

2527.

6. Write the following if...else statement using the conditional operaif (x = = 100)a = "x is 100"elsea = "x is not 100"​

Answer»

ANSWER:

X == 100 ? a = "X is 100" : a = "X is not 100"

EXPLANATION:

This is the CORRECT answer

Hope you understand

Thank You

2528.

B. Write T (True) and F (False) against each statement :1. All the activities of a computer are controlled by the operating system2. We can run only one program at a time in Windows 7.3. The taskbar can be dragged to any side of the desktop.4. Windows is a graphical user interface software.5. Computer has an inbuilt clock.6. Recycle Bin stores the deleted files and folders.​

Answer»

Answer:

1. t

2. t

3. f

4. t

5. f

6. t

Explanation:

PLZ follow me..........

2529.

tick the correct options 1 the font size box is available on the tab. (a) insert (b) font (c) home (d) none of these​

Answer»

ANSWER:

Home Tab.

Explanation:

It is Home tab because the insert tab is USED for inserting THINGS such as tables.

Please MARK me BRAINLIEST.   :)

2530.

Which of the following contains the start button, shortcut to application, the dateand time option ?(a) Taskbar(b) Folder(c) Recycle Bin(d) Sub folder​

Answer»

ANSWER:

a)Taskbar

Taskbar contains the start button, shortcut to application, the date

and time OPTION.

2531.

Define table name any two element of it

Answer»

EXPLANATION:

i HOPE it's HELP you..........

2532.

1. A folder within a folder is called(a) file(c) sub folder(b) icon(d) menu​

Answer»

ANSWER:

C) SUB FOLDER

2533.

The softwares which are used by operating system to communicate with I/O devices:-- Mark (2)DriversDrivesApplicationSystem​

Answer»

ANSWER:

SYSTEM, Application

Explanation:

2534.

1. The shortcut key to copy a folder is(a) Ctrl + V(C) Ctrl + C(b) Ctrl + X(d) Ctrl + N​

Answer»

ANSWER:

CTRL +C is RIGHT answer

2535.

Direction is an attribute of _____tag​

Answer»
2536.

1. Which of the following is not a component of Windows ?(a) Icon(b) Taskbar(c) Screen saver(d) Printer​

Answer»

ANSWER:

C is the right answer PLEASE Mark me brainliest

2537.

The application which are currently run bydisplayedprogoammer anal menu barb) Desktop© Task barD) All of these ​

Answer»

D........... fjrhhdjjejd

2538.

Name any 5 options available in Rows and Columns group in Microsoft Word 2016​

Answer»

Answer:

A WORD table can contain as MANY as 63 COLUMNS but the NUMBER of rows is unlimited.

2539.

On what is paragraph spacing ​

Answer»

euteyjyujijy dgjjnydgdj jndmhehmehm gjmrhmyj egjnrgsnthnbetbwnethehnsnfsh nsgneg

2540.

What is formatting ​

Answer»

ANSWER:

ESPECIALLY in computing) ARRANGE or PUT into a format.

2541.

State True or False:1. The storage capacity of Google Drive cannot be increased beyond 15 GB.2. The files stored on Google Drive can be easily accessed from a computer having Internet connection. 3. To use Google Drive, the user is required to have a Google account.4. You cannot create a folder in Google Drive.5.A file once deleted, cannot be restored in Google Drive.​

Answer»

Answer:

1.FALSE

2.TRUE

3.true

4 true

5 false

2542.

Ramesh's basic salary is input through the keyboard. Hisdearness allowance is 40% of basic salary, and house rentallowance is 20% of basic salary. Write a c program to calculatehis gross salary.​

Answer»

ANSWER:

kysmgJtzmgzktEb

Explanation:

ludlyBdaeajtslixhzmyxluxluslysotaktakysox

2543.

Storyboard is also known asa) mountaining area. b) trekking areac) drawing fieldd) none of above answer correctly ​

Answer» TREKKING AREA THANK U
2544.

Give two examples of block in the motion category ​

Answer»

Answer:

MOTION blocks include the following types of motion:

Moving SPRITES.

Turning sprites.

Making sprites point in a given DIRECTION or towards each other.

Making sprites move to a given point on the stage, to another SPRITE or the mouse pointer.

2545.

Name the bars or slices that represents the data value on the chart​

Answer»

Answer:

A chart is a GRAPHICAL representation of data, in which "the data is represented by SYMBOLS, such as BARS in a BAR chart, LINES in a line chart, or slices in a pie chart".

Explanation:

2546.

1.gives the special effects like shadows and 3D to the typed text.(b) WordArt(c) Ctrl + Shift + < (d) Ctrl + Shift + >(a) Font​

Answer»

ANSWER:

i don't KNOW the answer

2547.

Anyone please provide me pdf if questions and answer of chapter python programming...​

Answer»

ANSWER:

Python is an interpreted, high-level and general-purpose programming language. Python's DESIGN PHILOSOPHY emphasizes CODE readability with its notable use of significant WHITESPACE.

2548.

Describe Viruses in one line​

Answer»

ANSWER:

A VIRUS is a submicroscopic infectious AGENT that REPLICATES only inside the living CELLS of an organism.

Explanation:

2549.

व्हाई इज वोटिंग इंपॉर्टेंट इन इलेक्शन प्रोसेस ​

Answer»

EXPLANATION:

yifc57cugvjj 46can ⁹has EDGED 9boyd tfcg7vfc5dxvtdfyghhv576vuvg5fxydcf6vf66xx6x6ccf6xcccg77hijij7jujijijijijijijijijihj7h7huhuhuijihihuhuuhuhhhh

9fx57dc0hbu09v5,yvppc5yvppc5z64x04szr6b7f sx0ho 8yzt7xboh 7 0ybhv57dxyyvfct7x8yhi ighh

2550.

Ink bottel tool is used to change the fill colors​

Answer»

Answer:The paint bucket tool is USED to fill COLOR in any CLOSED picture whereas the Ink Bottle Tool is used to SWITCH the color and style of a figure. Explanation: The Ms-paint or Microsoft-paint in Windows CONTAINS various tools to make draw pictures.