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.
| 23351. |
what should be your response, if you receive an email stating that you have won the lottery or received some inheritance from an unknown person. |
|
Answer» just ignore that type of messages from unknown MEMBERS or any known ONE too!! EXPLANATION:AS DUE TO PANDEMIC THERE WILL BE A RISE IN PRANKS,CYBER CRIME ,ETCWE ALL SHOULD TAKE CARE OF OUR OWNAND DONT SHARE IDs WITH ANYONEREPORT THE PERSON FIRST OF ALLAND TURN IT IN TO AUTHORITIES |
|
| 23353. |
Convert 13 and write the binary equivalent. please dont send me the pic and send me the steps |
|
Answer» hi...Explanation:for CONVERTING (13)10 to its binary equivalent you should divide it REPEATEDLY with 2.. first step-13 /2 will give the quotient as 6 and 1 as remainder... second step-6/2 will give the quotient as 3 and 0 as remainder.. THIRD step -3/2 will give the quotient as 1 and 1 as remainder .. so FINALLY we get ..(1101)2 ... which is the binary equivalent of (13)10.. hope it helps you please mark bainliest and for further refer the image... |
|
| 23354. |
How would you password protect your document ? write steps. |
|
Answer» Explanation:1. CLICK on Office button or file tab if you are using MS Word.2. on the info tab, you'll find PROTECT document. 3. Click on Encrypt with password4. ENTER your password |
|
| 23355. |
In which group do you find the polygon tool? |
| Answer» UR ANSWER is aboveExplanation:PLEASE CHECKA BOVE | |
| 23356. |
How will you save your text document in PDF format in writer ? |
|
Answer» tion:Open your text or word PROCESSING document, or create a new ONE. ...From the File menu, select Print. ...Select a location to save your PDF file.That's it!Mark me as a BRAINLIST THANKYOU |
|
| 23357. |
How to write about the uses of internet |
|
Answer» uses of the InternetElectronic mail. At least 85% of the INHABITANTS of cyberspace send and receive e-mail. ...Research.Downloading files.Discussion groups. ...INTERACTIVE games. ...Education and self-improvement. ...FRIENDSHIP and dating. ...Electronic newspapers and magazines.op 10 uses of the INTERNET |
|
| 23358. |
PJM bank has a head office based in Bangalore and a large number of branches nationwide . The Head Office and branches communicate USing internet . Give two features of internet. |
| Answer» DSL CONNECTION and WEB SERVERS | |
| 23359. |
When looking to promote your products and services locally, what are the benefits of using search engine ads? |
|
Answer» A Everyone uses search engines B You can TARGET ADS to a specific GEOGRAPHIC AREA C You can target ads to specific genders D Search ads are cheaper than display advertsExplanation:see the above part |
|
| 23360. |
What is video tag in html? |
|
Answer» The |
|
| 23361. |
Write a program to find the total marks of a student in 5 subjects. |
|
Answer» Example:InputEnter marks of five SUBJECTS: 95 76 85 9089OutputTotal 435Average = 87Percentage = 87.00Explanation:HOPE it HELPS you MARK as brainliest |
|
| 23362. |
Word processor are ..... Software? |
| Answer» WORD PROCESSER are SYSTEM softwarehope I m correct and hope this HELPS :) | |
| 23363. |
If a faculty member is selected at random, find the probability that a) The faculty member have 3 publications during last year given that he/she is an Assistant Professor b) The faculty member is Lecturer given that he/she do not have any publication. |
| Answer» SORY MATE I DONT NO YOUR ANSWER | |
| 23364. |
What is the hash of the previous block for Bitcoin block #490624? |
| Answer» | |
| 23365. |
What are lists? how many different types of lists can you create in writer? |
|
Answer» brainlist please broExplanation:Python ListsThe list is a most versatile datatype available in Python which can be written as a list of comma-separated values (items) between square brackets. Important thing about a list is that items in a list need not be of the same type.Creating a list is as simple as putting different comma-separated values between square brackets. For example −list1 = ['physics', 'chemistry', 1997, 2000];list2 = [1, 2, 3, 4, 5 ];list3 = ["a", "b", "c", "d"]Similar to string indices, list indices start at 0, and lists can be sliced, CONCATENATED and so on.Accessing Values in ListsTo access values in lists, use the square brackets for slicing along with the index or indices to obtain value available at that index. For example −Live Demo#!/usr/bin/pythonlist1 = ['physics', 'chemistry', 1997, 2000];list2 = [1, 2, 3, 4, 5, 6, 7 ];PRINT "list1[0]: ", list1[0]print "list2[1:5]: ", list2[1:5]When the above code is executed, it produces the FOLLOWING result −list1[0]: physicslist2[1:5]: [2, 3, 4, 5]Updating ListsYou can update single or multiple elements of lists by giving the slice on the left-hand SIDE of the assignment operator, and you can add to elements in a list with the append() method. For example −Live Demo#!/usr/bin/pythonlist = ['physics', 'chemistry', 1997, 2000];print "Value available at index 2 : "print list[2]list[2] = 2001;print "New value available at index 2 : "print list[2]Note − append() method is discussed in subsequent section.When the above code is executed, it produces the following result −Value available at index 2 :1997New value available at index 2 :2001Delete List ElementsTo remove a list ELEMENT, you can use either the del statement if you know exactly which element(s) you are deleting or the remove() method if you do not know. For example −Live Demo#!/usr/bin/pythonlist1 = ['physics', 'chemistry', 1997, 2000];print list1del list1[2];print "After deleting value at index 2 : "print list1When the above code is executed, it produces following result −['physics', 'chemistry', 1997, 2000]After deleting value at index 2 :['physics', 'chemistry', 2000]Note − remove() method is discussed in subsequent section.Basic List OperationsLists respond to the + and * operators much like strings; they mean concatenation and repetition here too, except that the result is a new list, not a string.In fact, lists respond to all of the general sequence operations we used on strings in the prior chapter. |
|
| 23366. |
Electricity board has decided to charge rupees based on the units consumed by a particular home. If the units consumed is less than or equal to 200, the cost for one unit is 0.5. If the unit is less than or equal to 400, the cost for one unit is 0.65 and Rs.100 extra charge. If the unit is less than or equal to 600, the cost for one unit is 0.80 and Rs.200 extra charge. If the unit is greater than 600 the cost for one unit is 1.25 and Rs.425 extra charge. You need to now calculate the electricity bill based on the units consumed (given input). INPUT & OUTPUT FORMAT: Input consists of one integer. This corresponds to the units consumed. The output consists of one integer. This corresponds to the electricity bill in rupees. SAMPLE INPUT: 200 SAMPLE OUTPUT: Rs.100 |
| Answer» | |
| 23367. |
Write a program that reads n digit number. After reading the number, compute and display the sum of the odd positioned digits, multiply all even positioned digits and add these two numbers. |
|
Answer» import JAVA.util.*;public class Main{public static void main(String args[]){ Scanner sc=new Scanner(System.in); int n =sc.nextInt(); int oddsum=0; int evenproduct=1; while(n>0) { int r=n%10; if(r%2!=0) { oddsum=oddsum+r; // 1+3+5+7=16 } if(r%2==0) { evenproduct=evenproduct*r; // 2*4*6*8= 384 } n=n/10; }System.out.println(oddsum+evenproduct); // 16+384=400}}EXPLANATION:it is a java program |
|
| 23368. |
What is the Code? C program for pattern |
|
Answer» a system of WORDS, LETTERS, FIGURES, or symbols used to represent OTHERS, especially for the purposes of secrecy. |
|
| 23370. |
Your document is five pages long. How can you number the upper-right corner of each page so that Page 1 of 5" Page 2 of 5" and so on, whenever it's printed ?e of 5Pe 2 of 5sounda) On the Format menu, click Page... option, and then click the Header tab and then AlignRight button 1) on the Formatting toolbar. Then click Insert Menu and select Fieldsoptions from this submenu select the desired fields (Page Number, Page count etc.)() On the Format menu, click Bullets and Numbering, then click the Numbering type tab andassign numbers to the preferred location on your pages.What are lists? How many different types of lists can you create in W |
|
Answer» Your DOCUMENT is five pages long. How can you number the upper-right CORNER of each page so thatPage 1 of 5" Page 2 of 5" and so on, whenever it's printed ?e of 5Pe 2 of 5sounda) On the Format menu, click Page... option, and then click the Header tab and then AlignRight button 1) on the Formatting toolbar. Then click Insert Menu and select Fieldsoptions from this submenu select the desired fields (Page Number, Page count etc.)() On the Format menu, click Bullets and Numbering, then click the Numbering type tab andassign numbers to the preferred location on your pages.What are lists? How many different types of lists can you create in Weat it too late to work on it for me to come over for a few days and I have a great day Hope this will help you out it was started in the soil structure of my life is a question in the soil structure and water to a motherboard which connects all of the soil to the educated and I will go to the nearest integer I am not rosy cheeks and the prevention of soil and I have a great weekend too fine with it and I have a NICE day but now it is 2 I am rose to the educated Indians 2nd grade and 3 up with him in a while 7th and I have a 2nd grade are u here for a while ago but it is in a few weeks ago and it is in ur room to get out from the well by a British and the production of honey and I have no IDEA what to do 30th and the Two Strings of my life and making me laugh and 85 you want to know anything about the date for a bit more of 66 be nice and warm and fuzzy and I have a great weekend job is going on with you and your family plz don't answer otherwise i would be a good day at work and school work done and done with the help of a flowchart explain it to you also dear friend Good morning dear friend have a good day at work and school work done and done with the help of a clamp down to the excessive noise in the vicinity I will go back to work on the phone and I don't know what to answer here except that I am going to delete it and I will follow up with you and I will follow you but I have |
|
| 23371. |
write a program in java to input a sentence and find and display the number of words present in the sentence and the number of letters present in the sentence. please write the whole program |
|
Answer» i dont know java brother only C . c++. PYTHON. oracle.hmtlExplanation:brainlist BRO |
|
| 23372. |
C program for pattern. What is the code? ********* ********* *** ** ** ** *** ********* ********* |
|
Answer» #include |
|
| 23373. |
what is wifi................................................................................................ |
|
Answer» -Wi-Fi is the NAME of a WIRELESS networking technology that uses radio waves to provide wireless high-speed INTERNET and network CONNECTIONS. ☺✌ |
|
| 23374. |
write a program to input a sentence and find and display the number of words present in the sentence and the number of letters present in the sentence. please write the whole program |
|
Answer» tion:This code is in c++. Here we are USING the STRING LIBRARY. Hope it helps. |
|
| 23375. |
Which of the following is not the function of output unit |
|
Answer» hi...Explanation:please send the QUESTION again...with all information as this question is INCOMPLETE...Regards |
|
| 23376. |
Give a validation rule such that a user can enter only the values 1, 2or 3? |
| Answer» | |
| 23377. |
Who invented Books and Why? Who answers this question I will give Brainliest answer |
| Answer» JOHANNES GUTENBERG INVENTED BOOKS. | |
| 23378. |
Write a program IN BLUEJ to accept limit of series. Calculate and print the sum of the Following series. S=2+3+4+4+6+8+6+9+12+............n term. |
| Answer» KNOWI don't KNOW i don't know | |
| 23379. |
Who invented Books and Why? |
|
Answer» tion:JOHANNES Gutenberg invented books.The technique became popular in the MIDDLE East and Eastern Asia, and spread to the Romans by the 2nd century A.D. In the mid-15th century, German Johannes Gutenberg invented the first mechanical printing PRESS. His invention was REVOLUTIONARY because it enabled mass production of books for the first TIME. |
|
| 23380. |
Identify the Subject Verb and Object: My sister is reading books. * 1 pointA. Subject:My sister, Verb:reading, Object:books.B. Subject:books, Verb:reading, Object:My sister.C. Both of above.D. None of above. |
| Answer» WER is OPTION a)HOPE it HELPS you. | |
| 23381. |
26. Determine the output of the following program. public class PredictOutput3{public static void main(String args[])int a = 2, b = 2, c = 2;System.out.println("Output 1:" + (a + 2 < b + c));System.out.println("Output 2: " + (a + 2 < (b + c)));}} Guys plz help me ❤ |
| Answer» FALSE in both caseExplanation:because a=2, b=2,c=2case 1: a+2 | |
| 23382. |
What is an example for dbms software |
|
Answer» Some DBMS examples include MySQL, PostgreSQL, Microsoft ACCESS, SQL Server, FileMaker, Oracle, RDBMS, dBASE, Clipper, and FoxPro.Explanation:if u like it then follow me and MAKE sure you mark me as a BRAINLIEST ANSWER. |
|
| 23383. |
B. Fill in the blanks using words from the box.recycle bin, operating system, taskbar, CAnallows your computer to manage software and performessential tasks.1.2. Thealways stays visible, even when you have a window open.3. Theis used to store deleted items.4. Thedrive is the default drive of computer. |
|
Answer» 1.operating system2.task bar3.recycle bin4 CAn |
|
| 23384. |
A cricket ball manufacturing company wants to check the variation in the weight of the balls. For this, 25 samples each of size 4, are selected and the weight of each ball is measured (in grams). The sum of the sample average and the sum of Sample ranges were found to be ∑ X 25 =1 = 4010 Grams and ∑ 25 =1 = 72 grams , respectively. |
| Answer» | |
| 23385. |
What is an offline blogdesk editor |
|
Answer» will HELP you...MARK me as BRAINLIEST ❤️follow me ❤️❤️ |
|
| 23386. |
When we might want to use both Bitmap and Vector programs on the same piece of work |
| Answer» | |
| 23387. |
1 1 21 2 31 2 3 4 51 2 3 4 5 6 7. Write a program to display the following patterns. |
|
Answer» The focllowing code is in C.int i,J;for( i = 1 ; i <= N ; i++ ){ //replace N with NUMBER of LINES for( j = 1 ; j <= i ; j++ ){ PRINTF("%d", j ); }} |
|
| 23389. |
10. Question What device forwards data and operates at layer three of the Transmission ControlProtocol/Internet Protocol (TCP/IP) model? |
| Answer» GMAIL is the ANSWER DEAR | |
| 23390. |
What do you call the information on the monitor |
| Answer» HI...Explanation:the information DISPLAYED on the monitor is CALLED Copy.hope it HELPS you please MARK brainliest | |
| 23391. |
3Whatisartificialintelligencegivesomeexample |
|
Answer» UTER SCIENCE ARTIFICIAL INTELLIGENCE MEANS THE MACHINE INTELLIGENCE OR THE INTELLIGENCE DAMONSTRATED BY MACHINES IT IS MUCH MORE THAN THE INTELLIGENCE THAT IN HUMANS. EXAMPLES ARE- COMPUTERS, ROBOTS ,ETC.HOPE IT HELPS YOU PLEASE USE SPACES TO LET OTHERS UNDERSTAND TOO. |
|
| 23392. |
Write the process to input data using Bufferedreader class |
| Answer» INSTANTIATE an InputStreamReader class bypassing your InputStream object as a parameter.Then, create a BufferedReader, bypassing the above obtained InputStreamReader object as a parameter.Now, read data from the CURRENT reader as String USING the READLINE() or read() method. | |
| 23393. |
For A.Fill in the blanks:1.Ais a set of instructions, which tells the computer what to do. |
|
Answer» tion:A SET of INSTRUCTIONS that directs a COMPUTER's hardware to PERFORM a TASK is called a program, or software program. |
|
| 23394. |
4 Name some software's that can be used to creategraphic presentation? |
| Answer» HOPE's it will HELP U..... | |
| 23395. |
3. The shortcut key to modify the cell contents (a) F2(b) Ctrl+F2(c) Shift+F2(d) Alt+F2A |
| Answer» F2 is the CORRECT ANSWER | |
| 23396. |
Ms access is not suitable for database management |
|
Answer» tion:Access is a very GOOD and ACCEPTABLE and easy COMPLETE database |
|
| 23397. |
Write a program to reverse a string using string slicing |
|
Answer» We have a STRING, "Hello World", which we want to REVERSE:1. The String to Reverse. TXT = "Hello World" [::-1] print(txt) ...2. Slice the String. txt = "Hello World" [::-1] ...3. Slice the String. def my_function(x): ...4. Return the String. def my_function(x): ...5. Call the Function. def my_function(x): ...6. Print the Result. def my_function(x): |
|
| 23398. |
2. Which of these will delete the contents of a cell in a worksheet? (a) Pressing the Delete button(b) Clicking Clear Contents in the shortcut menu(c) Both (a) and (b)(d) Neither (a) nor (b) |
| Answer» ANSWER is OPTION bHope it HELPS you my FRIEND | |
| 23399. |
It is used to create quick and simple list. |
| Answer» ND COMPUTER wid Ms Software....Hope this HELPED.... | |
| 23400. |
Which of the following is a widely used and effective machine learning algorithm based on the idea of bagging? |
|
Answer» Ugftucdnjtejtghjiyfguu ggbnjugvccfyhnvccgghhhhhhhj |
|