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.

15901.

I have a car but my brother has two cars”. Here, car and cars are similar words andNLP captures them into one common entity. What is this entity

Answer»

ANSWER:

double entity if this help u PLZ give me HEART

15902.

What does the Title bar display?​

Answer»

ANSWER:

The Title BAR displays the application name and the name of the active DATA file (or untitled if no data file is ASSOCIATED with the data being displayed). The Toolbar contains buttons for frequently-used commands. The Menu bar displays the available menus and commands.

Hope It Help you

15903.

Is any data or instruction entered into the computer.

Answer»

ANSWER:

No DATA or INSTRUCTION ENTERED into the computer.

but we can ADD

15904.

Multiple Choice Questions (MCQ's):coined the term personal computer.Ed. Roberts in1.(b) 1965(C) 1975(a) 1945(d) 1985(​

Answer»

ANSWER:

(d) 1985

Explanation:

PLEASE FOLLOW NE

15905.

Question No. 4AAA'1The Laplace transform of a function F(t)=The F(t) is(5+1)t-1+ ett+1+e-t-1tetO 2tte"​

Answer»

what's the QUESTION ACTUALLY I don't UNDERSTAND?

15906.

What is meant by Program Virus? ​

Answer»

Definition: A computer virus is a malicious software PROGRAM loaded onto a USER's computer without the user's knowledge and PERFORMS malicious ACTIONS. ... It can self-replicate, inserting itself onto other programs or files, INFECTING them in the process

15907.

Java program to print To print the following pattern4332221 1 1 1​

Answer»

N=4;

for (i=1;i<=4;i++)

{

for(J=1;j<=i;j++)

{

System.out.print(n)

}

n--

}

15908.

Write the following expressions using operators used in Python by mentioning the module to beimported :i) x = a3 + b3 + c3(ii) A=πr(r+h)2(iii) x=(-b±√(b 2 -4ac))/2a.​

Answer»

ANSWER:

ydiydgjxjgxgjxkyoyfuofoufouflu

15909.

Write a Program in C to input marks in five subjects and display the following output:Math = 90 English = 70 Science = 69 Social Studies = 77 Sanskrit = 99​

Answer»

Answer:

#include

#include

void main()

{

int a,b,c,d,e,average;

CLRSCR();

printf(“Enter MARKS of subject 1:”);

scanf(“%d”,&a);

printf(“Enter marks of subject 2:”);

scanf(“%d”,&b);

printf(“Enter marks of subject 3:”);

scanf(“%d”,&c);

printf(“Enter marks of subject 4:”);

scanf(“%d”,&d);

printf(“Enter marks of subject 5:”);

scanf(“%d”,&e);

average=(a+b+c+d+e)/5;

printf(“nAverage=%d”,average);

getch();

}

Explanation:

hope that HELPS you

15910.

What is a slide? in computer subject ​

Answer»

EXPLANATION:

With a slide SHOW or slide presentation, a slide is a SINGLE page or image shown in a slideshow. For example, when watching a picture slideshow of ten PICTURES a single picture is considered a slide. With a presentation, a slide is one page of text, images, or ANIMATIONS

15911.

Which options is used by computer to store deleted items​

Answer»

ANSWER:

WINDOWS use RECYCLE BIN to store DELETED items.

Hope it helps you...

15912.

What is the distance range of wimax

Answer» WIMAX has different RANGES but minimum is CIRCUMFERENCE about 300M .
15913.

What is standard family of wimax

Answer»

THe forum DESCRIBES Wimax as"a standards BASED technology enabling the delivery of lastmile WIRELESS broadband access as an ALTERNATIVE to cable and DSL

15914.

What is the data rate of wimax

Answer» WIMAX provides more than 10 mbps speed in a SEPARATE DEVICE without need of cable , modem & BROADBAND services .
15915.

List three benefits of using wimax? .........plz

Answer»

It can be quickly built at RELATIVELY low cost by INSTALLING few wireless base stations.
Enables HIGH SPEED voice and data transfers.
Offers potential for development,new APPLICATIONS and opportunities.

15916.

What is the use of system.out.println in java

Answer»

It displays the output message.
In the STATEMENT system is the class in java.lang package and PRINTLN is a function.
println shifts the cursor to a new LINE.

15917.

Who is the founder of face book..i need only the name?also give me a free computer programming language??

Answer» MARK ZUCKERBERG..
COMPUTER LANGUAGE is PYTHON
15918.

I have project on writing a program on employee salary slip using java programinngplzzzzzzzz ans it soon i need to submit it on friday

Answer»

U knw arrys if u knw thn ENTR values first by scnnnr or buffr clss.and by USING if else loope.u cn do it

15919.

I am in class 9 icse and urgently need the solution of the following bluej program:Write a program which takes the number of units consumed by a consumer and calculates the bill.The condition to calculate bill is:Rupees 350 fixed for rentNo amount for first 100 unitsrupees 1.90 per unit for next100 unitsrupees 2.90 per unit for next 50 unitsrupees 3.90 per unit for remaining unitsPlease give the solution immediately!

Answer» SEE the ATTACHMENT...COPY the CODE.
15920.

What will happen if computer is not invented?

Answer»

If COMPUTER was not invented then , we won't be able to know and search such a great AMOUNT of information about our world. It sharps and opens our MIND . But it also has many demerits like , people especially TEENS visits wrong sites which REMOVES them from their path of success.

15921.

____________ is a first high level programming language invented by john backus but it delivered as compiler .

Answer» FORTRAN is first HIGH level programming LANGUAGE INVENTED by john backus but it delivered as compiler .
15922.

What are the important uses of computer and how it is important ?

Answer» computer is very important gadget in our life that  was  using in various fields :-
advertising - use as publications and make publicity by various TYPES of softwares .
business - use as record of employees , workers , STAFFS , PRESENTATIONS ,etc.
medical USES  - use as keeping records of patients and medicines .
security - it is use as security by special type of cameras , codes , defence management .
education - for learning ,mathematical calculation ,and other digital project works .
entertainment - it is use as drawing pictures , watching movies and playing various types of games , etc.
communications - for e-mail , chats , voice and video call services , etc.

15923.

which of the following is the popular programming language for developing multimedia and web pages ? a) COBOL b) LOGO c) BASIC d) JAVA

Answer» d) JAVA is popular PROGRAMMING LANGUAGE for DEVELOPING multimedia and web pages .
15924.

_________________ is a programming language that was designed for the use of mathematical formulas and matrices .

Answer» SCIENTIFIC LANGUAGE is a programming language that was DESIGNED for the use of mathematical formulas and MATRICES .
15925.

Vb script example with variables operators inputbox .

Answer»
 
 
 
 
15926.

write a visual basic program to find factor for inputed number by the user using for loop,while loop,do while loop ,do until loop,while wend loop

Answer» Loops provide the ability to repeatedly execute the same block of CODE, and to each time change values such that each run through the loop produces different RESULTS. Visual BASIC provides four main kinds of loops: the classic Do-Loop, the Do-Until Loop, the Do-While Loop, and the For-Next Loop...
Do-Loops means this quite simply, EXECUTES the block of code, and when it reaches Loop, returns to the beginning of the Do Loop and executes the same block of code again.

15927.

Who is the founder of wikipedia? i want the main person

Answer» JIMMY WALES is the MAIN person
another one is Larry SANGER
15928.

Why android os is better than other os

Answer»

1.Endless SHARING OPTIONS
2.Third-party Software Keyboards
3.More CUSTOMIZATION, As Usual
4.Visible FILE System
5.Better Notifications Bar
6.Images with CONTACT List
7.Multiple User accounts to be set on the same Android tablet
8.Google Now Trumps Siri
9.Multimedia Ease
10.More Free Applications
11.Unlock Options
12.Phone Unlock Options



15929.

How to create encryption message?

Answer»

Make your encryption scheme something you can easily REMEMBER whenever you look at the encoded information. One or two rules/steps should be enough. If you make too many rules/steps when creating the scheme it will be much harder to RECALL when you need to USE it to decode your information.Show a few samples of encoded information to your smartest FRIENDS and see if they're able to decode it within a few minutes.Test out your encryption scheme on unimportant information for a few weeks to make sure you remember it after some time has PASSED. If you don't, you'll need to come up with a more simple scheme that you won't forget.

15930.

Which best describes the compositions of layers C and D?A.C is like plastic; D is solid.B.C is liquid; D is solid.C.C is solid; D is like plastic.D.C is solid; D is liquid.

Answer»

The figure represents the LAYERS of earth. 


C depicts the mantle which is a highly viscous LAYER and is MADE up of silicon, iron, oxygen, and other MINERALS.

D represents the earth’s rocky crust which is a solid layer made up of oxygen, iron, silicon, aluminum, granite, dense iron magnesium silicate igneous rocks etc.


Hence the answer is Option B - C is liquid; D is solid.

15931.

WHAT ARE THE advantages and Disadvantage of computer ppt or in word or in 100 wordspls do it fast first answer will get best and it is for 10 point pls

Answer» here is a 147 word DOCUMENT on the 
ADVANTAGES

1 it role in the society is very high
2.after its invention the life of man is changed
3. we can USE it for our study purpose which helps us getting GOOD MARKS in examination
4. we can do ONLINE shopping, booking, banking etc
5.getting information on any topic is easier 
6.it is easier to send messages online
7.we can save a large amount of documents on the computer
8. our tasks become easier

disadvantages-
1.uneducated people are not able to operate it
2.it is not affordable by the poor
3. it makes us lazy
4.some use it for bad purpose and uses
5.we become computer addicts and do not communicate with our friends
6.children are easily prone to them making them lazy
7.our privacy on the computer might be exploited
8.we have more health risks than usual 
15932.

Difference between 1)multiplexer and De-multiplexer2)Decoder and Encoder

Answer» 1.
Multiplexers are also called data selector.& de-multiplexer is called data distributer.
MUX has multiple inputs & one output & that of de-multiplexer has one input & many outputs.MUX has n-inputs,m-select lines &1-output. De-multiplexer has 1-input,m-select lines & n-outputs.

2.
An encoder changes the FORMAT of information from one form to another, for improving the speed and accuracy when transmitting, for keeping information securely, and for standardization. Encoder might reduce the effective storage size by converting the data into another format.
A decoder performs the opposite functions of the encoder, reversing the encoding process making converting the information to its PREVIOUS format or other accessible format. For example, in electronics if a signal is ENCODED using an Analog to Digital Converter for transmission purposes the receiver has to decode the signal using Digital to Analog Converter to retrieve the original analog signal. In this CASE, ADC ACTS as the encoder and DAC act as the decoder.
15933.

Hi friends! Please answer the following question!Write QBASIC program to make a list of all the children of a class who were absent on Monday.

Answer» CLS
PRINT "This is a list of CHILDREN ABSENT on Monday"
Input name;N$
Input name;N$
Input name;N$
Input name;N$
END

output-
This is a list of children absent on Monday
Name Geeta
Name Simran
Name Kabir
Name OM

15934.

What is counter?explain Asynchronous 4-bit binary counter?

Answer»

In DIGITAL LOGIC and COMPUTING, a counter is a DEVICE which stores (and sometimes displays) the number of times a PARTICULAR event or process has occurred, often in relationship to a clock signal.

15935.

Name 2 real no. data types and their sizes in bytes

Answer»

1 KB= 1024 byte
1 mb= 1048576 byte
1 bit= 0.125 byte

15936.

Distinguish between the following comment symbols.i. /*........*/ii. /**........*/

Answer»

If these are in python 
1) is of LIST to add MANY elements
2) is a dictionary to add both KEY and VALUE

15937.

Class is an object factor.justify the above statement with an example.

Answer» A CLASS is a BLUEPRINT for an object. Using a class, we can create as many objects as we want as defined in the class. That is why it is called an object factory.
15938.

Can you answer me about usage of tools and techniques of computer?

Answer»

. there are 2 types of TECHNIQUE
An interaction technique
 input technique which is a COMBINATION of hardware and SOFTWARE and that PROVIDES a way for computer users to accomplish a single TASK
there are 2 type of tools manual and automatic tool.

15939.

Write the program to display the result of student on marks obtained .

Answer»

#define SUBJECTS 6
#define PASSMARK  35
void main(int argc, char *argv[])
{
   int n = 0,  marks [SUBJECTS], failed=0;

      for  (n = 0; n < SUBJECTS ; n++ )    // read in marks for all subjects
          scanf("%d",& marks[n]);
      for  (n = 0; n < SUBJECTS ; n++ )   // check for pass in each subject
          if (marks[n] < PASSMARK)   failed++;
     // now check
     if (failed > 0) then
          printf("You have failed in %d number of subjects  :( , BETTER luck NEXT time \n", failed);
     ELSE
          printf("You have PASSED in all subjects! Congrats!  :) \n");

}

15940.

Give me some programs in java to use different types of operators .

Answer» some PROGRAMS of java are  :-
on operators 

/* PROGRAM to add three numbers */
PUBLIC class addnum
{
             public static void MAIN(STRING arg [])
             {
         int num1 = 20
         int num2 = 30
         int num3 = 40
         int tot;
         tot = num1 + num2 + num3 ;
       system.out.printIn("total of + num1 +"and" + num2 +"and"+num3+"is"+tot);
    }

  
 control flow statements 
program to display table of 3 using for loop
public class table of3

{
       public satic void main(string arg [])
       {
                int i,j;
                for (i = 1 ; <= 10;i++)
                {
                  j = 3 * i;
                  system.out.printIn("3*"+i+"="+j);
                }
        }
}

15941.

Want some Qbasic statements(Minimum 3)

Answer» LET N = 1
LET SUM = 0

LOOP:
LET  SUM = SUM + N
LET N  = N + 1
IF N < 10 THEN GOTO  LOOP

PRINT N, SUM

END
=========================
ANOTHER PROGRAM

LET N = 1
PRINT  "NUMBER",  "ITS SQUARE",  "ITS CUBE"

FOR N = 1 TO 25  STEP 1
   PRINT  N,  N*N,  N*N*N
NEXT N

END

15942.

What is the importance of ethics in e-commerce ?

Answer»

E-commerce is the commerce related to trading that takes place on the Internet web SITES.   Internet is essentially, a set of websites hosted on some servers far away from the physical locations of customers.  The consumers and DEALERS have to interact through the internet for viewing products, ORDERING products, delivery and the related commercial transactions.

    Ethics are very IMPORTANT for the e-commerce trasactions.  We cannot physically see the commodities, and the vendors.  We only see the pictures and perheps voices (recorded).  For consumers to trust and order the products online, the websites have to be truthful.  The ethical values like honesty, truthfulness, being open and transparent, helpful nature are to be present on both sides of a transaction.   The vendor should not steal any data (passwords, key numbers) from the customer.  The consumer must give proper details for the dealer to trust him and complete the transaction.
  
     The customer must be ethically good and the dealer (vendor) too should be ethical on his side.  Otherwise, the entire e-commerce will LOOSE its purpose.  The entire use of Internet based e-commece will be defeated by unethical practices.

    Unethical practices like cheating, stealing and mischief over internet during e-commerce activities are criminal offences.  They are punishable under law.  Hence, the ethical practices are to be followed.


15943.

Q.1 What are salient features of “Commonwealth Literature”? (14)ORWrite a detailed note on the central theme of A Dance of the Forests.Q.2 “Naipaul‟s ambivalence toward...

Answer»

Commonwealth LITERATURE, Post-Colonial Literature in English, NewLiterature in English, World Writing in English – these are just some OFTHE terms being USED to describe the writings of ‘members’ of theformer BRITISH Empire.

15944.

What is the full form of www.com

Answer»

WWW stands for World Wide Web and .com is short for the COMMERCIAL.

World Wide Web is the information space in which the documents as WELL as other web resources will be mainly identified by the Uniform Resource Locators (URLS), hypertext links and they COULD be accessed by online internet to the excellence.

15945.

I want information on Usage of tools and techniques

Answer»

There are so many types of tools for use.some are used for bikes some are used for cars some are used for cooking and etc.A technique is REQUIRED to how to use them and we learn them from collage and institutes.There are two types of tools manual and automatic manual are cheap in price but automatic tools are expensive.automatic tools are using in big factories for manufacturing and some other USES where manual tools are used in every WORK like REPAIRING of cars and others.

15946.

What is the function of cloud computing and why cloud computing is more important

Answer»

The word cloud in ''cloud'' computing is metaphorically USED for INTERNET computing.
it means means "a TYPE of Internet-based computing," where DIFFERENT services such as servers, STORAGE and applications are sent to a organization's computer.
it is important because it
Identifies  Internet Computing Capabilities
Avoids Upgrade Problems
Avoid Additional Complexity

     

15947.

__________________ is a object oriented version of C programming language which was developed by Bjarne .

Answer» C++ is an object oriented VERSION of C programming LANGUAGE which was DEVELOPED by BJARNE .
15948.

The __________ function determines the greatest value out of the lowest value out of the specified range .

Answer» The  MAX FUNCTION determines the greatest value out of the lowest value out of the SPECIFIED range .
15949.

Write an algorithmn for finding area of a circle?

Answer»

Algorithm AreaOfCircle
Begin
       INPUT RADIUS
        PI = 22/7
       Area = Pi * radius * radius
       OUTPUT Area
End


15950.

What is the use of F1 key in MSWORD ?

Answer»  F1 KEY is OFFICE ASSISTANT tool which provides HELP in the PROGRAM in topics and tips  for our task .