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.

10751.

{Class-9th computer book lesson-1 (cyber beans)}Give a real life example of RAM and ROM?​

Answer»

Answer:

Real life example of a ROM is in the latest generation smartphones. The internal storage of a SMARTPHONE is based on ROM like 16GB, 32GB, etc. Real life example of a RAM is in your desktop computers, laptops or phones. NOWADAYS, The RAM in desktops or laptops can vary from 4GB to 64GB of RAM.

10752.

Type of data used to represent 33456 students in school

Answer»

ANSWER:

answer..................... '.''.'.'

10753.

It is not possible to modify a chart once it is created

Answer»

ANSWER:

true

Explanation:

10754.

Use of formatting features name such three features

Answer»

Answer:

the formatting feature change the arrangement or layout of page. these features include ALIGNING text vertically and HORIZONTALLY, INDENTING and HYPHENATING text and changing margin and line SPACING

10755.

Predict the outputint a = 6, b=5,c;c = (a++ % b++)* a + ++a *b++;Right answer with step by step explanationI will mark u as brainliest and you’ll get 45 points

Answer»

\huge\underline\bold\red{AnsWeR}

10756.

2. Predict the outputint a = 6, b=5,c;c = (a++ % b++)* a + ++a *b++;

Answer»

Answer:

C=55 is the RIGHT answer.

Explanation:

c = (a++ % b++) *a + ++a*b++

c = (6 % 5) * 7 + 8 * 6

c = 1 * 7 + 8 * 6

c = 7 + 48

c = 55

10757.

Multiple choice questionshow much space does the TIME data type hold in base ? a.2bytes b.4bytesc.8bytes​

Answer» HOPE this HELPS U
4 BYTES
10758.

Write steps for printing labels in OpenOffice​

Answer»

Answer:

  1. Click 'File' in open office. Writer's main menu bar.
  2. Click 'Need in the drop-down menu.
  3. Click 'Labels' in the subsequent drop-down menu.
  4. Click the 'Label's tab in the 'Labels' pop-up window.
  5. Click the button NEXT to continues or sheet in the format section of the window to select either continues, pin-fed labels or single sheet format.
  6. Click the down-arrow in the 'Brand's text entry box and then click on the brand of label you are using to select it.
  7. Click the down-arrow in the 'Type' text entry box to view a list of AVAILABLE print definitions for your label brand.
  8. Click the proper size or product number to select the label size format.
  9. MOVE the cursor to the label text field and click in the empty text box.
  10. Enter the address you want printed on the label.
  11. Click the 'Options' tab.
  12. Click the box next to the 'Synchronize CONTENTS' enter to copy the entry in the label text box to the entire sheet.
  13. Click the File in the main program menu.

14. Click print in the drop-down menu..

Hope this answer HELPFUL for u

10759.

Document templates are available in which options

Answer»

ANSWER:

idk

Explanation:

10760.

The elected text can be shifted 1/2 inch away from the left margin using dash button.

Answer»

Explanation:

The theory of Forms or theory of Ideas[1][2][3] is a philosophical theory, concept, or world-view, attributed to Plato, that the physical world is not as real or true as timeless, absolute, unchangeable ideas.[4] According to this theory, ideas in this sense, OFTEN capitalized and translated as "Ideas" or "Forms",[5] are the non-physical essences of all things, of which objects and matter in the physical world are merely imitations. Plato speaks of these ENTITIES only through the CHARACTERS (primarily SOCRATES) of his dialogues who sometimes suggests that these Forms are the only objects of study that can provide knowledge.[6] The theory itself is contested from within Plato's dialogues, and it is a general point of controversy in philosophy. Nonetheless the theory is considered to be a classical solution to the progggvhuhh 0blem of universals.........

10761.

Style set allow us to format all the elements of our document

Answer»

Explanation:

Style SETS ALLOW you to format all elements in your document at once instead of modifying each element separately.

  • From the Design tab, click the More drop-down arrow in the Document Formatting group. ...
  • Choose the desired style set from the drop-down MENU. ...
  • The selected style set will be applied to your ENTIRE document.

mark as brainliest...

10762.

Examples of printers correction signs

Answer»

plotter

laser PRINTER

ink printer

10763.

I go blocked from my account. What should i do. I thinks i am a robot for some reason.

Answer»

Answer:

u r a ROBOT??

EXPLANATION:

HAHA

10764.

Shift key is used to move down to a new line true or false

Answer»

Answer:

this is true because Shift key is used to MOVE down to a NEW line

Explanation:

I HOPE this is HELPFUL to you

10765.

State teue or false :Formulas must begin with ? Sign

Answer»

ANSWER:

True

Explanation:

Formulas MUST begin with a SIGN to understand

10766.

{Class-9th computer book lesson-1 (cyber beans)}Name the two types of primary memory?​

Answer»

Answer:

\huge\underline\mathfrak\color{blue}answer..

Primary Memory TYPES:

RAM and ROM

There are two key types of primary memory: RAM, or RANDOM access memory. ROM, or read-only memory.

10767.

Which among the following displays the selected fields1. query design 2. select query3. both​

Answer»

Answer:

SELECT QUERY

Explanation:

A select query is a database object that SHOWS information in Datasheet view. A query does not store data, it displays data that is stored in tables. A query can show data from one or more tables, from other queries, or from a COMBINATION of the two.

please mrk me as the brainlest

10768.

What do you mean by decomposition and dependencies preservation explain?​

Answer»

EXPLANATION:

Decomposition of a relation is done when a relation in relational model is not in appropriate normal form. Relation R is DECOMPOSED into two or more relations if decomposition is lossless JOIN as well as dependency preserving.

mark as brainliest....

10769.

Write the HTML code for the following:a) The largest size heading , ROTARY PUBLIC SCHOOLb) Two lines break after the paragraphc) To create unordered list of grocery itemsd) To create ordered list of stationery itemse) Background color of webpage is Aquaf) Text with font size 5 font style Times New Roman​

Answer»

Answer:

Brainliest Please

Explanation:

a)

ROTARY PUBLIC SCHOOL

b)

This is a PARAGRAPH



c)

  • Rice
  • Cereal
  • Grain

d)

  1. Book
  2. Pen
  3. Copy

e)

Something is here

F)

Dummy Text

10770.

Fill in the gaps in the initials function so that it returns the initials of the words contained in the phrase received, in upper case. For example: "Universal Serial Bus" should return "USB"; "local area network" should return "LAN”. def initials(phrase): words = phrase.upper result = "" for word in words: result += words return result print(initials("Universal Serial Bus")) # Should be: USB print(initials("local area network")) # Should be: LAN print(initials("Operating system")) # Should be: OS

Answer»

ANSWER:

def INITIALS(phrase):

   words = phrase.split()

   result = ""

   for word in words:

       result += word[0].upper()

   return result

Explanation:

For a long name, we need to split it into separate elements to GETS its first letter. The different words in phrase variable is splitted and is stored in words variable. Then for every word in words, we TAKE the first letter(INDEX starts from 0 in python) and changes it to upper case.

10771.

What is number system? ​

Answer»

Answer:

A numeral system is a WRITING system for expressing numbers; that is, a mathematical NOTATION for representing numbers of a given set, using digits or other symbols in a consistent manner. The same sequence of symbols MAY represent DIFFERENT numbers in different numeral systems

10772.

Multiple choice questions.1. What storage space does the Tiny Integer data type occupy in a base table?(a) I byte(b) 2 bytes(c) 4 bytes2. How much space does the TIME data type hold in Base?al2 bytes(b) 4 bytes(c) 8 bytes3. How much space does the Bigint data type hold in Base?(a) 4 bytes(b) 8 bytes(c) 6 bytesanswer fast plz ​

Answer»

EXPLANATION:

  1. a
  2. c
  3. d..........m..............
10773.

Int res='g' what is the value of resPlzz answer fast plzzz​

Answer»

65

is the VALUE of res

Pls MARK as BRAINLIEST if you LIKED it

TQ

10774.

serve the magic potion in equal quantity. get as input quantity and number of people to be served. write the python code pls answer

Answer»

ANSWER:

HOPE it HELPS you my DEAR FRIEND

10775.

Formula and function computer syber beans chapter 2 class 7​

Answer»

Answer:

\huge\underline\mathfrak\color{blue}answer..

Primary MEMORY Types: RAM and ROM

There are TWO key types of primary memory: RAM, or RANDOM ACCESS memory. ROM, or read-only memory

\huge\underline\mathfrak\color{green}follow..me

10776.

Fill in the blanks The size of the font is measured in ---- .(2) Once the text is formatted, it is viewed in the ----- box of the font dialogue box ​

Answer»

ANSWER:

ljfgkxg

Explanation:

mJrstkdgizfnz

10777.

geetu is a researcher. she post her research work in form of text on the internet. one day she came to know that Shreyas has used his research work in his research work. has shreyas done the right thing? which right of Geetu has he infringed?​

Answer»

EXPLANATION:

{♡Hi Brainliacs♡}\huge\mathbb\blue{\underline{\underline{Follow Me}}}

\huge\purple{Help Needed}

10778.

Name two plugins..........

Answer»

ANSWER:

F U C K you....

Follow me

10779.

My name resembles an animal. I cause loss and sometimes theft or data

Answer»

ANSWER:

then your GOOD name is hard disk

mark this ONE as brainlist

☺️☺️

10780.

All the numbers used in mathematics for solving diffrent task are

Answer»

ANSWER:

Operations

Explanation:

All the numbers used in mathematics for SOLVING DIFFRENT TASK are operations

10781.

2.is used for the purpose of eavesdropping.a) Spamb) Virusc) SpywareO d) Trojan​

Answer»

ANSWER:

The CORRECT OPTION is (C) SPYWARE.

10782.

Let’s say you are a member of a campus business club, such as the Society for the Advancement of Management (SAM), the Finance Association (FA), or the Association of Information Technology Professionals (AITP). Your organization has managed its finances well, and therefore, it is able to fund monthly activities. However, membership dues are insufficient to cover any extras. a. Identify a need such as a hardware or software purchase, a special

Answer»

EXPLANATION:

Let's say you are a member of a campus business CLUB, such as the Society for ... Your club or ASSOCIATION has managed its FINANCES well, and therefore. it ..

10783.

E:D7. Ravi by mistake pressed Delete key and found that his file was deleted fromdesktop. He is very depressed. Can he get his file again? If yes, where from? orCf​

Answer»

EXPLANATION:

BURN out the EMAIL to you to SEE if I am GOING

10784.

Fill in the blanks The size of the font is measured in ---- ,Once the text is formatted, it is viewed in the ------- box of the Font dialogue box​

Answer»

ANSWER:

SORRY I can't UNDERSTAND the QUESTION....

10785.

Left click,right click, dragging, typing which one is odd​

Answer»

ANSWER:

Here is Ur answer mate❤️

Explanation:

Typing

____________

HOPE it helped. MARK brainliest

10786.

______________ Icon gives us a view of available drives and their contents stored on the computer system

Answer»

Answer:

How to use My COMPUTER. Once My Computer (This PC) is open, you will see all available drives on your computer. The primary location of all your files is the Local Disk (C:), which is the default hard DRIVE that STORES all files. Double-click this drive icon to open it and view its contents

10787.

Two web apps cannot share the same web hosting plan.​

Answer»

not UNDERSTAND this QUESTION PLZZ EXPLAIN again

10788.

A _________________occurs when multiple processes access and change the same data at the same time.

Answer»

Answer:

Synchronization is the process that OCCURS when multiple processes access and change the same DATA at the same time.

Explanation:

HOPE it will be helpful

10789.

The area or space that the OS allocates to a process is called its -----------

Answer»

Explanation:

Contiguous Memory Allocation. One approach to memory management is to load each process into a contiguous space. The OPERATING system is allocated space FIRST, usually at either low or HIGH memory locations, and then the REMAINING available memory is allocated to PROCESSES as needed

hope this is helpful to you

if yes?

then please mark me as a brainlist answer

thank you so much

10790.

In fourth generation computers,what do you think was the biggest advantage for using microprocessors?Justify your response.

Answer»

SMALLER in size and MUCH reliable than other generation of computer. The Heat generation was negligible. No cooling system REQUIRED in many cases of the fourth generation computers. portable and cheaper than OLD VERSIONS

10791.

What is the function of HTML Forms? ​

Answer»

Explanation:

A webform, WEB form or HTML form on a web page allows a user to enter data that is sent to a server for processing. Forms can resemble paper or DATABASE forms because web USERS fill out the forms using checkboxes, radio buttons, or TEXT fields.

10792.

Write the PHP code5,10,15,20,25.........50 using for loop

Answer»

Answer:

for(i=5;i<=50;i++)

its the output for for loop in c,JAVA and c++.

10793.

Difference between teacher with traditional technology and teacher with digital technology

Answer»

Explanation:

Teacher with modern technology can TEACH through VARIOUS devices like computer LAPTOP ETC....

But that is not possible in traditional techonology

10794.

You can use multiple lines of text using ...........in a form.FormText AreaRadio ButtonCheck Box​

Answer»

Answer:

text AREA will be

the write answer

i mean *RIGHT answer

10795.

Fill in the blanks To apply formatting to a single word, first click within the ---- and then choose options​

Answer»

ANSWER:

my RESUME as SEE if

missing am LOOKING

10796.

Guys they are not posting my answer so what can I do?​

Answer»

ANSWER:

who is not ...................

10797.

To allow overlapping of I/O operation with processing operation the double buffering scheme uses __________ buffers.

Answer»

ANSWER:

CIRCULAR..... I THINK this MAY be the CORRECT..

10798.

We can use............. button to clear all option from a FormRestart ButtonReset ButtonRadio ButtonRest Button​

Answer»

ANSWER:

RESET BUTTON. ♥️♥️♥️❤️❤️❤️❤️❤️

10799.

Write T for true and F for false.1. Places is a kind of folder in Edubuntu files.2. The Icons view displays files and folders as a list.3. You cannot sort files by their sizes.4. CD burning is the process of copying files from tcomputer to a CD.5. The Files window is divided into three panes.ndo​

Answer»

\huge\mathbb\pink{\underline {\underline{Answer}}}

1.True

2.True

3.False

4.True

5.False

\huge\mathtt\purple{THANK\:YOU}❤❤❣️

10800.

Answer the following questions.1. How does DBMS help deal with data inconsistency?2. What is an RDBMS?3. What does the primary key do?answer fast plz important ​is there answer

Answer»

Answer:

1) A DBMS provides mechanism to deal with this kind of data inconsistently while allowing users to access the data currently. A DBMS implements ACID (atomicity, duarabilty, isolation, consistency) properties to ENSURE efficient transaction management without data corruption.

2) A software system used to maintain relational database is a relationship database system(RBDMS). many relational database systems have an option of USING SQL (structured query language) for quearing and maintaining the database.

3)The PRIMARY Key constraint uniquely identifies each record in a table.Primary key must contain unique VALUES, and cannot contain null values. a table can have only one Primary Key and in the table this primary key can consist of single or multiple columns (FIELDS).