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.

30501.

TELL ME ABOUT GRAPHICS IN BASIC

Answer»

tion:Graphics are VISUAL elements often USED to point READERS and viewers to particular information. They are also used to SUPPLEMENT text in an effort to aid readers in their understanding of a particular concept or make the concept more clear or interesting.HistoryIllustrationPhotographyComputer graphicsWeb graphicsUsesAdvertising !! I hope this will help you !!

30502.

Find the output of the following c program. #include int main () { int a; int arr[5]={1,2,3,4,5}; arr[1]=++arr[1]; a=arr[1]++; arr[1]=arr[a++]; printf ("%d,%d",a,arr[1]); return 0; } a)5,4 B)5,5 C)4,4 D)3,4

Answer» 5, 4Explanation:....:<´¥•¡°<´<°÷¡´©´÷©÷¥``®´€¡¥´•£±£´®¥^`©_©¿^;©,
30503.

What is input devies aur output devies​

Answer»

evice is a device that is USED to enter the data and INSTRUCTIONS into a computer.Output device is a device that is responsible for DISPLAYING the output.

30504.

Java program to print the output of following series 1-2+3-4+5-6.......n​

Answer» PROGRAM to find sum of // first n TERMS of the given series import java.util.*; class GFG { static int calculateSum(int n) { // when n is odd if (n % 2 == 1) return (n + 1) / 2; // when n is not odd return -n / 2; } // Driver code public static VOID main(STRING ar[]) { // no. of terms to find the sum int n = 8; System.out.println(calculateSum(n)); } }
30505.

Input and output device​

Answer» DEVICE:COMPUTER Monitor.Speakers.Headphones.Printers.Projectors.Plotters.Video Cards.Sound Cards.input device:Keyboard.Mouse.Touchpad.Scanner.Digital Camera.Microphone.Joystick.Graphic TABLET.
30506.

How many 'a' will be printed when the following code is executed? #include int main() { int i=0; char c='a'; while(i

Answer»

6Explanation:As i is initialized with 0,with while CONDITION of i<5, followed by incrementation,the i enters the loop for 5 times with values 0,1,2,3,4 resulting 5 'a's to GET printed.And, after the termination of loop, print("a\n") statement prints another a (now the count is 6) and goes to new line; thereby the PROGRAM ends.So, the total NUMBER of 'a's getting printed is 6 in number.

30507.

What is computer and tyes computer​

Answer»

An electronic machine that can STORE, find and arrange information, calculate AMOUNTS and control other MACHINES is known as COMPUTER. We have four different computer types classified according to their PERFORMANCE, power, and size. A computer is an electronic device that accepts data, processes it, stores, and then produces an output. The four basic types of computers are as under: Supercomputer. Mainframe Computer.Hope this helps.

30508.

WRITE DOWN THE E-MAIL ABBREVIATIONS FOR FOLLOWING: (A) AS SOON AS POSSIBLE (B ) BY THE WAY (C) SEE YOU (D) DON'T KNOW ​

Answer»

AS SOON as POSSIBLE EXPLANATION:because in this it is having V1

30509.

Help me out to solve the problems.... ​

Answer»

ane=A slide Pane is LOCATED in CENTRE of your screen the slide Pane SHOWS a large view of the slide on which you are CURRENTLY workingtask Pane=A task Pane

30510.

You want to present the process of creating a slide show in a presentation. Which element in the presentation software would you use to depict the process? A. chart B. shapes C. flowchart D. table E. text

Answer»

Your CORRECT ANSWER is OPTION (C) FLOWCHART.

30511.

SATURN+ URANUS= PLANETSare called cryptorithms or alphabetical coding. Where an alphabet is assigned a code so that the problem is to be solved using given summation. Write a program to solve such questions, which prints the letter and its corresponding digits that satisfy the given addition.​

Answer»

Explanation:8 7 3 4 9 0 4 9 7 0 4 81 3 7 0 5 3 8Explanation:SATURN+ URANUS= PLANETSN + S = S => N = 0U + N = E  => U + 0 = E => there must be a carry=> U + 1 = EA + R = A  => There must be a carry=> A + R + 1 = 10 +A=> R = 9P is Carried => P = 1R + U = T=> 9 + U = T=> 9 + U = 10 + T=> U = T + 1S + U + 1 = 10 + LUsing all above data and a bit of hit & Trial we can getS = 8  A = 7  T = 3  U=4  R = 9  N = 0U = 4  R = 9  A = 7  N = 0 U = 4  S = 8P = 1    L= 3   A=7   N = 0 E = 5  T = 3  S = 8 8 7 3 4 9 0 4 9 7 0 4 81 3 7 0 5 3 8

30512.

Cbse board 10th computer science question papers

Answer»

don't haveExplanation:you GIVE me a you're INSTAGRAM ID

30513.

Differences between computer and calculator​

Answer»

A computer has the capacity of performing the calculations and other LOGICAL functions WHEREAS a calculator only shows arithmetic and geometrical operations. A computer is BIGGER in size and is not that easy to CARRY on its own, whereas a calculator is small and fits in the pocketPlease MARK it as brainliest :-)

30514.

Libra office by computer​

Answer»

:LibreOffice is a FREE and open-source OFFICE suite, a PROJECT of The Document FOUNDATION.

30515.

What will be the output when the following code is executed. #include int main() { int a[6]={1,2,3,4,5,6}; switch(sizeof(a)) { case 1: case 2: case 3: case 4: case 5: printf ("IIT KGP"); break; } printf ("IIT MADRAS"); return 0; } HINT:-type exactly what is printed

Answer» 58 the outputExplanation:COUNT PRINT STRING
30516.

Write a cprogram to preparepaybill for company usingfiles​

Answer»

Explanation:Write a program of pay-bill calculations. Code for Program of pay-bill calculations in C Programming #define     CA1   1000                                         #define     CA2    750                                         #define     CA3    500                                         #define     CA4    250                                         #define     EA1    500                                         #define     EA2    200                                         #define     EA3    100                                         #define     EA4      0                                                                                                         main()                                                         {                                                                   int   level, jobnumber;                                         float gross,                                                         basic,                                                         house_rent,                                                     perks,                                                         net,                                                           incometax;                                               INPUT:                                                         PRINTF("\nEnter level, job number, and basic pay\n");           printf("ENTER 0 (zero) for level to END\n\n");                 scanf("%d", &level);                                           if (level == 0) goto stop;                                     scanf("%d %f", &jobnumber, &basic);                             switch (level)                                                 {                                                                  case 1:                                                                perks = CA1 + EA1;                                              break;                                                  case 2:                                                                perks = CA2 + EA2;                                              break;                                                  case 3:                                                                perks = CA3 + EA3;                                              break;                                                  case 4:                                                                perks = CA4 + EA4;                                              break;                                                  default:                                                                printf("Error in level code\n");                                goto stop;                                           }         house_rent = 0.25 * basic;                                     gross = basic + house_rent + perks;                             if (gross <= 2000)                                                incometax = 0;                                               elseif (gross <= 4000)                                                 incometax = 0.03 * gross;                                    elseif (gross <= 5000)                                                incometax = 0.05 * gross;                                   ELSE                                                              incometax = 0.08 * gross;                        net = gross - incometax;                                        printf("%d %d %.2f\n", level, jobnumber, net);                  goto input;                                                    stop: printf("\n\nEND OF THE PROGRAM");                     }                                                             Output                                                                                                                         Enter level, job number, and basic pay                         Enter 0 (zero) for level to END                                                                                                 1 1111 4000                                                     1 1111 5980.00                                                                                                                 Enter level, job number, and basic pay                         Enter 0 (zero) for level to END                                                                                                 2 2222 3000                                                     2 2222 4465.00                                                                                                                 Enter level, job number, and basic pay                         Enter 0 (zero) for level to END                                                                                                 3 3333 2000                                                     3 3333 3007.00                                                                                                                 Enter level, job number, and basic pay                         Enter 0 (zero) for level to END                                                                                                 4 4444 1000                                                     4 4444 1500.00                                                                                                                 Enter level, job number, and basic pay                         Enter 0 (zero) for level to END                                                                                                 0                                                               END OF THE PROGRAM

30517.

Help help help help help help help help help help​

Answer»
30518.

Consider the itemset {A, B, C, D}. Which of the following statements is always true? A. confidence(ABC ® D)≥ confidence(AB ® CD) B. confidence(ABC ® D) ≥ confidence(AB ®D) C. confidence(ABC ® D) ≤confidence(AB ®CD) D. confidence(ABC ® D) ≤ confidence(AB ®D)

Answer»

ns is correct than OTHERS HOPE you like my answer so PLEASE make me brianlist answer

30519.

What will be the output? #include int main() { int arr[]={1,2,3,4,5,6}; int i,j,k; j=++arr[2]; k=arr[1]++; i=arr[j++]; printf ("i=%d,j=%d,k=%d",i,j,k); return 0; } A)i=5,j=5,k=2 B)i=6,j=5,k=3 C)i=6,j=4,k=2 D)i=5,j=4,k=2

Answer»

A) i=5,j=5,k=2Explanation:You NEED to TYPE just after #INCLUDE otherwise it'll show error. I just RUN it myself and then answering you. So its 100% correct answer. I hope it helps you. Please Mark this Answer as BRAINLIEST Answer. Thanks❤️

30520.

Write a javascript program to enter a number and then print its digits

Answer»

"Starting with any positive integer, replace the number by the sum of the squares of its digits, and REPEAT the PROCESS until the number equals 1 (where it will STAY), or it loops endlessly in a cycle which does not INCLUDE 1. Those numbers for which this process ends in 1 are HAPPY numbers, while those that do not end in 1 are unhappy numbers (or sad numbers)".

30521.

Which assignment is not valid for integer arrays in c programming?(arr,arr 1 and arr2 are integer arràys) A)arr[4]={1,2.5,3,4}; B)arr[]={1,2,3,4} C)arr 1=arr 2 D)all àre valid assignment

Answer»

tion:Which assignment is not valid for integer ARRAYS in c programming?(arr,arr 1 and arr2 are integer arràys) A)arr[4]={1,2.5,3,4}; B)arr[]={1,2,3,4} C)arr 1=arr 2.

30522.

What is a workbook???​

Answer»

Workbooks in the American EDUCATION SYSTEM are paperback textbooks issued to students. Workbooks are USUALLY filled with practice PROBLEMS, where the answers can be written directly in the book. Mark as the brainliest please

30523.

Plz tell me What is computer ?​

Answer»

computer is a machine that can be INSTRUCTED to carry out sequences of ARITHMETIC or logical OPERATIONS automatically via computer programming. Modern COMPUTERS have the ability to follow generalized sets of operations, called programs. These programs enable computers to PERFORM an extremely wide range of tasks.

30524.

Hello dude..... how are you....plz.. tell me the answer...◆what is cloud computing​

Answer»

omputingthe practice of USING a NETWORK of remote servers HOSTED on the Internet to store, MANAGE, and process data, RATHER than a local server or a personal computer.

30525.

Any two example of operating system software

Answer»

Some examples include  :----   versions of Microsoft Windows (like Windows 10, Windows 8, Windows 7, Windows Vista, and Windows XP), Apple's macOS (FORMERLY OS X), Chrome OS, BlackBerry Tablet OS, and FLAVORS of the open source operating SYSTEM Linux.

30526.

Define Google docs.​

Answer»

Explanation:GOOGLE Docs is a free Web-based application in which documents and spreadsheets can be created, edited and stored online. FILES can be accessed from any COMPUTER with an Internet CONNECTION and a full-featured Web browser. Google Docs is a part of a COMPREHENSIVE package of online applications offered by and associated with Google.

30527.

What is a satellite​

Answer»

a SATELLITE is an object that has been INTENTIONALLY placed into orbit. These objects are called artificial satellites to distinguish them from natural satellites such as Earth's Moon. On 4 October 1957 the Soviet Union launched the WORLD's first artificial satellite, Sputnik 1.

30528.

Default height of a row 16 points72 points15 points​

Answer» BRO pls GIVE the CORRECT ANSWER so that I can give the APPROPRIATE answer
30529.

What is primary memory and secondary memory​

Answer» PRIMARY is MAIN memory in computer and SECONDARY refers external storageExplanation:LIKE & FOLLOWE
30530.

The default height of row is 1) 16 points 2) 72 points 3) 15 points​

Answer»

72 pointExplanation:Row HEIGHT is MEASURED in POINTS and there are 72 points to an INCH.

30531.

Example of system software​

Answer»

s of system software include operating SYSTEMS LIKE macOS, GNU/Linux and MICROSOFT Windows, COMPUTATIONAL science software, game engines, industrial automation, and software as a service applications.SELECT TO BRAINLIST ANSWER...

30532.

The data in column acc to specified creteria

Answer» HOPE IT HELPSMARK AS BRAINLIEST EXPLANATION:WHAT IS YOUR QUESTION DEAR ☺️
30533.

Tick the correct answer 1. the last column in an excel worksheet is labelled as 1) XFS 2) XFD 3) XFB​

Answer» IIB Is CORRECT answerFollow me
30534.

Some fact about algorithm​

Answer»

In MATHEMATICS and computer science, an algorithm is a finite sequence of well-defined, computer-implementable instructions, TYPICALLY to SOLVE a class of problems or to PERFORM a computation.

30535.

What is application software answer my question in simple words no to copy from google​

Answer»

tion:application SOFTWARE is set of code which is COMPILED to CREAT an program which helps us in our WORK such as utility

30536.

What do you mean by function in excel​

Answer»

A function is a PREDEFINED formula that performs calculations using specific values in a particular order. Excel INCLUDES many common functions that can be used to quickly find the sum, average, count, maximum value, and minimum value for a RANGE of cells.

30537.

Definition of neutron star​

Answer»

tial object of very small radius (typically 30 km) and very high density, COMPOSED predominantly of CLOSELY packed neutrons. Neutron stars are thought to form by the gravitational collapse of the REMNANT of a massive star after a supernova explosion, provided that the star is INSUFFICIENTLY massive to PRODUCE a black hole.

30538.

Virus and worms are collectively called​

Answer»

malwareExplanation:

30539.

Print statement display a question mark on the screen

Answer»

print("?")EXPLANATION:In python, if you want to print something on the screen, PLACE it in between the DOUBLE quotes as a string in the print()

30540.

How is a presentation used by different people

Answer» PRINT("?")this is for PYTHON
30541.

In mail merge operation Which of the following might represent the main document?

Answer»

tion:In mail merge OPERATION which of the following might REPRESENT the main DOCUMENT? a. A sales brochure B. A form letter C. A database of Names and...

30542.

What is the most important button on the desktop

Answer»

I THINK, My Computer Explanation:Because all the INFORMATION of your computer is STORED in this folder

30543.

Section C Multiple Choice Questions (10 marks) 1.Which of the following is not a port found in a desktop computer? A.Central port B.IEEE 1394 port C.Audio jack D.Ethernet port 2.Which of the following connection ports can be found in most notebook computers? (1)PS/2 port (2) USB port (3) VGA port A.(1) only B.(2) only C.(2) and (3) only D.(1), (2) and (3) 3. 2.8 GHz is about_______. A.28 MHZ B.280 MHZ C.2,800 MHZ D.28,000 MHz 4.Which of the following statements about a control unit is correct? A.It saves the results calculated by arithmetic and logic unit B.It interprets instructions from the main memory C.It performs addition and subtraction operations. D.It performs logical operations

Answer» 2 I THINK so but it MIGHT be WRONG
30544.

Which of the following is not a type of - constructos ?(a) Copy constructor b.) friend constructor(6 Default Constructor (d) Parameterized constructor​

Answer» B is the ANSWER of the QUESTION
30545.

Fill in the blanks 7, e-m a ... is the way to send mail from one...compute to another computer2. The most important advantage of e-mail is that it is... .......... and ........ 3. To send an e-mail, you need an.......and..... theof the receiver4. E-mail can reach anywhere in the....​

Answer»

sorry dear I don't know your ANSWER , REALLY sorry dear you can ASK the question one more TIME to ANOTHER person ok take care yourself

30546.

Two internet search engine?​

Answer» GOOGLE and BING and YahooPlease MARK me as the BRAINLIEST and FOLLOW me!!!
30547.

Write a algorithm to print the age of vote for check

Answer»

Here is your ALGORITHM:Explanation:Step 1: StartStep 2: Input a NUMBER and STORE it as AGE.Step 3: Check if AGE>=18. If true then go to Step 4, else go to Step 5.Step 4: Print "You are applicable to vote." and go to Step 6.Step 5: Print "You are not applicable to vote." and go to Step 6.Step 6: StopMARK THIS AS THE BRAINLIEST ANSWER!

30548.

............is a computer which services to another computer.

Answer» TION:SERVER is a COMPUTER with SERVICES to ANOTHER computer.
30549.

Write the name of two input and output devices​

Answer» INPUT- KEYBOARD N mouseoutput-printer n MONITOR..... XD
30550.

What are database object​

Answer» TION:An object database is a database management system in which information is represented in the form of objects as used in object-oriented PROGRAMMING. Object databases are different from relational databases which are table-oriented. Object-relational databases are a hybrid of both APPROACHES