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.
| 25901. |
10. Which of these best explains the 2 points act of spamming?Oa) Sending mails that contain inappropriatematerialb) Unwanted bulk mails sent to individualswithout their consent.Oc) Sending advertising material throughmails.O d) None of the above |
|
Answer» b) Unwanted BULK MAILS sent to individuals without their consent is known as SPAMMING. |
|
| 25902. |
The 3D scaling with respect to a selected fixed position is carried out in following sequence (1)Translate the fixed point back to its original position(ii) Translate the fixed (iii) Scale the object relativeto coordinate origin point to the origin(i), (ii) and (iii) |
|
Answer» java.util.Scanner;public class FiftyPrimes{ // Return TRUE if a number n is PRIME public static boolean isPrime(long n) { // Check division from 2 to sqrt(n) for (long i = 2; i <= Math.sqrt(n); i++) { if (n % i == 0) { return false; } } // If no division is found, number is prime return true; } public static void main(String[] args) { // Create Scanner object Scanner sc = new Scanner(System.in); // Take USER input System.out.print("Enter the starting point: "); long start = sc.nextInt(); // Close Scanner object sc.close(); // If start point is less than 2, make it 2 if (start < 2) { start = 2; } int numberOfPrimes = 0; // Number of primes printed long number = start; // Number to be tested for prime // Iterate until 50 primes are printed while (numberOfPrimes < 50) { if (isPrime(number)) { System.out.println(number); numberOfPrimes++; } number++; } }} |
|
| 25903. |
Relative complement is a set operation is true or false |
| Answer» TRUEEXPLANATION:HOPE this will REALLY HELPS you | |
| 25904. |
MSDOS is an ________________ system software. |
| Answer» | |
| 25905. |
B12 is an example of cell reference trur or false |
| Answer» YES b12 is an EXAMPLE of cellExplanation:please MARK as BRAINLIEST!!!! | |
| 25906. |
R(A,B,C,D,E,F) .A->B,C.C->F,D->E. WHICH NORMAL FORM IS THE RELATION R IN |
|
Answer» what is this i can't understand this QUESTION jab sure HO Jayenge TAB barha DENGE |
|
| 25907. |
What is communication explain methods of communication?. |
|
Answer» The STANDARD METHODS of communication are speaking or writing by a sender and LISTENING or READING the receiver. Most communication is oral, with one party speaking and others listening. ... A mixed message occurs when a person's words communicate one message, while nonverbally, he or she is communicating something ELSE. |
|
| 25908. |
Which two techniques and strategies used to get higher search ranking on search engine |
|
Answer» Publish Relevant Content. QUALITY content is the NUMBER one driver of your search engine rankings and there is no substitute for great content. ...Update Your Content Regularly. You've probably noticed that we FEEL PRETTY strongly about content. ...Metadata. ...Have a link-worthy site. ...Use ALT tags. |
|
| 25909. |
Binary Addition (1 1 0)2 + (1 0)2 = please tell fast friends |
|
Answer» (1000)2Explanation: |
|
| 25910. |
Explain the speeling dialog box options |
|
Answer» The Spelling dialog box CONTAINS the FOLLOWING options: Not in DICTIONARY — DISPLAYS the word found by the spell check that is not in the dictionary. The TYPES of errors flagged by the spell checker are determined by the settings specified on the Spelling tab in the Preferences dialog box. |
|
| 25911. |
Ellipse tool is used to draw circles (true or false) |
| Answer» ELLIPSE tool helps us to draw a square that is FALSE a statement.Explanation:Ellipse tool in Photoshop helps us to draw shapes of an ellipse of any RADIUS. We can EVEN draw a circle with the help of this tool. | |
| 25912. |
VDU stands for visual Display unit true or false |
|
Answer» this SENTENCE is TRUE ABSOLUTELY |
|
| 25913. |
Difference between a clipart and an objects |
|
Answer» Clip art and pictures are imported from outside of Word, so you do not have too much control in MODIFYING them. You can adjust the COLORS and brightness, and crop out parts you don't want, but you can't CHANGE the ACTUAL colors.hope it helps you ✔✔ |
|
| 25914. |
Where desk top publishing is used |
|
Answer» Any WORKPLACE that has DESKTOP computers has the potential for HANDLING some of its own design and print work....Desktop Publishing in the WorkplaceBrochures, flyers, and posters.Booklets.Newsletters.Business cards and letterhead.Forms.Financial documents.HR documents.Invoices, inventory sheets, MEMOS, and labelsHOPE IT HELPS..!! |
|
| 25916. |
रैक्टेंगल टूल का उपयोग सर्कल बनाने के लिए किया जाता है |
| Answer» FALSE, USING RECTANGLE TOOL you can BUILD only rectangleExplanation: | |
| 25917. |
What is the rule for negativefeedback system. *RсGH Н |
| Answer» G is the RULE for NEGATIVE FEEDBACK SYSTEM | |
| 25918. |
Write the algoritm to check palindrome number |
|
Answer» Algorithm to check whether a number is a PALINDROME or notInput the number.Find the REVERSE of the number.If the reverse of the number is equal to the number, then return TRUE. Else, return false. |
|
| 25919. |
Kernel is known as core of operating system( true or false) |
|
Answer» this is TRUE ABSOLUTELY |
|
| 25920. |
Binary Addition (1 1 0)2 + (1 0)2 = |
| Answer» BINARY of the addrion the 149.49point 348.45 is binary POINT PLZZZ MARK me as barnlist BRO | |
| 25921. |
State the use of new operator |
| Answer» USE of the new OPERATOR SIGNIFIES a request for the memory allocation on the heap. If the sufficient memory is available, it INITIALIZES the memory and returns its address to the pointer variable. The new operator should only be used if the data object should remain in memory until delete is called.Explanation:I hope it is helpful plz marks me as brainlieast and give me thanks at all my answers and follow me | |
| 25922. |
(a) Primary type ofmemory(b) RAM(a) RAMla secondaryVaXRAM(6) cacheHard disk(6) cache(d) Hard disthe BlanksRAM and ROM are the types ofmemory.Which of the following memory types will store the data or infor1(c) Flash MemoryWhich of the following memory types cannot store the data o(c) Flash Memoryrefers to the logical structure of a computer describe |
| Answer» CLEAR your QUESTION | |
| 25923. |
Multilevel inheritance definition and syntax |
|
Answer» vel INHERITANCE:When a class extends a class, which extends anther class then this is CALLED multilevel inheritance. ... If we take the example of this diagram, then class C inherits class B and class B inherits class A which means B is a parent class of C and A is a parent class of B.Syntax:In COMPUTER science, the syntax of a computer LANGUAGE is the set of rules that defines the combinations of SYMBOLS that are considered to be correctly structured statements or expressions in that language. |
|
| 25924. |
Write a program in JAVA to enter a distance in cm and print the changed value in m |
| Answer» SORRY YAAR NAHI pata☹️☹️☹️ | |
| 25925. |
What isडेटाबेस इंग्लिश में |
| Answer» TION:A database is an organized collection of structured information, or data, typically stored electronically in a computer system. A database is usually controlled by a database MANAGEMENT system (DBMS). ... Most databases use structured QUERY language (SQL) for writing and querying data.hope my answer helps u MATE | |
| 25926. |
Differentiate between Indents and Orientation???plz give answer very fastplz help this question of computer sciencehelp |
| Answer» | |
| 25927. |
Relative complement is a set operation |
|
Answer» The relative complement of A with RESPECT to a set B, also TERMED the set DIFFERENCE of B and A, written B \ A, is the set of ELEMENTS in B but not in A. |
|
| 25928. |
A) Which option will be used to adjust the image around the text? |
| Answer» BEHIND text will be used to ADJUST the IMAGE AROUND the text. | |
| 25929. |
कस्टम फिल्टर matching |
|
Answer» Can't UNDERSTAND your question PLS write PROPERLY |
|
| 25931. |
Describe the concept of networking and explain its types? |
|
Answer» A network consists of two or more computers that are linked in order to share RESOURCES (such as printers and CDs), EXCHANGE files, or allow electronic communications. ... Two very COMMON TYPES of networks include: Local Area Network (LAN) Wide Area Network (WAN)please mark me as brainliest ANSWER and give thanks |
|
| 25932. |
Name the data base object which is a graphical representation of table |
|
Answer» the DATABASE object which is a graphical REPRESENTATION is CALLED a table that can be anything |
|
| 25933. |
Explain any two outpost devices |
|
Answer» Monitor is the most commonly used output device used to display results of processing. It has a TV LIKE shape. Pictures on monitor are formed with picture elements called PIXEL. Monitors may be Monochrome that will display results in BLACK & White. Color Monitors are also AVAILABLE. They display results in multi colors. Monitor produces soft copy output.Speakers and head SETS produce sound output. We can listen recorded voices, sounds or music with the help of speaker or headset. Speaker produces sound output with the help of sound card.Explanation:DON'T FORGET TO MARK ME AS A "BRAINLIST".................. |
|
| 25934. |
2.Which link will you click to forward an email message in the gmailwindow? *a)Forward LinkO b)Reply LinkO c)Send forward linkO d) Go ahead link |
|
Answer» forward LINK EXPLANATION:I HOPE it is CORRECT and plz mark as BRAINLIEST |
|
| 25935. |
How computer is helpful in lockdown for students |
| Answer» | |
| 25936. |
Differentiate between auto-boxing and auto-unboxing in java |
|
Answer» answerExplanation:AUTOBOXING is the automatic conversion that the JAVA compiler makes between the primitive TYPES and their corresponding object wrapper classes. For example, converting an int to an Integer, a double to a Double, and so on. If the conversion GOES the other way, this is called unboxing.mark me as the BRAINLIEST pls⚡ |
|
| 25937. |
Explain the procedure to create a template |
|
Answer» Click the File tab, and then click New. Under Available templates, click New from existing. Click a TEMPLATE or a document that is similar to the one that you want to CREATE, and then click Create New. Make the changes you want to the margin settings, PAGE SIZE and orientation, styles, and other formats.please mark me as brainliest answer and give THANKS too |
|
| 25938. |
Why is python easy to learn...!!? |
|
Answer» Easy to Learn, Read, and UseUnlike C# and other LANGUAGES, Python's SYNTAX is human readable and it's concise. As a beginner, this will allow you pick up the basics quickly, with less mental strain, and you can level up to advanced TOPICS QUICKER. With one GLANCE at Python code, you can infer what the code is doing. |
|
| 25939. |
3. Which social networking website is considered as the most widely usedsite in the world? *O a) yahoo.comO b) youtube.comc) google.co.inO d) facebook.com |
|
Answer» Option (d)Explanation:Facebook is the BIGGEST social media SITE around, with more than two BILLION people USING it every MONTH |
|
| 25940. |
Write a program in JAVA to enter a number and check if it is positive, negative or 0 |
|
Answer» Read a number from the user USING the SCANNER class's method. check WHETHER the given number is greater, LESSER or, equal to 0. If it is greater given number is POSITIVE if the lesser given number is negative. the else given number is neither positive or negative.please mark me as brainliest |
|
| 25941. |
Stale TrueΟΥJolseTitle bar showingthe loindowsthe toß ay |
| Answer» | |
| 25942. |
Which is the smallest country in the world ? |
| Answer» EXPLANATION:VATICAN city-the COUNTRY NAME | |
| 25943. |
State true or false.... plzz guyzz if u know right answer then..,....ye mera exam hhh or i need it urgently...... |
|
Answer» a.trueb.truec.trued.true.e.FALSE- local area networkf.false- one time passwordg.they are very tiny squares.h.false- used to draw rectanglesI. I m not sure about it.j. false- GOOGLE is a SEARCH engine k.i don't knowlm.falsen.o.true |
|
| 25944. |
Discuss any five characteristics of a good presentation |
|
Answer» tion:QUALITIES Of A Good PresentationConfidence. I know this seem fairly IMPOSSIBLE at the moment but going into a presentation with confidence really helps to sell it to your audience. ...Passion. Keeping a captive audience is not an ease task, especially within the business world. ...Knowledge. ...Naturalness. ...ORGANIZATION. ...Time-sensitive. ...Clarity.Mate if this answer helps u than plz mark as BRAINLIST |
|
| 25945. |
Write tha some main uses of computer |
|
Answer» tion:Computers are used to CONTROL large and small MACHINES which in the PAST were controlled by humans. Most people have used a personal computer in their home or at work. They are used for things such as calculation, LISTENING to music, reading an article, WRITING etc. |
|
| 25946. |
AreTransparcnicosa Reusage Cal Non reusablegenrally |
|
Answer» I had the OPPORTUNITY to COMMENT on the other HAND the MODERATORS the FIRST |
|
| 25947. |
Which is the fastest transmission media for data among the following? a) optical fiber cables b) coaxial Cables c) ethernet Cables |
| Answer» OPTICAL FIBRE cablesExplanation:FIBER optics is the fastest of the given DATA transmission TECHNIQUES. | |
| 25948. |
Write the steps to open and save a new word document? |
|
Answer» Which of the FOLLOWING has more inertia ? Explain :(a) A rubber ball and STONE of the same size. (b) A bicycle and Which of the following has more inertia ? Explain :Which of the following has more inertia ? Explain :(a) A rubber ball and stone of the same size. (b) A bicycle and a train. (c) A five RUPEE coin and a one rupee coin.Please answer it fast.(a) A rubber ball and stone of the same size. (b) A bicycle and a train. (c) A five rupee coin and a one rupee coin.Please answer it fast. train. (c) A five rupee coin and a one rupee coin.Please answer it fast. |
|
| 25949. |
A computer does not provide high degree of accuracy |
| Answer» TION: no because COMPUTER HEAT and not WORKING | |