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.
| 22151. |
If you expect a promise to be rejected, use the ______________ matcher. If the promise is fulfilled, the test will automatically fail. |
|
Answer» to your QUESTION: ♡.resolvesIf you expect a promise to be REJECTED, USE the __.resolves__ matcher. If the promise is fulfilled, the test will automatically fail.Hope it HELPS^_^ |
|
| 22152. |
How to edit and save a document in word processing? |
|
Answer» ocessor is a software/device that PERMITS USERS to CREATE, EDIT and print documents. Enables writing text and store it electronically and display it ONSCREEN and modify it by entering commands and characters. Of all applications it's most common. Today's maximum word processors are delivered either as cloud service/software that users can install on PC or other devices. |
|
| 22153. |
Technology used to provide internet by transferring data over wires of telephone network is |
|
Answer» ---------------------Technology used to provide internet by transferring data over wires of TELEPHONE network is DSL ------------------------1) DSL STANDS for Digital Subscriber Line2) DSL is covered with COPPER 3) DSL are MAINLY used for data transmission 4) DLS technology is used in wire smartphones as well as broadband connection |
|
| 22154. |
What is cloud computing and it's characteristics |
|
Answer» omputing is a model for enabling ubiquitous, convenient, on-demand network access to a shared pool of CONFIGURABLE computingresources (e.g., networks, servers, storage, applications, and SERVICES) that can be rapidly provisioned and released with minimal management EFFORT or service PROVIDER interaction. |
|
| 22155. |
(write a program to input the temperature in Celsius and convert it into fahrenheit if the temperature is more than 98.6 degree fahrenheit then display fever otherwise normal) .. using #JAVA . using #BUFFERED READER #wrong answer will be reported..... |
|
Answer» Program to convert Celsius into Fahrenheit:import java.io.*;class BRAINLY{public static VOID main(String args[]) throws IOEXCEPTION{double cel,fah;InputStreamReader in = new InputStreamReader(System.in);BufferedReader br = new BufferedReader(in);System.out.println("ENTER temperature in celsius: ");cel = Double.parseDouble(br.readLine());fah = (9.0/5.0) * cel + 32;System.out.println("Temperature in fahrenheit is :" +fah);if(fah > 98.6){System.out.println("Fever");}else{System.out.println("Normal");}}}Output:Enter temperature in Celsius : 28.5Temperature in Fahrenheit is : 83.3000000000001NormalHope it helps! |
|
| 22156. |
Can anyone answer questions no. 5 Question is related to PowerPoint |
|
Answer» ed text, styled text, or rich text, as opposed to plain text, has styling information beyond the MINIMUM of semantic elements: colours, styles (boldface, italic), sizes, and special FEATURES in HTML (such as hyperlinks).Indents" is the term that Word uses for paragraph margins. They are a part of paragraph formatting and are often USED in paragraph styles to set different margins for a part of a document. ... It can be set in either the RULER or in the paragraph dialog box.The main feature of the system is that it supports two levels of formatting. On a meta level, the system accepts descriptions of textand document classes TOGETHER with formatting styles for text components.Ϧ០ᖰ៩ ɨƬ'ន Ϧ៩ɭᖰ ƴ០⩏ Ϧ♬⩔៩ ♬ Ɯ០⩎ᖱ៩Ʀ⨏⩏ɭ ᖱ♬ƴ |
|
| 22157. |
Qbasic output10 A=129 B=A*A30 PRINT B40A=A+150 GOTO 2060 END |
| Answer» N INFINITE LOOP .HOPE IT HELPS | |
| 22158. |
What is the function of autofit option |
|
Answer» es,here is ur answerAutoFit is a FEATURE in Microsoft Excel that automatically adjusts the width or height of a cell. Below are the steps on how to AutoFit CELLS in the different VERSIONS of Microsoft Excel. Tip: You can double-click the line in-between a cell in all versions of Excel to AutoFit cells without having to GO through a menu.I hope it will help U |
|
| 22160. |
Write about fabonacci series with example |
|
Answer» ci series Fibonacci series proceeds by adding up the previous two terms . Suppose the FIRST 2 terms are 4 and 5 .Then next term will be 4 + 5 = 9Then the next term will be 9 + 5 = 144 , 5 , 9 , 14 .................. is an example of the fibonacci series .More EXAMPLES :6 , 8 ... ?6 + 8 = 148 + 14 = 2214 + 22 = 366 , 8 , 14 , 22 , 36 ..................... is another example .Properties of the series.You can subtract any term from the next term to get the previous term .For example :1 , 2 , 3 , 5 , 8 ............Subtract 5 from 8 to get the previous term .8 - 5 = 3Code in Java for the series :import java.util.*;class fibonacci {public static void main(String args[]){Scanner sc=new Scanner(System.in);System.out.println("Enter a limit");int n=sc.nextInt();int a=0;int b=1;System.out.println(a);System.out.println(b);for(int i=3;i<=n;i++){int c=a+b;System.out.println(c);a=b;b=c;}}}/*The LOGIC is just swapping the previous variable to print the *pattern.*/ |
|
| 22161. |
Display the first ten terms of the series 1,4,9.... |
|
Answer» is 1,4,9,16,25,36,49,64,81,100,121,144,169,196,225 |
|
| 22162. |
Write a JAVA program to input two unequal numbers. Display the numbers after swapping their values in the variables without using a third variable. |
|
Answer» port java.util.*;CLASS Swapping{PUBLIC static void main(String args[]){SCANNER sc=new Scanner(System.in);System.out.println("Enter 2 numbers");int a=sc.nextInt();int b=sc.nextInt();a=a+b;b=a-b;a=a-b;System.out.println("SWAPPED value of a :"+b);System.out.println("Swapped value of b :"+a);}}LOGIC:FIRST note the step :a = a + bThen b = a - b= > b = a + b - b [ from above ]= > b = a then a = a - b= > a = a - ( a - b )= > a = a - a + b= > a = bThat is the way they are swapped ! |
|
| 22163. |
Write a program to check whether the number is three digit special number or not in java programing |
|
Answer» mport java.util.*;CLASS check{public void MAIN(){SCANNER sc=new Scanner(System.in);System.out.println("Enter a number");int n=sc.nextint();int s=0;int d=0;int cpy=n;if(n>99&&n<=999){while(n>0){d=n%10;s=s+d;n=n/10;}if(s==cpy){System.out.println("Perfect number");}else{System.out.println("Not a perfect number");}}else{System.out.println("Invalid choice entered");}}//main ENDS}//class ends-----------------------------Hope it helps you dear !!_________________________________ |
|
| 22164. |
Q - 72 .A byte can hold one kilobyte of data. a. True b. False |
| Answer» | |
| 22165. |
What does a script or a program do in scratch? |
|
Answer» t is defined WITHIN the Scratch PROGRAM as one or a set of BLOCKS that begins with a HAT Block. ... However, scripts are usually referred to as sets of blocks that consist of at least two blocks. |
|
| 22166. |
Faster feedback can be received by in continuous integration |
| Answer» E QUESTION what are you SAYING? | |
| 22167. |
HEY COMPUTER EXPERTS AND GENIUS CAN YOU SOLVE THISI DONT NEED IT ON SIMPLY DO IT IN A COPY AND SENT MEHEPLING HAND DON'T ANSWER NO SPAM |
|
Answer» e (stdio.h)int main ( )int COUNTER;print 1("Even numbers between 1 to 100 /n")./.Intialise counter with 1 ,and INCREMENT it in every..For every value of counter check wether it is even..Not and print it ACCORDINGLY. ./for (counter =1;counter (=100;counter ++)/STAR Even numbers are DIVISIBLE by 2 star/if (counter percentage 2=0)/star counter is even, print it starprint f ("percentage d" , counter) ; return 0: |
|
| 22168. |
Database tool is used to display the information in the form of slide show. |
|
Answer» A PRESENTATION program is a software package used to DISPLAY information in the form of a slide show. It has three major functions: an editor that allows TEXT to be inserted and formatted, a method for inserting and MANIPULATING graphic images, and aslide-show system to display the content.I Hope It Will Help! ^_^ |
|
| 22169. |
______________is the pixel width between the individual data cells in the TABLE. |
|
| Answer» | I HOPE It Will HELP!^_^ | |
| 22170. |
Which function is used to read a complete string at a time? |
|
Answer» #include |
|
| 22171. |
State need of typecasting in Java |
|
Answer» e!Here's the answer :-Typecasting, is a method of changing an entity from one DATA type to another. It is used to ensure variables are CORRECTLY PROCESSED by a FUNCTION. |
|
| 22172. |
Write a program to input a number . Find and print the inverse of the number. |
|
Answer» want to make ORDERED lists then ENTER the following:
|
|
| 22173. |
write an html statement to create an ordered list of small Roman numerals (I, II,...) starting with "vi" |
|
Answer» head>
|
|
| 22174. |
What is a pseudocode |
| Answer» SIMPLE FORM of computer LANGUAGE used in programs design ....mark as a brainliest answer | |
| 22175. |
What is firewall and how the prevention procedure from attack of hackers? |
| Answer» L is a in BUILT antivirus MADE by windows ...lol | |
| 22176. |
Which command displays only file and directory names without size date and time? |
|
Answer» mmand displays only FILE and directory NAMES WITHOUT size date and timedir /b |
|
| 22177. |
To add an image to a webpage . Which tag is used ( ,image SRC=" " FILENAME" >) |
| Answer» C=" LINK of the IMAGE"> | |
| 22179. |
Observe the following tree and write the xml code |
|
Answer» ersion ="1.0"?> |
|
| 22181. |
What all information has to be given in the 'open' dialog box? |
|
Answer» double-click a document (for example, in Microsoft Windows EXPLORER) to open the document in Microsoft Office Word 2007 , you MAY RECEIVE the following error message: The command cannot be PERFORMED because a dialog box is open. Click "OK" and then close open dialog boxes to continue. |
|
| 22182. |
What is the functions of computer software |
|
Answer» ntain the instructions to RUN the computers. They includethe operating SYSTEM such as Windows, Linux and device DRIVERS, servers ETC. They PROVIDE the basic platform for other software to run. In short system software helps integrating the functions of all hardware. |
|
| 22183. |
Full form of PWD..... |
| Answer» NS PUBLIC WORKS DEPARTMENT. | |
| 22184. |
Please tell correct option |
| Answer» C. as MUMBAI is in MAHARASHTRA and DELHI is not in it | |
| 22185. |
How do i make myself better and make intrest in chemistry+biology subject and these hard to understand for me ? |
|
Answer» e is your answerGet the EXTRA learning with chemistry and biology for better learning process.Always doing the practice on it.It MAKES you a PERFECT FRIEND of biology and chemistry |
|
| 22186. |
How to insert row and column in a spreadsheet |
|
Answer» rt a ROW:RIGHT click the row where u want to INSERT a COLUMNA SUB menu opensclick insert row optionu can see your row been insertedinserting a column:right the column where u want to insert |
|
| 22187. |
Write one application of stack in detail |
| Answer» CREATE APPLICATION in COMPUTER | |
| 22188. |
What is the main difficulty that a programmer must overcome for writing operating system for real time environment? |
| Answer» | |
| 22189. |
Which element in a form allows to create a drop down list? |
|
Answer» know what is the QUESTION and I don't UNDERSTOOD this please try again and please give my question ANSWER |
|
| 22190. |
a network-based attack where one attacking machine overwhelms a target with traffic is a(n) _______ attack. |
|
Answer» rk-based attack where ONE attacking MACHINE OVERWHELMS a target with traffic is a(N virus attack |
|
| 22192. |
Document should not displays spelling mistakes at the name of locality |
|
Answer» crosoft Word document, if you want that the document will not show SPELLING mistake of a locality and get underlined with red, it is better to add the name of the locality in the dictionary. After typing the name of the LOCATION, ONE should RIGHT CLICK on the word and will get an option to add to the dictionary. This way the word will be added, and it will not show any spelling mistakes any more. One can also turn off the spell check option in the word document. |
|
| 22193. |
Select the correct option which directly achieve multi-class classification (without support of binary classifiers) |
| Answer» MACHINES HOPE It Helps.☺️ | |
| 22194. |
A short note on internet |
|
Answer» ═══════════════╕☬ BRAINLY CONQUERER ☬╘═════════════════════╛ANSWER:- •⏩ INTERNET is a connection between server to server this creates a vast entire group community all around the world.•⏩The Internet is not SYNONYMOUS with World WIDE Web. ⏩The Internet is a massive network of •networks, a NETWORKING infrastructure.•⏩When two COMPUTERS are connected over the Internet, they can send and receive all kinds of information such as text, graphics, voice.etc...╒══════════════════════╕☬ THANKS! ☬╘══════════════════════╛ |
|
| 22197. |
*️⃣ Write a program to calculate three side of SI using structure with array. *️⃣ *️⃣ Question of C++ *️⃣‼️ Spammers be away ‼️ |
|
Answer» re in C++We have ALREADY dealt with arrays. Arrays are used to store SIMILAR TYPE of data. Have you ever thought if there is any way to store dissimilar data?The answer is yes. We use structures to store different types of data. For example, you are a STUDENT. Your name is a string and your phone number and roll_no are integers. So, here name, address and phone number are those different types of data. Here, structure comes in the picture.Defining a StructureThe syntax for structure is:STRUCT structure_name{data-type member-1;data-type member-2;data-type member-3;data-type member-4;};In our case, let's name the structure as student. The members of the structure in our case are name, roll_no and phone_number.So, our structure will look like:struct student{ int roll_no; std::string name; int phone_number;};thank you .@chetan2222 |
|
| 22198. |
Write in brief about, What JFC is. (JAVA) |
|
Answer» he Java programming language, Java Foundation Classes (JFC) are pre-written code in the form of CLASS libraries (CODED routines) that give the programmer a comprehensive set of graphical user interface (GUI) routines to use. The Java Foundation Classes are comparable to the Microsoft Foundation Class (MFC) library. JFC is an extension of the original Java Abstract Windowing Toolkit (AWT). Using JFC and Swing, an additional set of program components, a programmer can write PROGRAMS that are independent of the windowing systemwithin a particular operating system.hopeithelps |
|
| 22199. |
What is meaning of keyworld |
|
Answer» : WORDS that convey SPECIAL meaning to the compilerEg: if, while, forPls MARK if it helped |
|
| 22200. |
What VPN types are supported by Azure? All the options Multi-set VNet-to-VNet Point-to-Site Site-to-Site |
| Answer» LD be Site-to-Site | |