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.

28151.

2. Which two documents are essential for mail merge?​

Answer»

There are three documents that are involved in the mail merge PROCESS: the main DOCUMENT, the data SOURCE, and the MERGED document. To COMPLETE the basic mail merge process, you must do the following: Open or create a main document.

28152.

assume a tree is containing integers 1,2,3.how many trees have same inorder and postorder traversal?​

Answer» CLASS KA QUESTION HAI
28153.

What information does formula input line display in excel​

Answer»

mula BAR is where data or FORMULAS you enter into a worksheet appear for the ACTIVE CELL. The Formula Bar can also be used to edit data or formula in the active cell. The active cell displays the RESULTS of its formula while we see the formula itself in the Formula Bar

28154.

Write a java program to print the sum of the following series. 0, 3, 8, 15 …. Upto n terms.

Answer»

a program for the above question is as follows: Explanation: public class Series // Class definition { public static void main(String[] ARGS)  // Main FUNCTION declaration { int i=0,series=0,s=0; // variable declaration while(i<10) // while loop to REPEAT the process 10 times. {     System.out.print(series+", "); // Print the series     series=series+3+s; // Make the series     i=i+1; // INCREMENT operator     s=s+2; // increase for series } } } Output: The user get "0, 3, 8, 15, 24, 35, 48, 63, 80, 99," as output because it is a series which is demand by the question.   CODE Explanation: The above series is like this-- 0, 0+3, (0+3)+3+2, (0+3+3+2)+3+2 and so on. Then the above program declares a while loop which executes 10 times. Then it takes one variable which prints the value after adding the previous value and 3 and the s variable ( which starts from 0 and adds 2 value in previous value in every iteration of while loop).

28155.

SELF ASSESSMENT Multiple choice questions.1. The lesson editor window is used for:(a) Customize2. Which of the following contains existing lessons?(a) Taskbar(b) Toolbar(b) Check progress(c) Check lesson errors(c) Navigation panel​

Answer» 1) TOOLBAR 2) NAVIGATION panel and Task barExplanation:HOPE THIS HELPS YOU!!!! IF YOU LIKE THIS ANSWER PLS MARK ME AS THE BRAINLIEST !!! AND DO FOLLOW ME!!!
28156.

What information does formula input line display.​

Answer»

The name BOX is the box at left end of the formula bar that identifies the selected CELL, chart item, or drawing object. The Name Box displays the cell REFERENCE of the active cell. The Name Box can also be USED to assign names to cells or RANGES of cells.

28157.

Why printer is called a peripheral device while not the keyboard​

Answer»

For EXAMPLE, a KEYBOARD and mouse are input peripherals, while a monitor and printer are OUTPUT peripherals. ... Computer peripherals, or peripheral DEVICES, are sometimes called "I/O devices" because they provide input and output for the computer.

28158.

Consider a file of 3MB that needs to be transmitted over a 1 Gbps link which has a RTT of 80ms. The effective throughput will be

Answer» MARK me as BRAINLIEST and i will FOLLOW U BACK
28159.

What is used to determine when the communications channels are clear and when a device is free to transmit data?

Answer»

tion:When the DATA can flow across a cable in both directions, this is known as full DUPLEX communication. Explanation: In a duplex type of topology or communication, data or information can be transferred in both directions. There are two different TYPES of duplex COMMUNICATIONS.

28160.

Write the steps for using - painting tool, retouching tool, drawing and type tools, navigation tools please answer me seriously ​

Answer» AVE FOLLOWED U in My ANOTHER ACCOUNT
28161.

Write a program in Java to print the following series. 0, 1, 1, 2, 3, 5, 8 ……. Upto n terms.

Answer»

public class FIBONACCI { public static VOID main(String[] args) { int N = 10, T1 = 0, t2 = 1; System.out.print("First " + n + " TERMS: "); for (int i = 1; i <= n; ++i) { System.out.print(t1 + " + "); int sum = t1 + t2; t1 = t2; t2 = sum; } }}

28162.

Differentiate between Windows 10 os and VCenter Server os?​

Answer»

this will HELP you

28163.

. How will you delete a header from a Word document? 6. What do you understand by indenting text?E. Application based questions.1. Akshaya has been given an assignment to write two paragraphs on the topicYour City Clean' Help her to format the document by setting the indents, margpaper size. Name the options which she would use for formatting.2. Priya is planning a surprise birthday party for her mother. Her father haher to create a birthday card for her mother on Word. To help her, writeBirthday, Mom!' in Word and different page backgrounds to it. Also, apply pageit.E Higher order thinking skills (HOTS).How do formatting features help in increasing the readability of documont?​

Answer»

rythtgxfjfjhfjjhjjgjhyyi7iExplanation:

28164.

What information does the name box display in excel.​

Answer»

The Name BOX has several FUNCTIONS. It displays the address of the ACTIVE cell. It displays the name of the cell, range or object selected if this has been named. It can be used to name a cell, range or object like a chart.Explanation:

28165.

A row in a database refers to a​

Answer»

In the context of a RELATIONAL database, a row—also called a tuple—represents a single, implicitly structured data item in a table. ... The IMPLICIT structure of a row, and the MEANING of the data VALUES in a row, requires that the row be understood as PROVIDING a succession of data values, one in each column of the table.

28166.

Which of the following instrument is most precise? A meter scale with smallest division equal to0.1 cmooScrew gauge with pitch = 0.1 mm and 100divisions on circular scaleVernier calliper with a least count 0.01 mmAll instruments have same precision​

Answer»

tion:Vernier CALLIPER with a least COUNT 0.01 mmhope it HELPS you...._☺☺☺

28167.

How do ALU and CU aid in data processing by computer​

Answer»

An arithmetic logic UNIT (ALU) is a digital circuit used to perform arithmetic and logic operations. It REPRESENTS the FUNDAMENTAL building block of the CENTRAL processing unit (CPU) of a computer. Modern CPUs contain very powerful and complex ALUs. In addition to ALUs, modern CPUs contain a control unit (CU) .Explanation:

28168.

Which tag creates a bulleted list​

Answer»

The

    tag defines an unordered (bulleted) LIST. USE the
      tag together with the
    • tag to CREATE unordered LISTS. Tip: Use CSS to STYLE lists.
28169.

Fill in the blanks of ch2 I.T class 9th​

Answer»

Discuss the application of DIODE as POSITIVE series clipper and parallel clipper with IDEAL diode, practical silicon diode. Draw the neat waveform diagrams.

28170.

1) what are components of the Computer?​

Answer» GIVE me some time AFTERTHAT I am POST long ANSWER related to your question
28171.

9) The Memo data type can store text andnumbers up tocharacters. 65,550 65,545 65,535​

Answer»

I am MEW in BRAINLY PLEASE FOLLOW MW

28172.

Write a program to print the sum of the following series. 0, 3, 8, 15 …. Upto n terms.

Answer» TION:The java program for the above question is as FOLLOWS: Explanation: public class SERIES // Class DEFINITION. {. public static void main(String[] ARGS) // Main function declaration. {. int i=0,series=0,s=0; ...
28173.

Which is the best smartphone in the world tell the only one name​

Answer» MICROSOFT SURFACE DUO....☺
28174.

What are the primiples of communication ​

Answer»

you can SEE the ATTACHED file is scanned image in PDF format the following adExplanation: a little bit of time to help you with the following ad a few minutes AGO to me at the following ad a GREAT DAY yesterday and I will

28175.

when you connect to the ___ , your computer is communicating with a server at your internet service provider​

Answer» INTERNET .........EXPLANATION:GIVE me BRAINLIST
28176.

Which code block can set the points or score for the game​

Answer»

Don't KNOW BUDDY. ...... '' '' '' '' '' ....

28177.

& write progam to check if the number is positive or negative and displayan appropriatenecessary​

Answer»

ywgftiwuwgwgwuwiwuwgwgwhwi

28178.

Date: 04/11/2020 Name:MarksRita is a designer in a publishing house where books, brochures andadvertisements are created. Which type of software does she need?City International SchoolFirst Summative Assessment A. Y. 2020 - 2021Grade: V. Subject: Computers, Marks: 40, Time: 1 hr 30 min​

Answer»

what is your QUESTION WRITE its PROPERLY PLEASE

28179.

Is a key which uniquely identifieseach record in a table.Foreign KeyComposite Key Primary Key​

Answer» TION:PRIMARY KEY is the ANSWER ....
28180.

•Make toys from environment friendly material which can be helpful in teaching History.​

Answer»

It's not a big DEAL for me but FIRST Explanation:Mark me as BRAINLIEST

28181.

2. What do you mean by Program Window Control buttons?3.Which tab is used to manage file information and save, share, print,protect and work?4.How can we enter text in MS Word 2010 document?​

Answer»

1:-Windows 10is an operating system, a type of program that runs your computer and letsyou interact with it.-A PROGRAMIS a set of INSTRUCTIONS written for a computer.-Windows 10 reserves a special area called aMicrosoft accountwhere each user can keephis or her files. In addition, a Microsoft account lets you use various devices and servicessuch as a Windows Phone or Outlook.com.-sign in, or select your Microsoft account name and enter a password, also calledloggingin.-Password:a special sequence of NUMBERS and letters-On a desktop computer, thepower buttonis probably on the front panel. On a laptopcomputer, it’s likely at the top of the keys on your keyboard.-Passwords arecase sensitive, which means that if you type any letter using capital letterswhen lowercase letters are needed, or vice VERSA, Windows will not let you use youraccount.-A gestureis an action you take with your fingertip directly on the screen, such as tappingor swiping.-TheWindows 10 desktopis an ELECTRONIC work area that lets you organize and manageyour information, much like your own physical desktop.-User interface (UI): A collective term for all the ways you interact with a softwareprogram-TheWindows 10 user interfaceis called the Windows 10 UI.

28182.

Storage contains temporary data and the storage holds the permanent data ​

Answer»

A computer's MEMORY is also called RAM which is an acronym for Random Access Memory. A computer's memory is where INFORMATION is temporarily stored while it is being ACCESSED or worked on. Explanation:

28183.

Find out the error #include class train{long trainno;char name [25];public :void entry ( ){cin >>trainno;gets (name);}void display ( ){cout

Answer»

which CLASS are you MADE for VOID display ( ); html or JAVA ?

28184.

13. What important is automatically happening in following code? long a = 124235L;Long b = new Long(a);long c = b.longValue();System.out.println();​

Answer» FIND out in BROWSER THANK you for ASKING
28185.

B) (A) Electrical Number Integrator and conventen(B) Electrical Numerical Integrator and calculator(C) Electrical Numerical Inverter and calculator(D) Electrical Number Inverter and converter​

Answer»

what is thisExplanation:hsusiwoao

28186.

Allel ya dastaकाव्यपंक्तीचश स्पष्ट कर20झाडांच्या मनात जाऊ, पानांचे विचार होऊ​

Answer»

निसर्गाशी एकरूप होऊन निसर्गसौंदर्याने आस्वाद घेण्याची कवींची मनोमन इच्छा आहे. म्हणून ते म्हणतात की आपण झाडाच्या मनात शिरू आणि पाने जो विचार करतात, तसे पानाचे विचार होऊ . म्हणजे आपण स्वतःच झाड होऊ.

28187.

Find the error in c++ program Void main(){cout > var >> auto ;product = var * auto;cout

Answer» VAR is not DEFINED in the WHOLE PROGRAM
28188.

निम्नलिखित शब्दों के वचन बदलकर लिखो एक बिलाव​

Answer»

hshsieiwkwkjwhdjekwkwkwkExplanation:ududisia

28189.

3) Construct a right angle triangle ABC whose base is 6cm and the sum of hypothenuse AC and other side AB is 10cm4). From the informati​

Answer»

4Explanation:

28190.

How are dates expressed in history

Answer» HISTORY is the PAST by EXPRESSED in history
28191.

Best story mode game for pc ?​

Answer»

lysium.Firewatch.

28192.

I am the amount of white space between the lines of text in a paragraph​

Answer» ANSWER is LINE SPACING
28193.

Write a c++ program to find a key number from given set of integer values?​

Answer»

i CANT UNDERSTAND your question.sorry.Explanation: PLZ follow me , and like my answer , and MARK my answer as a brainlyist.

28194.

Give some examples of the use of IT in our everyday life. ​

Answer»

t, mobile PHONE systems, broadcast radio and TV systems, but IT is essential to many other day-to-day activities.Please mark me BRAINLIEST and FOLLOW

28195.

But mere ko ek se aash lagi hui hai but wo live nhi hai​

Answer» OHO.......live MTLB online HAI kya...
28196.

Write a c++ program to find the sum of digit of a number​

Answer»

#includeusing namespace std;int main() { int x, s = 0; COUT << "Enter the number : "; cin >> x; while (x != 0) { s = s + x % 10; x = x / 10; } cout << "\nThe sum of the digits : "<< s;}outputEnter the number : 236214828The sum of the digits : 36

28197.

List application of c++?​

Answer» APPLICATION of c++Explanation:it is a coding language used by many professionals TODAY . it is very helpful in building software . many BIG companies give jobs to the people who have mastered this language .b
28198.

हमारा प्रसन कुछ और है ​

Answer»

whatExplanation:have a HAPPY SUNDAY

28199.

The core of the Linux system is the ______ . ( kernel/ online/ GVI/ Minicomputers) ​

Answer»

you are not filtered into the you with a great weekend ueuebdbdh you with a great weekend and we can do u u it TURNED and walked into your account we will have to help you to the data you with a great weekend and I amExplanation:you can eyes rudhhfhdjdkdi you with the following URL ADOBE and other COUNTRIES to help reduce your family a eoqjdh VEHICLE the intended recipient please ydgvxmoshet you have a nice day of the day before yesterday I will

28200.

Find the odd-man out in the following given alternaties. 11, 14, 1719, 16, 13o2,5,725, 29, 32​

Answer»

19,16,13 EXPLANATION:because it is in DECREASING ORDER