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.

26951.

1. Internet was started in1991198919691979​

Answer»

1991Explanation:

26952.

Network in which 1 computer is diretly co4 to another computer a) peer to peer b) internetc) LANd) none of the above​

Answer» P2P is your ANSWER. OK DEAR.
26953.

वर्णन करें कि आप HTML में तालिकाओं का निर्माण कैसे करेंगे?​

Answer»

I don't UNDERSTAND EXPLANATION:Mark me as BRAINEST PLZZZZZZZZZZZZZZZZ. Hope it helps you

26954.

2. A computer always gives​

Answer» ANSWERS of EVERY QUESTION
26955.

व्हाट इज द प्रोफेशनल डेफिनेशन ऑफ गूगल इन इंग्लिश ​

Answer» TION:can you TRANSLATE in ENGLISH or TELUGU
26956.

क्या सी भाषा में पहचानकर्ता का पहला अक्षर (अंडरस्कोर) हो सकता है? सही या गलत​

Answer»

्ताओं को पहले दो अक्षरों के रूप में एक अंडरस्कोर और एक लोअरकेस अक्षर के साथ भी नामित नहीं किया जाना चाहिए।

26957.

What is a modem ? what are the different types of modem​

Answer»

A modem – a portmanteau of "modulator-demodulator" – is a hardware device that converts DATA from a digital format, intended for communication directly between DEVICES with specialized wiring, into one suitable for a transmission medium such as telephone lines or radio.There are three types of modems: cable, digital SUBSCRIBER line (DSL) and dial-up. A cable modem USES COAXIAL cables that connect to the back of the modem and the bolt-like outlet in your wall or on your cable box. This type of modem delivers high speed internet to your device.Explanation:Hope it helps

26958.

Can the first letter of the identifier in the C language be _ (underscore)? true or false​

Answer»

No, it CANT be UNDERSCORE....So the ANSWER is FALSE

26959.

What is the difference between input and output devices?

Answer»

The output devices are generally known as reverse of input devices. Output devices also send data from ONE computer system to ANOTHER....Difference between Input and Output devices:INPUT DEVICE It accepts data from user. It is directly COMMANDED by user. OUTPUT DEVICEIt reflects processed data to user.It is commanded by processor.I HOPE IT HELP YOU...

26960.

One two, one two, Type a word or two. Arrow left, arrow right, Keep those fingers nice and tight. Keys up, Keys down, Move those digits all around. One two, one two, Type a word or two." ― Jazz Feylynn

Answer» HANKS, I LOVE COMPUTER STUDIES.
26961.

For the sequence f(n)=6*(1/3)^n, the 4th term is

Answer»

......................................

26962.

What is cascading of input /output operators?

Answer»

ive occurrence of INPUT and OUTPUT operators (“>>” and “<<”) in C++ can be concatenated.Cascading’s LITERALLY MEANS arranging something in a series or sequence.

26963.

Enter a three digit number and find whether its last and first digit are same Qbasic

Answer»

barExplanation:PLEASE MARK as BRAINLIEST and FOLLOW me

26964.

Which section in a document can hold title of the document or authors name

Answer»

A header is the TOP margin of each page, and a FOOTER is the bottom margin of each page. Headers and footers are useful for INCLUDING MATERIAL that you want to APPEAR on every page of a document such as your name, the title of the document, or page numbers

26965.

Can the first letter of the identifier in the C language be _ (underscore)?​

Answer» C LANGUAGE is very EFFICIENT and HIGH SPEED
26966.

What is the value of cell 3​

Answer» TION:what is cell 3 PLEASE please please please please please please please please please please please please please please please please please please please please please please please please please please please please please MARK me as brainlist please please please please please please please please please please please please please please please please please please please mark me as brainlist ❤️❤️
26967.

___________ Operator is not ranked?​

Answer»

What to ANSWER in this is very EASY for you and FOLLOW me PLEASE

26968.

B) Convert Infix to Prefix for the following expression and evaluate using the given valuesa=2, b=2, c=4, d=4, e=2, f=4.i) (a+b)/c*d^eii) a/b + (c+e) * d/f​

Answer» NICE QUESTION EXPLANATION:FIRST FOLLOW me
26969.

A is used to mark important points on a page​

Answer»

maybeExplanation:but i MARK a STAR if this HELPS you then PLEASE mark me as BRAINLIST

26970.

C language developed at _____ laboratory ​

Answer» BELL LaboratoriesExplanation:C language was developed by Dennis RITCHIE
26971.

How did computers change the process of education? Is that good or bad? give your reason.

Answer»

bothExplanation:

26972.

Employee of Dell Mr.Rajesh had a been given a code which is in signed binry 5bit code (0.101). He has to locate the digital password which is in decimal. After decoding the password obtained is

Answer»

by me it COME 58125

26973.

Very short answer type questionWhich type of language is java? class 8 icse board​

Answer»

object-oriented PROGRAMMING languageExplanation:HOPE it HELPS MARK me BRAINLIEST

26974.

Write an algorithm and program for multiplication of three Sparse matrices ​

Answer» E using namespace std; class sparse_matrix { const static int MAX = 100; int **data; int row, COL; int len; public: sparse_matrix(int r, int c) { // initialize row row = r; // initialize col col = c; // initialize length to 0 len = 0; //Array of Pointer to make a matrix data = new int *[MAX]; for (int i = 0; i < MAX; i++) data[i] = new int[3]; } // insert elements into sparse matrix void insert(int r, int c, int val) { if (r > row || c > col) { cout << "Wrong entry"; } else { // insert row value data[len][0] = r; // insert col value data[len][1] = c; // insert element's value data[len][2] = val; // increment number of data in matrix len++; } } void multiply(sparse_matrix b) { if (col != b.row) { // Invalid multiplication cout << "Can't multiply, Invalid dimensions"; return; } b = b.transpose(); int apos, bpos; sparse_matrix result(row, b.row); // iterate over all elements of A for (apos = 0; apos < len;) { // current row of result matrix int r = data[apos][0]; // iterate over all elements of B for (bpos = 0; bpos < b.len;) { // current column of result matrix // data[,0] used as b is transposed int c = b.data[bpos][0]]; int tempa = apos; int tempb = bpos; int sum = 0; while (tempa < len && data[tempa][0] == r && tempb < b.len && b.data[tempb][0] == c) { if (data[tempa][1] < b.data[tempb][1] tempa++; else if (data[tempa][1] > b.data[tempb][1]) tempb++; else // same col, so multiply and increment sum += data[tempa++][2] * b.data[tempb++][2]; } // insert sum OBTAINED in result[r] // if its not equal to 0 if (sum != 0) result.insert(r, c, sum); while (bpos < b.len && b.data[bpos][0] == c) // jump to next column bpos++; } while (apos < len && data[apos][0] == r) // jump to next row apos++; } result.print(); } // printing matrix void print() { cout << "\nDimension: " << row << "X" << col; cout << "\nSparse Matrix \nRow\tColumn\tValue\n"; for (int i = 0; i < len; i++) { cout << data[i][0] << "\t " << data[i][1] << "\t " << data[i][2] << endl; } } }; int main() { //Code Whatever You Want}
26975.

Which tool is used to focus onlz one person in photoshop

Answer»

and Explanation : Pretty typical. You WANT to make a SELECTION of just the PERSON, so you open your PICTURE into Photoshop and go to the Select > Focus AREA menu and click. From there, the Focus Area dialog box opens up and you choose how you want to view the image as you're working on it. You can add to the selection or remove from it.Hope it help you Thank you

26976.

2.7 Code Practice: Question 1

Answer»

No it's not in NOWADAYS we can N CODE from LOTS of FREE t and free s such as code.and code.

26977.

Question 1 4 Points How many 512x 8 RAM chips are needed to provide a memory capacity of 2048 bytes? How many lines of the address bus must be used to access 1024 bytes of memory? How many these lines will be common to all chips?

Answer»

Explanation:CS RS1 RS0 Register SELECTED 0 x x NONE 1 0 0 PORT A register 1 0 1 Port B register 1 1 0 Control Register 1 1 1 STATUS Register

26978.

If the code is not properly indented, it will be:

Answer»

tion:In computer programming, an indentation style is a convention governing the indentation of blocks of code to convey program structure. This article LARGELY addresses the free-form languages, such as C and its descendants, but can be (and often is) applied to most other programming languages (especially those in the curly bracket family), where whitespace is otherwise INSIGNIFICANT. Indentation style is only one aspect of programming style.Indentation is not a requirement of most programming languages, where it is used as secondary notation. RATHER, indenting helps better convey the structure of a program to human readers. Especially, it is used to clarify the link between control flow CONSTRUCTS such as conditions or loops, and code contained within and outside of them. However, some languages (such as Python and occam) use indentation to determine the structure instead of using braces or keywords; this is termed the off-side rule. In such languages, indentation is meaningful to the compiler or interpreter; it is more than only a clarity or style ISSUE.

26979.

Write an Algorithm to calculate the area of a square if the length is 5cm. Subject-Computer

Answer»

------------------------------------------------------------------------START ALGORITHM ASSIGN the value for lengthlength =5area of SQUARE =s×s 5×5=25unit square stop algorithm -----------------------------------------------------------------------------------here is your answer hope it HELPS you

26980.

True or False of ch 5 program coding subject computer ​

Answer»

1.T 2.F 3.T 4T 5Fyour ANSWER MARK me as BRAINLIEST

26981.

Unnecessary answers will be reported.... plz.... help if you know the answer then give the answer in detail of you give correct answer the i will Mark you as brainliest... Q. Aman is a hardworking fruit seller. He sold 10 oranges & 5 apples on Monday & 12 oranges and 3 apples on Tuesday. He wants to organize the data to calculate the no. of apples and oranges sold on both the days. Suggest him a suitable way to group this data & help him calculate the total no.of Apples and oranges sold.​

Answer»

to KNOW your ANSWER DOWNLOAD snapsolve APP from PLAYSTORE

26982.

when a child class function is called, the compiler looks first for a matching function name in the? ​

Answer» CLASS of the OBJECT USING the FUNCTION NAME
26983.

1. An image can be cropped by O Edit ToolO Picture ToolO Drag and drop Tool​

Answer» EDIT TOOL is the ANSWER PLEASE FOLLOW me please please please please follow me please please please please follow me please please please please follow me please please please please follow me please please please
26984.

How did computers change the process of education?

Answer»

Computers provide teachers and students the means to communicate quickly via email. Online GRADING SYSTEMS also make it easier to view and AUDIT a STUDENT's progress. In addition, computers open doors to social MEDIA, providing students and teachers tools to interact, collaborate and communicate.Explanation:Hope it will help youJai Hind

26985.

1. An image can be cropped by 1 point Crop ButtonEdit ToolООPicture ToolDrag and drop Tool​

Answer» ANSWER is by CROP buttonExplanation: PLEASE MARK me as BRAINLIEST
26986.

_____ Operator is used to connect different conditions?​

Answer»

this is your answers their are MANY OPERATOR ..pls mark me BRAINLIST pls

26987.

A 7. Consider the HTML codeA HREF = #intro Introduction .In the above code,(1) What is the purpose of = ?(ii) What will happen when the user clicks "Introduction​

Answer»

in HTML is used to give link to a page in HTML . After EQUAL sign you can PROVIDE with the name of particular HTML page where you want to REDIRECT when link clicked .. as soon as the user CLICKS the link he will be REDIRECTED to that page

26988.

We can apply different colores textures or pictures to our documents with the help of _______option

Answer» COLOR...................
26989.

इन बॉर्डर एंड शेडिंग डायलॉग बॉक्स ऑफ एम एस वर्ड विच ऑप्शन अल्लाह अपलाइन बॉर्डर अराउंड पैराग्राफ और अराउंड पेज​

Answer»

इन बॉर्डर एंड शेडिंग डायलॉग बॉक्स ऑफ एम एस वर्ड विच ऑप्शन अल्लाह अपलाइन बॉर्डर अराउंड पैराग्राफ और अराउंड पेज....

26990.

Merits and demerits of using computer technology in a business. discuss

Answer»

tion:Advantages and DISADVANTAGES of USING new technology for businesseseasier, FASTER and more effective communication.better, more EFFICIENT manufacturing techniques.less wastage.more efficient stock management and ordering systems.the ability to DEVELOP new, innovative approaches.more effective marketing and promotion.

26991.

Write a python program .... input a number and check if the number is a prime or composite number.​

Answer»

this 4sd9y9yExplanation:zurziritcieautd6ezits74d7rs7td8tditxixitxutzitxitxitxzufxfix6rzurzuesgkzufxfizriczfigxurzutzuutxitz6rhxutxyxohcitxigxit lnciycihcit gigxigxitifxifzur igcogxrixotxoghixitx8tx8txi9yx8tcitxig ogotcoycoycc9y9yc9yc9yc9yc9yc9ycyco7rsrzitx7rsig ogotcoycoycc9y9yc9yc9yc9yc9yc9ycyco7rs 5dohc8txtxcohot8txhcirxih ogxitxtxx8t84sotx hcoyx99t BOY on jvp0hc9ycx8g8t 9yc

26992.

Explain marquee properties for the following ?​

Answer» SPECIFIC ATTRIBUTES. The HTML
26993.

5. Where can you obtain details about the personal data Microsoft processes, how Microsoft processes it, and for what purposes? O Microsoft Privacy Statement O Compliance Manager O Azure Service Health O Trust Center

Answer»

tion:You can control some of the data Microsoft processes through your use of a Microsoft account on the Microsoft PRIVACY DASHBOARD. From here, for example, you can view and CLEAR the browsing, search, and location data associated with your Microsoft account.

26994.

write true or false 1》locking a layer prevents any change in that layer. 2》python is compatible with all the operating system. ​

Answer» TRUE FalseExplanation:Byeeeeeeeeeeeeeeeee
26995.

Sum (3:5) will output 8 true or false​

Answer» TRUE is the RIGHT ANSWER
26996.

Key challenges to protecting life on earth include ____________ and ____________.​

Answer»

y and PEACE EXPLANATION:

26997.

Write a shell script to copy one file to another file ( file are declared by user)​

Answer» COPYRIGHT is the CORRECT ANSWER.
26998.

Pls answer correct or else I will report.... ​

Answer»

i.B3=67895B6=34567ii . C3:C6=89765:67676 D3:D6=78675:32768 E3:E6=34098:67120iii . 279881iv.C7=281860 D7=224996 E7=157814

26999.

Guys please solve these answers. ..it's very urgent. .please don't give irrelevant answers ​

Answer» 1. 1,3,5,7,92. 10,4This is the ANSWER
27000.

A processing device is used to process information true/false​

Answer» FALSE OK.. It's your ANSWER