InterviewSolution
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.
| 27101. |
Write any 5 difference between gateway and bridge? |
|
Answer» -Bridge CONNECTS two different LAN WORKING on same protocol.In bridge, data or information is in the form of PACKET. Bridge operates on the physical layer and data link layer GATEWAY:-A gateway is used to increase the compatibility to establish communication between two networks USING two different protocol. While gateway will settle for and transfer the packet across networks employing a completely different protocol. . 3.a gateway can operate on all the layers of OSI model.sorry i got only three.. |
|
| 27102. |
What is cyberstalking? |
|
Answer» the REPEATED use of electronic communications to HARASS or FRIGHTEN someone, for example by sending threatening EMAILS |
|
| 27103. |
Dt review a. A2. Fill in the blanks.is also called a slide show.Slide introduces the presentation to the audiencec. The default slide layout for PowerPoint isorientationare boxes with dotted borders that are displayed on new slides and showwhere text can be typed.b. Thed.jcrosoft PowerPoint73 |
| Answer» GOOD to of you KHUL TIGER | |
| 27104. |
Question: Which of the following is not the process of CBAM?Option 1:Choose scenarios and architectural strategiesOption 2:Assess quality attribute benefitsOption 3:Productivity and Resource ManagementOption 4:Quantify the benefits of architectural strategies |
|
Answer» tion:870 053 1109123456U KNOW WHERE U HAVE TO COME ONLY WHO CAN SHOW |
|
| 27105. |
The life cycle of information system is also called |
|
Answer» internal INFORMATION systems developmentsyste matic process, known as a SYSTEM life cycle, which consists of s ix STAGES: feasib ility study, system analysis, system DESIGN, programming and t esting, INS tallation, and operation and maintenance. |
|
| 27106. |
Wap in Java to accept the total units consumed by the customer and calculate the bill.Assume that a metre into rupees 500 discharge from the customer. |
|
Answer» :import java.util.*;public class MyClass { public static void main(String args[]) { Scanner Sc = new Scanner(System.in); double Amount , units; System.out.print("Enter total units CONSUMED : "); units = Sc.nextDouble(); if(units <= 100) { Amount = 500 + (units * 0.80); } else if(units > 100 && units <= 300) { Amount = 500 + (100 * 0.80) + ((units - 100) * 1); } else { Amount = 500 + (100 * 0.80) + (200 * 1) + ((units - 300) * 2.50); } System.out.print("Bill : " + Amount); }} |
|
| 27107. |
निम्नलिखित में से किस जीव में परिसंचरण तंत्र नहीं होता है |
|
Answer» मानव एवं अन्य कशेरुक प्राणियों के परिसंचरण तंत्र, 'बन्द परिसंचरण तंत्र' हैं (इसका मतलब है कि रक्त कभी भी धमनियों, शिराओं, एवं केशिकाओं के जाल से बाहर नहीं जाता)। अकशेरुकों के परिसंचरण तंत्र, 'खुले परिसंचरण तंत्र' हैं। बहुत से तुच्छ (PRIMITIVE ANIMAL) में परिसंचरन तंत्र होता ही नहीं। |
|
| 27108. |
WHAT ARE THE DIFFERENT METHODSOF PRESERVING FOOD |
| Answer» COMMON METHODS of FOOD PreservationChilling.Freezing.Sugaring.Salting.Canning.Vacuum PACKING. | |
| 27110. |
Relationship indicates that one specific record of a particular table has one and only one corresponding record in other table of the database *O One to oneO Many to manyO One to many |
| Answer» ONE to oneExplanation:HOPE it's HELPS you | |
| 27111. |
What is Data Privacy ?? In computer |
|
Answer» Data Privacy describes the PRACTICES which ENSURE that the data shared by customers is only USED for its intended purpose. Information privacy is the right of individuals to have CONTROL over how their personal information is collected and used. Explanation:here is your answer if you LIKE my answer please follow |
|
| 27112. |
Which amongst these are software structures? Option 1:Module StructureOption 2:Conceptual or logical structureOption 3:Process structureOption 4:All of the mentioned |
| Answer» | |
| 27113. |
B. It's good to save your presentation (i) often(ii) occasionally(iv) after you shut off your computer(iii) onceAint |
| Answer» | |
| 27114. |
For the naming convention to name the attributes which of the following is true * *Do not use a space between words instead separate them with the underscore* All of the above* For subsequent characters use either letter, number or the underscore character*Do not use special characters except underscore*Start all attribute name with a letter* Use abbreviations if needed to keep the length of attribute name shot |
|
Answer» you should not use the UNDERSCORE character because it will show you errorExplanation:start the WRITING with a LETTER it should not start with a underscore or any DIGIT |
|
| 27115. |
What is Privacy ? In computer |
|
Answer» ivacy, ALSO called INFORMATION privacy, is the aspect of information technology (IT) that deals with the ability an organization or INDIVIDUAL has to DETERMINE what data in a computer system can be SHARED with third parties |
|
| 27116. |
Are real-world objects about which information is to be stored in database * Database design*Entities |
| Answer» | |
| 27117. |
Ano magandang research topic? asap |
|
Answer» Abortion.Adoption.Airline SAFETY, security.Affirmative ACTION programs.AIDS.Apartheid.Birth control.Child abuse.Explanation:HOPE it's HELPS you |
|
| 27118. |
Can anyone give me this c0de !! How we can get this colour in LateXAnswer with the output ✔️No spam Please ❌️Only answer if u know the ans.. Or don't ans.❌️❌️Do not report this question ❌️ |
| Answer» PLEASE PREFER the ATTACHMENT please EXPLANATION: | |
| 27119. |
Write a program which reads a number from the keyboard and check whether the number is between the givenupper bound and the lower bound values. (The upper bound and the lower bound values need to be read duringrun time.) python program. |
|
Answer» Explanation:For each NUMBER in the for loop, it is checked if this number is PRIME or not. ... Ask USER to ENTER lower value of interval ... Enter lower BOUND of the interval: 1 Enter upper bound of the interval: 10 ... |
|
| 27120. |
Provides redymade shape in MS woard |
|
Answer» How does EXPERT SYSTEM HELPS in ————-Static games like CHESS —-To check pollution in rivers or other water bodiessorry I really don't know the answer |
|
| 27121. |
Servlets and JSP is having the different? Option 1:translationOption 2:syntaxOption 3:compilationOption 4Both (a) and (b) |
|
Answer» bro I know you are a GREAT GUY but I don't get it PLS MARK me as brainliest |
|
| 27122. |
Does The continue and break statement have same effect |
|
Answer» A break statement RESULTS in the TERMINATION of the statement to which it applies ( switch , for , do , or while ). A CONTINUE statement is used to end the current loop ITERATION and return control to the loop statement. |
|
| 27123. |
Why would you consider an enterprenur a dynamic agent |
|
Answer» Dynamic AgentAn ENTREPRENEUR is a dynamic agent because he makes the WHOLE ECONOMY dynamic through business changes, bravely facing the obstacles in the way of changes and always ready to PERFORM challenging tasks and by providing new DIRECTIONS to the society. |
|
| 27124. |
With which resources availability the ADD(attribute-driven design) can start successfully |
|
Answer» ADD can only be started successfully when the FOLLOWING resources are already available: FUNCTIONAL REQUIREMENTS. QUALITY requirements. constraints. |
|
| 27125. |
Plz tell the answers quickly I will mark the correct ans Brainest plz plz |
|
Answer» d Answer:-Question:Write a program to display the grade of a student. Solution:Here comes the códe. import java.util.*;public CLASS Grade { public static void main(String[] args) { double marks; String g; Scanner sc=new Scanner(System.in); System.out.print("Enter marks percentage: "); marks=sc.nextDouble(); if(marks>=90) g="O"; ELSE if(marks>=80) g="A"; else if(marks>=70) g="B"; else g="C"; System.out.println("Grade: "+g); sc.close(); }}ALGORITHM:STARTAccept the marks percentage.Calculate the grade on the basis of the CONDITION given. Display the result. STOPRefer to the attachment for output ☑. |
|
| 27126. |
Entitiy diagram for tcs |
| Answer» HOPE IT HELPS YOU❤MARK IT AS BRAINLIEST PLS.. | |
| 27127. |
Python program get structured through what |
| Answer» STRUCTURED programming is a program WRITTEN with only the three constructions sequence, decision (if.. elif statements), and repetition (while or for statements). Important: the body of a Python if, elif, while, or for statement is indicated by indenting four spaces. Python does not USE END statements. | |
| 27128. |
The Gallery in MS Word let's you insert images in your document |
|
Answer» How to Insert a Picture in WordTo add a picture to a WORD DOCUMENT, CLICK Insert > Pictures. ...This option lets you insert an image from another location on your computer. ...Insert pictures in Word from the web by SELECTING Online Pictures…. ...SELECT an image by clicking on it, then click Insert. ...Click on the picture |
|
| 27129. |
What will be the output of the following program? |
| Answer» | |
| 27130. |
Investigate the linear dependency of the vectors x1=(1,1,1,3)x2=(1,2,3,4)x3=(2,3,4,7) |
| Answer» X2=(1,2,3,4)EXPLANATION:HOPE it's HELPS you | |
| 27131. |
Good evening friendsdefine components of data communication |
| Answer» COMPONENTS of DATA CommunicationMessage: The MESSAGE is the information (data) to be communicated. ... Sender: The sender is the device that sends the data message. ... Receiver: The receiver is the device that receives the message. ... TRANSMISSION medium: The transmission medium is the physical PATH by which a message travels from sender to receiver. ... Protocol:Explanation:#Hope you have satisfied with this answer. | |
| 27132. |
This tab let's you insert Word art and Clippard in your document |
| Answer» | |
| 27133. |
there are______ of communication which are application to both written as well as oral communication.(a) 6'cs (b) 7' cs (c) 9' cs (d) all of these |
| Answer» ANSWER should be (C)... | |
| 27135. |
Q.6. Match A with B. AOpenOfficeImpress20penOffice CalcLinuxOpenOffice Writer5 Richard Stallman3 Linux TorvaldBMicrosoft ExcelWindowsStarted the movement to create free softwareDevelopment of Linux is credited toMicrosoft WordMicorsoft PowerPoint |
|
Answer» Open Office (Office Productivity Suite). 26. LINUX. 27. What is Linux? 27 ... The Free and Open SOURCE Software (FOSS) movement is ... Likewise, FOSS DEVELOPMENT starts off highly.Explanation:hope it will HELP you |
|
| 27136. |
Factors of self confidence development |
|
Answer» factors of self confidence developmentExplanation:Positive thinking, practice, training, KNOWLEDGE and talking to other people are all useful ways to help improve or BOOST your confidence levels.Confidence comes from feelings of well-being, ACCEPTANCE of your body and mind (your self-esteem) and belief in your own ABILITY, skills and experience. Confidence is an attribute that most people would LIKE to possess.thank you ☺️✌️✌️ |
|
| 27137. |
Say true and false computer has four major components |
|
Answer» ya it is true the FOUR components are monitor,CPU,MOUSE, keyboard |
|
| 27138. |
· Write a C++program to create a class STUDENT the data members of STUDENT class. ROLL_NoNameMarks |
| Answer» | |
| 27139. |
State the package that contains the class |
|
Answer» scanner" for importing scanner class. Scanner is a class in JAVA. util PACKAGE used for OBTAINING the input of the PRIMITIVE types like int, double etc. and STRINGS |
|
| 27140. |
there are ______ of communication which are application to both written as well as oral communication. |
| Answer» 7' csExplanation: | |
| 27141. |
5. Why was Khuswant Singh’s grandmother disturbed when he started going to school in the city? |
|
Answer» please mention the chapter also. I have read the chapter earlier that's why I am telling Explanation:the AUTHOR's grandmother was disturbed when he JOINED the city SCHOOL because she could not accompany him to school and as a result she had last time to talk to her grandson. secondly he was taught science and English in which she could not EXTEND any HELP. |
|
| 27142. |
Explain all types of computers with examples |
|
Answer» Computers can be broadly classified by their speed and computing power.S.No. Type Specifications1 PC (Personal Computer) It is a single user computer system having moderately powerful microprocessor2 Workstation It is also a single user computer system, similar to personal computer however has a more powerful microprocessor.3 Mini Computer It is a multi-user computer system, capable of supporting hundreds of users simultaneously.4 Main Frame It is a multi-user computer system, capable of supporting hundreds of users simultaneously. Software technology is different from minicomputer.5 Supercomputer It is an extremely fast computer, which can execute hundreds of millions of instructions per second.PC (Personal Computer)Personal ComputerA PC can be defined as a small, relatively inexpensive computer designed for an individual user. PCs are based on the microprocessor technology that enables manufacturers to put an entire CPU on one chip. Businesses use personal computers for word processing, accounting, desktop publishing, and for running spreadsheet and database MANAGEMENT APPLICATIONS. At home, the most popular use for personal computers is playing games and surfing the Internet.Although personal computers are designed as single-user systems, these systems are normally linked together to form a network. In terms of power, now-a-days high-end models of the Macintosh and PC offer the same computing power and graphics capability as low-end workstations by Sun Microsystems, Hewlett-Packard, and Dell.WorkstationWork StationsWorkstation is a computer USED for engineering applications (CAD/CAM), desktop publishing, software development, and other such types of applications which require a moderate amount of computing power and relatively high quality graphics capabilities.Workstations generally come with a large, high-resolution graphics screen, large amount of RAM, inbuilt network support, and a graphical user interface. Most workstations also have mass storage device such as a disk drive, but a special type of workstation, called diskless workstation, comes without a disk drive. Common operating systems for workstations are UNIX and Windows NT. Like PC, workstations are also single-user computers like PC but are typically linked together to form a local-area network, although they can also be used as stand-alone systems.MinicomputerIt is a midsize multi-processing system capable of supporting up to 250 users simultaneously.Mini ComputerMainframeMainframe is very large in size and is an expensive computer capable of supporting hundreds or even thousands of users simultaneously. Mainframe executes many programs concurrently and supports many simultaneous execution of programs.Main FrameSupercomputerSupercomputers are one of the fastest computers currently available. Supercomputers are very expensive and are employed for SPECIALIZED applications that require immense amount of mathematical calculations (number CRUNCHING).Super ComputerFor example, weather forecasting, scientific simulations, (animated) graphics, fluid dynamic calculations, nuclear energy research, electronic design, and analysis of geological data (e.g. in petrochemical prospecting). |
|
| 27143. |
Write a program to accept radius of a circle and print its area |
|
Answer» it HELPS YOUPLEASE FOLLOW and MARK as BRAINLIEST |
|
| 27144. |
visual communication is the act of using photographs, video, art, drawing, sketches, chart and graphs to convey information. (a) true (b) false |
| Answer» TRUE is the CORRECT ANSWER | |
| 27145. |
What is SQL In Computer |
|
Answer» nswerSQL, in full structured query LANGUAGE, computer language designed for eliciting information from databases.little long answerStructured Query Language (SQL) is the standard and most widely USED programming language for relational databases. It is used to manage and organize data in all sorts of systems in which VARIOUS data RELATIONSHIPS exist. SQL is a valuable programming language with strong career prospects. hope this HELPS ☺️ |
|
| 27146. |
.In the given Chart mark all the components ofchart. |
|
Answer» Which CHART???????????????? |
|
| 27147. |
What is the use of illustrations |
|
Answer» tion:An illustration is a decoration, INTERPRETATION or visual explanation of a text, concept or process, designed for integration in published MEDIA, such as posters, flyers, magazines, books, TEACHING materials, animations, video games and films. |
|
| 27148. |
What is the role of common Indian and with respect to social moveme |
| Answer» TION:An Introduction to Indian Social Structure For RBI Grade B Phase 2 Exam | Economic & Social IssuesSocial Structure in India is sectioned under the Economic & Social Issues Paper for RBI Grade B Phase 2. This topic is extremely important as it covers a lot of SUBTOPICS that are extremely relevant for the exam. A lot of questions come from this section, hence aspirants should not ignore this topic. We will delve deeper into this topic to TRY and understand it better.Introducing Social Structure In India | ESI Paper For RBI Grade B MainsThe social structure basically refers to an organized relationship between the basic components of a social system. These structures exist in all societies regardless of their ethos, history or any cultural variability. Being an EXTERNAL phenomenon, it determines the external aspect of society. Some of the important features of Indian social structure are the presence of a complex society, racial and lingual diversity, casteism, multiculturalism, regionalism, traditional society, etc.More than any other part of the world, India is known for its diversity in TERMS of religion, caste, language, culture, tradition, food habits, etc. Each of these elements corresponds to a distinct set of social relationships which in turn forms a social structure. From the exam point of view, the following topics are covered under the topic Social Structure of India in Economic | |
| 27149. |
If int 17 y 20 then find y after execution y/=y++%--x+ ++x/++y |
|
Answer» Explanation:I HOPE HELP you thank you plz mark make SURE the BRAINLIEST |
|
| 27150. |
Say true or false 4) Linux XP is the first version of Linux |
|
Answer» trueExplanation:If you concentrate on this question you will get that LINUX xp got an ADVERTISEMENT ALSO |
|