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.

22351.

Store the name Abhinav in A

Answer»

t do this .....LITERALLY no

22352.

From control room on which type of clients can we schedule tasks

Answer» TIME CLIENT as WELL as DEVELOPMENT client
22353.

If I can do btech in computer science so I will choose 11 class in maths subject or bio subject

Answer»

You have to CHOOSE MATHS in 11 because BIO is DIFFERENT strem....hope it will helpful ✌❤

22354.

Showcases is one of the capacity testing types. a. True b. False

Answer»

atement is false becauseTest: A CAPACITY test is a test to determine how many users your application can handle before either performance or stability becomes unacceptable.  By KNOWING the number of users your application can handle “successfully”, you will have BETTER visibility into events that MIGHT push your site beyond its limitations. This is a WAY to avoid potential problems in the future.thank you .@~€¥¥$chetan2222

22355.

Difference b/w linking and embedded object ???

Answer»

DIFFERENCE between LINKING and embedding is where the data are STORED and how they are UPDATED after they where linked or embedded.

22356.

Explain the types of internet connection in detail

Answer» E the TYPES of INTERNET CONNECTIONS
22357.

What is task? explain

Answer»

k is a piece of WORK to be done or undertaken."a new manager was given the task of developing the club's TALENT"synonyms: job, duty, chore, charge, labour, piece of work, piece of BUSINESS, assignment, function, commission, mission, engagement, OCCUPATION, undertaking, exercise, business, responsibility, errand, detail, endeavour, enterprise, venture, quest, problem, burden"he set himself the daunting task of writing a full-length book"

22358.

Facebook के जन्मदाता का नाम ?

Answer»

end here is UR ANSWER HOPE IT HELPS ❤❤❤❤❤Mark Zuckerberg is the FOUNDER of the Facebook

22359.

8. What is the difference between procedural and nonprocedural DMLs?

Answer»

ral DMLis low LEVEL DML. Must be embedded in a general purpose language. Individual RECORDS are OBJECTS from the DATABASE and process each separately. Needs program language for looping

22360.

agar aap ek bas ke drayvar ho apki bas chali or pehele stop par ruki waha par 2 utre or 4 chadhe dusre stop par 3 utre 6 chade or tisre stop par 5utre or 1 chadha to drayvar ki age kitni

Answer» KI AGE HAI 15 YEAR
22361.

Write a programm which will take 10 numbers in 1 dimensional array

Answer»

➡import Java. up. *;class B{PUBLIC static void mail (String args[])throws Exception{DataInputStream in=new DataInputStream(System.in);int N[]=new int[10];int i; for(i=0:i<10;i++){System.out.println("Enter any number");n[i]=Integer. parseInt(in.readLine());}}}HOPE IT HELPS

22362.

Question 6 Write a program to accept a sentence and print only the first letter of each word of the sentence in capital letters separated by a full stop. Example : INPUT SENTENCE : “This is a cat” OUTPUT : T.I.A.C Use java

Answer»

o these ATTACHMENTS and there are TWO more CLOSING BRACES At END

22363.

A string is represented as array of characters? State Whether True or False

Answer»

.. FALSE.ARRAY AND STRING ARE NOT EVEN INTERLINKED ....while string can be USED in array.

22364.

Give the function header for Function instructions that does not receive any arguments and does not return a value? (Such a function are commonly used to display instructions to a user)

Answer»

SWER... ❇❇❇*⃣FUNCTION HEADER... ✔ first.. ACCES specifer is to written like public, private... default etc. ✔then if return TYPE then mention the data type of return value.. if not then WRITE void ✔then write a function NAME without space of ur choice... EXAMPLE :--public void CHECK()✨✨✨HOPE IT HELPS ✨✨✨

22365.

A program to accept a two digit number.Add the sum of its digits to the product of its digits.If the value is equal to the number input,output the message “special 2-digit number” otherwise,output the message “not a special tow digit number

Answer»

st the moduleint a,b,C,sum, product;input the VALUE of a and bthensum =a+b product=a*b if(sum== product)OUTPUT special two digit numberelseoutput not special two digit NUMBER

22366.

What is register transfer notation? Write and explain these notations to threeaddress, two-address, single address and zero-address instruction types.

Answer»

r perform task on the basis of instruction provided. A instruction in computer comprises of groups called fields. These field contains different information as for computers every thing is in 0 and 1 so each field has different significance on the basis of which a CPU decide what so perform. The most common fields are: Operation field which specifies the operation to be performed like addition. Address field which contain the location of operand, i.e., register or memory location. Mode field which specifies how operand is to be founded. A instruction is of various length depending upon the number of addresses it contain. Generally CPU organization are of three types on the basis of number of address fields: Single Accumulator organization General register organization Stack organization In first organization operation is done involving a special register called accumulator. In SECOND on multiple registers are used for the computation purpose. In third organization the WORK on stack basis operation due to which it does not contain any address field. It is not necessary that only a single organization is is applied a blend of various organization is mostly what we see generally. On the basis of number of address instruction are classified as: Note that we will use X = (A+B)*(C+D) expression to showcase the procedure. Zero Address Instructions – A stack based computer do not use address field in instruction.To evaluate a expression first it is converted to revere Polish Notation i.e. Post fix Notation. Expression: X = (A+B)*(C+D) Postfixed : X = AB+CD+* TOP means top of stack M[X] is any memory location PUSH A TOP = A PUSH B TOP = B ADD  TOP = A+B PUSH C TOP = C PUSH D TOP = D ADD  TOP = C+D MUL  TOP = (C+D)*(A+B) POP X M[X] = TOP One Address Instructions – This use a IMPLIED ACCUMULATOR register for DATA manipulation.One operand is in accumulator and other is in register or memory location.Implied means that the CPU already know that one operand is in accumulator so there is no need to specify it. Expression: X = (A+B)*(C+D) AC is accumulator M[] is any memory location M[T] is temporary location LOAD A AC = M[A] ADD B AC = AC + M[B] STORE T M[T] = AC LOAD C AC = M[C] ADD D AC = AC + M[D] MUL T AC = AC * M[T] STORE X M[X] = AC Two Address Instructions – This is common in commercial computers.Here two address can be specified in the instruction.Unlike earlier in one address instruction the result was stored in accumulator here result cab be stored at different location rather than just accumulator, but require more number of bit to REPRESENT address. Here destination address can also contain operand. Expression: X = (A+B)*(C+D) R1, R2 are registers M[] is any memory location MOV R1, A R1 = M[A] ADD R1, B R1 = R1 + M[B] MOV R2, C R2 = C ADD R2, D R2 = R2 + D MUL R1, R2 R1 = R1 * R2 MOV X, R1 M[X] = R1 Three Address Instructions – This has three address field to specify a register or a memory location. Program created are much short in size but number of bits per instruction increase. These instructions make creation of program much easier but it does not mean that program will run much faster because now instruction only contain more information but each micro operation (changing content of register, loading address in address bus etc.) will be performed in one cycle only. Expression: X = (A+B)*(C+D) R1, R2 are registers M[] is any memory location ADD R1, A, B R1 = M[A] + M[B] ADD R2, C, D R2 = M[C] + M[D] MUL X, R1, R2 M[X] = R1 * R2

22367.

Files in some specified format can be used to interact with bots.

Answer»

or inrerbate both which is also known as WEB robot is actually a software that can run automated task over internet. These boys can make task both easier, simple and also structurally repetitive. It's is mostly USED in web spidering. In this an automated script can be fetched, analysed. Most of hand of QEV traffic is be it used or made up of bots.

22368.

List the rules for constructing an object oriented systems?

Answer»

of OOP:PolymorphismAbstractionInheritanceEncapsulation----------------------SRP The Single Responsibility Principle A class should have only one REASON to change. OCP The Open-Closed Principle Software entities (classes, packages, methods, etc.) should be open for extension, but closed for modification. LSP The Liskov Substition Principle Subtypes MUST be substitutable for their base types. DIP The Dependency Inversion Principle Abstractions should not depend upon details. Details should depend upons abstractions. ISP The Interface Segregation Principle Clients SHOLD not be forced to depend upon methods that they do not use. Interfaces belong to clients, not to hierarchies. REP The Release-Reuse Equivalency Principle The granule of reuse is the granule of release. CCP The Common Closure Principle The classes in a package should be closed together against the same kinds of changes. A change that affects a closed package affects all the classes in that package and no other packages. CRP The Common Reuse Principle The classes in a package are reused together. If you reuse one of the classes in a package, you reuse them all. ADP The Acylcic DEPENDENCIES Principle Allow no CYCLES in the dependency graph. SDP The Stable Dependencies Principle Depend in the direction of stability. SAP The Stable Abstractions Principle A package should be as abstract as it is stable.---------------------CyberPhaseVisit my YouTube Channel:bit.ly/cyberphaseDo Subscribe

22369.

Full form of sim Don't copy from internet its a challenge If u help me i will mark u as a brainliest Help its urgent Within 2 minutes

Answer» BER IDENTITY mobileHope its CORRECT...
22370.

Awebpages displays a picture .What tag was used to display that picture ? A) Picture b) Mage c) img d) src

Answer» TAG is USED to DISPLAY IMAGE on WEBPAGE
22371.

It's very urgent.pls answer if you know computers..this the third time I'm asking the same thing in different ways to get an answer.i need the configuration of two computers ideally used in computer labs..pls..pls..pls..need answer quick!!!

Answer»

/www.wikihow.com/Set-Up-Two-Computers-for-LANthe ANSWER is in this LINK..

22372.

Explain marquee tag and its attributes with an explain .

Answer»

a very SPECIAL TAG used in HTML document to give an EXTRA effect on the STRING

22373.

Whats the difference between animation and transition? 2:Which view can be used to insert and test their (a)Animation effects (b)Transition effects

Answer»

ransitions are the animation effects that are applied to WHOLE slide WHEREAS animation effects are applied to objects (text, shape, picture etc.) on a slide. For a slide you can have only one TRANSITION effect while each object on the slide can have multiple animation effects.Only know the first question..Sorry don't know the SECOND one...If u liked the answer then PLZ mark me as brain list...

22374.

Write a program in Java to display the first 10 terms of the following series i) 24,99,224,399,..... ii) 2,5,10,17,......

Answer»

:CLASS series_1{PUBLIC static void main(String args[]){String c1="4";String c2="99";for(int i=1;i<=10;i++){if(i%2!=0){System.out.print("2"+c1+" , ");c1="2"+c1;}else{System.out.print(c2+" , ");c2="3"+c2;}}//for loop}//main}//classCODE 2:class series_2{public void main(String args[]){for(int i=1;i<=10;i++){System.out.print((i*i+1)+" , ");}}}LOGIC :First series : for odd positions , 2 is added every time before the number.For even positions , 3 is added before the number .__________________________________________Second series :1² + 1 = 22² + 1 = 4 + 1 = 53² + 1 = 9 + 1 = 104² + 1 = 16 + 1 = 17.....Hope it helps !_________________________________________________________

22375.

What do you understand by scratch programming

Answer»

software is a graphical programming approach that lets you create design and control your own animation based stories games ETC scratch is unlike other computer languages that requires professional programming skills it offers blocks of COMMAND its called SCRAPES that can be drag and dropped to create stories a scratch project can also be shared online USING scratch website

22376.

Html coding for this page...pls.. urgent...no spamming.otherwise reported

Answer» INK CF HUB CHU OVA
22377.

How to write SQL Queries

Answer»

re that you have a database management application (EX. MYSQL Workbench, Sequel PRO).If not, download a database management application and work with your COMPANY to connect your database.Understand your database and its hierarhcy.Find out which fields are in your tables.Begin writing a SQL query to pull your desired data.

22378.

How to write SQL Queries in database

Answer»

re that you have a database management application (ex. MySQL Workbench, SEQUEL Pro).If not, DOWNLOAD a database management application and work with your COMPANY to connect your database.Understand your database and its hierarhcy.Find out which fields are in your tables.Begin writing a SQL query to PULL your desired data.

22379.

Design a bcd-to-decimal decoder using the unused combinations of the bcd code as don't-care conditions.

Answer»

C/HCT42 are BCD to decimal decoders. These decoders accept FOUR active HIGH BCD inputs and provide 10 mutually EXCLUSIVE active LOW outputs. The active LOW outputs facilitate addressing other MSI circuits with active LOW input enables. They are pin compatible with low power Schottky TTL (LSTTL). They are specified in compliance with JEDEC standard no. 7A.The logic design of the '42' ensures that all outputs are HIGH when BINARY codes greater than nine are applied to the inputs.The most significant input (A3) produces an useful inhibit function when the '42' is used as a 1-of-8 decoder. The A3 input can also be used as the data input in an 8-output demultiplexer application.FeaturesMutually exclusive outputs 1-of-8 DEMULTIPLEXING capability Outputs disabled for input codes above nine Output capability: standard ICC category: MSI Applications Driving LED displays Driving incandescent displays Driving fluorescent displays Driving LCD displays Driving gas discharge displays

22380.

Sohan forgot to insert an important worksheet before an existing Worksheet,how will he correct his mistake?

Answer»

ksheets are usually used in Microsoft Excel.The names of the sheets are written at the bottom as  Sheet 1, Sheet 2, Sheet 3 and so on.You can change the name of these sheets ACCORDING to your requirement just by clicking the Right Mouse button on the name of sheet. A box will open. Choose the option 'Rename' .Now if Sohan forgot to insert worksheet before existing worksheet, he just needs to insert a THE REQUIRED WORKSHEET by using the FILE option from the Top Right Corner.Then choose Open and insert the required work sheet.Now just DRAG the required worksheet before the existing worksheet.For dragging, move the cursor of the mouse on the name of the required worksheet, press the LEFT button of the mouse and keep it pressed. Drag the cursor before the existing sheet while keeping LEFT mouse button pressed. After reaching before the existing sheet, leave the LEFT mouse button. Your required Worksheet has MOVED before the Existing Woorksheet.

22381.

What is Foreign Key

Answer»

key is DEFINED in a second table, but it refers to the primary key or a UNIQUE key in the first table.Hope it HELPS!

22382.

Program in assembly to arrange n numbers into descending order

Answer»

:ASSEMBLY17 An Assembly PROGRAM to arrange given N numbers in Descending order. ... ARR DB 15,12,18,13,19,16,14,20,11,17 this LINE is a declaration of 8-bit Numbers ARRAY initialized with 15,12,18,13,19,16,14,20,11,17 the numbers are seperated by Comma (,).

22383.

Transmission lines abcd parameters connected in parallel

Answer»

tion:yes the ABCD PARAMETERS is always CONNECTED to the PARALLEL

22384.

What are the preprocessor directives in c on?

Answer»

n't want to be in the MIDDLE of the African AMERICAN to be with me and I will try to MAKE it up to the MARKET for the FIRST one is the ratio is used to it now

22385.

Which cloud service where company owns the infrastructure?

Answer» CLOUD Service where the company owns the infrastructure. Explanation: Cloud compute service are those service which provides information over the internet. It is a term that is used for ACCESSING and storing the DATA which is over the internet. It is full of applications as well as a development platform which is to server storage as well as a virtual desktop.It helps to accessing the data from our remote server. There is various type of cloud service available in the market for example Amazon web services, kamatera, science soft, etc.Learn more about Cloud ServiceWhat is/are the REQUIREMENTS of cloud service PROVIDERS? brainly.in/question/5178369In which cloud service model virtual machines are provisioned? brainly.in/question/5192601
22386.

What is the meaning of match moving in simple language?

Answer»

e here is ur answer...In cinematography, match moving is a cinematic technique that allows the insertion of computer graphics into live-action footage with correct position, scale, orientation, and MOTION relative to the photographed objects in the shot. The TERM is used loosely to describe several different methods of extracting CAMERA motion information from a motion picture. Hope this HELPS you..@[email PROTECTED]

22387.

When the usb is connected to a system its root hub is connected to the?

Answer» E USB Is Connected To A SYSTEM Its Root Hub Is The PORT In Whicj You Have Connected The DEVICE This Root Hub Is Connected TOTHE Motherboard
22388.

When the system switches on, the operating system does not automatically boot itself?

Answer»

cess of bringing up the operating system is called booting (originally this was bootstrapping and alluded to the process of pulling yourself up "by your bootstraps"). Your computer knows how to boot because instructions for booting are built into one of its chips, the BIOS (or Basic Input/Output System) chip.The BIOS chip tells it to look in a fixed PLACE, usually on the lowest-numbered hard disk (the boot disk) for a special program called a boot loader (under Linux the boot loader is called Grub or LILO). The boot loader is PULLED into MEMORY and started. The boot loader's job is to start the real operating system.The loader does this by looking for a kernel, loading it into memory, and starting it. If you Linux and see "LILO" on the screen followed by a BUNCH of dots, it is loading the kernel. (Each dot means it has loaded another disk blockof kernel code.)So it can be for a few reasons like the OS operating system is crashed or of the BIOS or maybe it's a problem of the chip. I RECOMMEND reinstalling the OS

22389.

Please complete the programming

Answer» C++ PROGRAMMING QUESTION
22390.

Ek loktantrik Sarkar ki mukhya visheshta kya hoti hai

Answer»

sarkar janta DWARA chuni jati HAI 2)ISME Koi tana sahi nahi hoti Hope this HELPS you Mark as a brainliest

22391.

How to create Qr Code??

Answer»

a QR code generator.Choose the type of content you're promoting.Enter your DATA in the FORM that appears.Consider downloading a DYNAMIC QR code.Customize it.Test the QR code to MAKE sure it scans.Track and analyze performance.May 14, 2018

22392.

Write the procedure to add background colour to your webpage?

Answer»

own the NUMERIC code to the RIGHT of the shade.Open your HTML file in your favorite TEXT editor. As of HTML5, the  HTMLATTRIBUTE is no longer supported. ...Add the "html" header to your document. ...Create a blank line between the "style" tags. ...Add the "body" element.

22393.

Which JDK tool helps in creating html document?

Answer»

Information (file structure, classpath, how classes are found, changes)Enhancements(enhancements in JDK 7)Standard JDK Tools and UtilitiesBasic Tools (APPLETVIEWER, apt, extcheck, jar, java, javac, javadoc, javah, javap, jdb)SECURITY Tools (keytool, jarsigner, policytool, kinit, klist, ktab)Internationalization Tools (native2ascii)Remote Method Invocation (RMI) Tools (rmic, rmiregistry, rmid, serialver)Java IDL and RMI-IIOP Tools (tnameserv, idlj, orbd, servertool)Java Deployment Tools (javafxpackager, pack200, unpack200)Java Web Start Tools (javaws)Java Troubleshooting, Profiling, Monitoring and Management Tools (jcmd, jconsole, jmc, jvisualvm)Java Web Services Tools (schemagen, WSGEN, WSIMPORT, xjc)Experimental JDK Tools and UtilitiesNOTE - The tools described in this section are unsupported and experimental in nature and should be used with that in mind. They might not be available in future JDK versions.Monitoring Tools (jps, jstat, jstatd)Troubleshooting Tools (jinfo, jhat, jmap, jsadebugd, jstack)Scripting Tools (jrunscript)Troubleshooting Documentation

22394.

Types of activities of software engineering

Answer»

re MANY ACTIVITIES,and these rprocess requirementsdesignsengineerconstructiontestingdebuggingdeployment

22395.

5.2.5: Height in Meters chodehs

Answer»

Height in Meters chodehsAnswerAs 1m = 100 cm , The Height will be 1.57 m.Step by step explanationwe are given height=h=5.2.5 i cmwe have to CALCULATE height in cmheight=h=?(cm)we will use conversion formula to convert this into cm from meters we KNOW that 1m=100cmfrom here 1cm=1/100mto convert centimeter into meter we will SIMPLY divide the given value by 10and diving the given value by 1000we will GET 1.57m

22396.

How can we get sample image from file explorer ?

Answer»

an in file explorer when you right click on an image file you have the option to run preview on windows 10 you do not(see image) You can in Windows 10 right click and select Open With > Windows Photo Viewer to get to the same point however several times Windows Photo Viewer has disappeared from this list which mean I have to manually go a find it to USE it again. I do not wish to change the file association as I STILL want to open the file with PHOTOSHOP. As an amateur photographer I USED this feature a lot to sort thru a photos quickly it was a quick and simple method.

22397.

*️⃣ HELLO GUYS *️⃣ #Computer Science Question*️⃣ Write a program, input number & find out even or not *️⃣❎ IT'S A REQUEST PLEASE DON'T SPAM ❎*️⃣ ANSWER IF YOU KNOW ‼️

Answer»

e int main() { int number; printf("ENTER an INTEGER: "); scanf("%d", &number); // True if the number is PERFECTLY divisible by 2 if(number % 2 == 0) printf("%d is even.", number); else printf("%d is ODD.", number); RETURN 0; }

22398.

*️⃣ Write a program to find out greater among two numbers using returning without argument *️⃣

Answer»

gram to find greatest among 2 NOS. USING inline()C++---------------------------------------------------#includeusing namespace std;inline int greatest(int a,int B){ int R; r=(a>b)?a:b; return(r);}int main(){ int a,b; cout<<"ENTER 2 nos.:"; cin>>a>>b; cout<<"Greatest no:"<

22399.

Find out five dictionary apps

Answer»

, KANNADA, SPANISH, FRENCH and GERMAN DICTIONARIES

22400.

Maximum number of nics can be associated with the Azure VM ________________

Answer»

wondering what the maximum number of NICS that can be can assigned to a VM in Hyper-V 3 (SERVER 2012)?I know VMware ESXi's CURRENT limit is 10 and Xen is 7, but does Hyper-V also have a limit?