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.
| 11551. |
write a program that read two numbers and point the largest number please tell me correctly or else I report you . Write it on your copy and send ss |
|
Answer» Answer: JAVA ANSWER, CHECK IT OUT package newPack; IMPORT java.util.*; PUBLIC class largest { public STATIC void main(String[] ARGS) { Scanner INPUT = new Scanner(System.in); int a = input.nextInt(); int b = input.nextInt(); System.out.println(a>b?a:b); } } Explanation: BRAINLIEST PLEASE! |
|
| 11552. |
List two ways tostart MS word |
|
Answer» Answer: You can open them ONE of three ways. |
|
| 11553. |
Identify the following c++tokensWelcomeIntGreater than or equal to++ |
|
Answer»
import 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++; } } } |
|
| 11554. |
Q. 1. Fill in the blanks:a. ___________ refers to the repetition of a set of statements till a given condition remains true.b. ___________ refers to the repetition of a set of statements till a given condition remains false.c. A ___________ is a variable that keeps track of the number of times a particular instruction or set of instructions has been executed within a loop.d. _____________ loop is generally used as a counter loop when you know exactly how many times you need to execute the loop. |
|
Answer» a) LOOP( LIKE for loop and while loop) B) loop( like for loop and while loop) C) counter d) for loop |
|
| 11555. |
In which gallery of pre-desingned picture that can be inserted directly in a document? |
|
Answer» Answer: |
|
| 11556. |
What do do you mean by auto number in short answer |
|
Answer» Answer: AutoNumber is a type of DATA used in Microsoft ACCESS tables to generate an AUTOMATICALLY INCREMENTED numeric counter. It may be used to create an IDENTITY column which uniquely identifies each record in a table. Only one AutoNumber field is allowed in each table. The data type was called Counter in Access 2.0. Hope this helps you Please mark as brainliest |
|
| 11557. |
Which of the following is being used when loading a constant into a register: Which of the followings is not a sequential chip: |
|
Answer» Answer: hard disk Explanation: |
|
| 11558. |
What is the difference between / and % operator ? Give suitableexampleas per java programming |
|
Answer» please LET me KNOW if you NEED anything else from me please let me know if you need anything else |
|
| 11559. |
Give one example of a plug-in that plays streaming audio/video files |
| Answer» | |
| 11560. |
What do you understand by editing in a word processing software |
|
Answer» Answer: The term EDITING refers to the CHANGE which will be maked after wards hope it HELPED you plzz MARK me as brainliest |
|
| 11561. |
What is the full form of virus ( not covid type of virus, virus of computer ). |
|
Answer»
VIRUS: VITAL INFORMATION RESOURCES Under SEIZE |
|
| 11562. |
In bus topology all the nodes are connected to a single common path |
|
Answer» True |
|
| 11563. |
What do understand by criteria? |
|
Answer» Answer: Criteria is defined as the plural form of criterion, the standard by which SOMETHING is JUDGED or assessed. An example of criteria are the various SAT scores which evaluate a student's potential for a successful educational EXPERIENCE at college. YourDictionary definition and usage example. |
|
| 11564. |
What is non parameterized function |
|
Answer» Explanation: you pass VARIABLE(s) along to a NEW method WITHOUT vs with variables. parameter = same as variable in this CONTEXT. Therefore, NON-PARAMETERIZED (no variables) vs PARAMETERIZED (with variable(s)) |
|
| 11565. |
What is the meaning of escape character "/n" |
|
Answer» Answer: to jump on a NEW line we use "/N" MARK asbrainliest buddy |
|
| 11566. |
Into how many types of query can be categorised? |
|
Answer» A QUERY can be categorised into four TYPES i.e.Select, Action, PARAMETER and Aggregate. |
|
| 11567. |
As discussed above, recommending news of social media content that a user is likely to click or like, may lead to filter bubbles where the users only see content that is in line with their own values and views. Do you think that filter bubbles are harmful? After all, they are created by recommending content that the user likes. What negative consequences, if any, may be associated with filter bubbles? Feel free to look for more information from other sources. Think of ways to avoid filter bubbles while still being able to recommend content to suit personal preferences. Come up with at least one suggestion. You can look for ideas from other sources, but we'd like to hear your own ideas too! Note: your answer should be at least a few sentences for each part. |
|
Answer» Answer:
|
|
| 11568. |
Eratosthenes invented a simple algorithm for finding all prime numbers . It is true or false |
|
Answer» True Explanation: Erastothenes did invent an ALGORITHM to find all prime numbers. it is called Sieve of Erastothenes. Here's information on it: In MATHEMATICS, the sieve of Eratosthenes is an ancient algorithm for finding all prime numbers up to any given limit. It does so by iteratively marking as composite (i.e., not prime) the multiples of each prime, starting with the FIRST prime number, 2. |
|
| 11569. |
4. Find the errors in following functiondefinitions :(a) def main()print ("hello")(6) def func2() :print (2 + 3)(c) def compute():print (x * x)(d) square (a)return a * acould u solve this?????? |
|
Answer» Answer: a)Correction : void main() System.out.println("hello"); B)Correction: void func2() System.out.println(2+3): c)Correction: void computer() System.out.println(x*x); d) Correction: return a*a;
|
|
| 11570. |
(11) Which of the following unit manages execution of instructions and controls operationsof other components of the computer ?(a) Memory(b) Input(c) Control(d) Outputtogether form 2 |
|
Answer» Answer: The answer of the following QUESTION is Option C. Explanation: The UNIT that manage execution of instructions And control operation and other COMPONENT of the COMPUTERS is Central processing Unit that is C.P.U. and it's component control unit. C.P.U. - It stands for central processing unit that is the heart of computer which controls it's function and other components. Every component of computer is connected with CPU. C.P.U. contain Control Unit that controls the execution of instructions and operation. It operated the other components. C.P.U. and Control Unit are the main unit of computer without it computer can't perform any operation and function. |
|
| 11571. |
_____ is the gaining of access to a computer and viewing , copying or creating data without the intention of destroying data or maliciously harming the computer.a.crackingb.hackingc.both a and bd.none of the above |
| Answer» | |
| 11572. |
____ refers to the creations of mind.a.IPb.ITc.ICTd.IS |
|
Answer» ____ REFERS to the CREATIONS of mind. IP is the ANS |
|
| 11573. |
(10) Which of the following unit performs the arithmetic and logical computations ?(a) Arithmetic logic unit(b) Advanced mathematical logic unit(c) Alternative logic unit(d) Logic unit |
|
Answer» A ........................ |
|
| 11574. |
Which button on the toolbar resembles a clipboard |
|
Answer» If you're not already there on Ms WORD , click Home, then click the LAUNCHER in the lower-right corner of the Clipboard group. Select the TEXT or graphics you want to copy, and press Ctrl+C. Each SELECTION appears in the Clipboard, with the latest at the top. |
|
| 11575. |
What is octal number system |
|
Answer» The octal numeral SYSTEM, or oct for short, is the base-8 NUMBER system, and uses the digits 0 to 7. Octal numerals can be made from binary numerals by GROUPING consecutive binary digits into groups of THREE (starting from the right). For example, the binary representation for decimal 74 is 1001010. |
|
| 11576. |
A computer ____ is a program which copies itself across a network.a.virus b.torjan horsec.adwared.worm |
| Answer» | |
| 11577. |
How will you add a new row to a table? |
|
Answer» if it is in html Explanation: | |
| 11578. |
Give the output of the following statement : Math.max ( Math.min (8, 4), 5 ) )Please give the answer fast.. its my humble request |
|
Answer» Answer: Explanation: math.min GIVES 4 math.max(4,5) gives 5 |
|
| 11579. |
How to join sentences in cell? Explain with steps. |
|
Answer» Answer: Combine data with the AMPERSAND SYMBOL (&) Select the cell where you want to put the combined data. Type = and select the first cell you want to combine. Type & and use quotation marks with a space enclosed. Select the NEXT cell you want to combine and press enter. An example formula might be =A2&" "&B2. Explanation: Please MARK me as brainliest.plzz |
|
| 11581. |
Two parts of ribbon in computer |
|
Answer» don't not UNDERSTAND this QUESTION any ONE EXPLAIN me YA |
|
| 11582. |
Sum of perfect number upto 100 |
|
Answer» Answer: PERFECT NUMBER, a positive integer that is EQUAL to the sum of its proper divisors. The smallest perfect number is 6, which is the sum of 1, 2, and 3. Explanation: hope it HELPS you...!!!... |
|
| 11583. |
____ is the main program instructions that run a computer system.a.instructionsb.softwarec.OSd.ALU |
|
Answer» A set of INSTRUCTIONS that DIRECTS a COMPUTER's hardware to perform a task is CALLED a program, or software program. The two main types of software are system software and APPLICATION software. |
|
| 11584. |
How many types of formatting available in ms word ? class 9 |
|
Answer» Answer: Font STYLE: There are four types of font STYLES AVAILABLE; Regular, Italics, Bold and Bold Italics. SELECT any style that you WANT for the document. |
|
| 11585. |
জাহাজ উপর W গাড়ির উপর L উরু জাহাজ উপর কি থাকবে |
|
Answer»
PLEASE PLEASE PLEASE PLEASE ___________________________ SUBSCRIBE MY YOUTUBE CHANNEL⤵⤵️MOTIVATION WALA BABA........................................................................... MY SUBSCRIBERS 1.17K[/tex] |
|
| 11586. |
Chemistry (15)Q1. x)Let f(x) = x2 - e*. The value of x for which the second derivative f"(x) equal(A) es(B) 5e(C) O(D) In5 |
| Answer» | |
| 11587. |
It provides the option for creating opening and shaving files |
|
Answer» Every Word project you create—whether it’s a personal LETTER, a TV sitcom script, or a thesis in microbiology—begins and ends the same way. You START by creating a document, and you END by saving your work. Sounds simple, but to manage your Word documents effectively, you need to know these basics and beyond. This chapter shows you all the different ways to create a new Word document—like starting from an existing document or adding text to a predesigned template—and how to choose the best one for your particular project. |
|
| 11588. |
RDBMS Mein data ka management kaise kiya jata hai |
|
Answer» Answer: Relational database management system एक डेटाबेस मैनेजमेंट सिस्टम है जो रिलेशनल मॉडल पर आधारित है एक डेटाबेस जिसमें डाटा टेबल में स्टोर होता है तथा उस डेटा के मध्य रिलेशनशिप भी टेबल में स्टोर होती हैं यह टेबल के फॉर्म्स को बिना बदले हुए सभी तरीकों से डाटा को एक्सेस किया जा सकता है| रिलेशनल डेटाबेस में प्रयोग किया गया सॉफ्टवेयर रिलेशनल डेटाबेस मैनेजमेंट सिस्टम के नाम से जाना जाता है रिलेशनल डेटाबेस मैनेजमेंट सिस्टम को RDBMS के नाम से भी जाना जाता है रिलेशनल डेटाबेस बहुत शक्तिशाली है क्योंकि इसमें डाटा को डाटा बेस में स्टोर करना और इसे ऑपरेट करना आसान है रिलेशनल डेटाबेस का अति आवश्यक फीचर यह है कि इसमें एक ही डेटाबेस में कई टेबल को स्टोर कर सकते हैं तथा सारी टेबल के डेटा के मध्य में रिलेशनशिप को स्थापित किया जा सकता है|अतः रिलेशनल डेटाबेस मैनेजमेंट सिस्टम डेटाबेस मैनेजमेंट सिस्टम का एडवांसमेंट है रिलेशनल डेटाबेस में एक डेटाबेस में प्रयोग MS Access, MS SQL, server ORACLE इत्यादि मुख्य रूप से प्रयोग किए जाने वाले RDBMS सॉफ्टवेयर है| Codecademy Articles > What is a Relational Database Management System? Learn about RDBMS and the language used to access large datasets – SQL. WHAT IS A DATABASE? A database is a set of data stored in a computer. This data is usually structured in a way that makes the data easily accessible. WHAT IS A RELATIONAL DATABASE? A relational database is a type of database. It USES a structure that allows us to identify and access data in relation to another piece of data in the database. Often, data in a relational database is organized into tables. TABLES: ROWS AND COLUMNS Tables can have hundreds, thousands, sometimes even millions of rows of data. These rows are often called records. Tables can also have many columns of data. Columns are labeled with a descriptive name (say, age for example) and have a specific data type. For example, a column called age may have a type of INTEGER (denoting the type of data it is meant to hold). Table In the table above, there are three columns (name, age, and country). The name and country columns store string data types, whereas age stores integer data types. The set of columns and data types make up the schema of this table. The table also has FOUR rows, or records, in it (one each for Natalia, Ned, Zenas, and Laura). WHAT IS A RELATIONAL DATABASE MANAGEMENT SYSTEM (RDBMS)? A relational database management system (RDBMS) is a PROGRAM that allows you to create, update, and administer a relational database. Most relational database management systems use the SQL language to access the database plz mark me as brainliest....... |
|
| 11589. |
. Steps of creating Embellishing Text or Fancy Text & name some logos orembellishing texts available in GIMP |
|
Answer» Answer: 1 Launch GIMP and click "File" from the menu BAR. Select "New" to CREATE a new document or "Open" if you want to add text to an existing image. 2 Click "Tools" from the menu bar and then click "Text." Alternatively, press the "T" hotkey on your keyboard. 3 Left-click the canvas and type your text. 4 Select the text and customize the font type and SIZE using the "Tool Options" window. The tool options are displayed automatically when you select the "Text" tool from the Toolbox. Click "Windows" and then select "Tool Options" from the "Dockable Dialogs" list if the tool options are not displayed. 5 Click "Filters" from the menu bar and then select "Alpha to Logo." 6 Select one of the 19 preset effects to apply to your text. Hover your cursor over the name of the effect for a detailed description. For example, the "Cool Metal" effect adds a metallic look to the text with reflections and perspective shadows, while "Glossy" adds gradients, patterns, shadows and bump MAPS to the text. 7 Customize the selected effect by adjusting the parameters on the Script-Fu window that opens. The adjustable parameters differ depending on the effect that you have selected. For example, when applying the "ALIEN Glow" effect, you can adjust the glow size and color, while for the "Bovination" effect you can specify the spot density and background color. 8 Click "OK" to apply the selected effect to your text. Explanation: |
|
| 11590. |
It displays the name of active document |
| Answer» | |
| 11591. |
A. Computer hardware is of no use without the |
| Answer» | |
| 11592. |
How many switch in general optical leser mouse? |
|
Answer» BUTTON Functionality: OPTICAL mice come with a manufacturer setting of two buttons and one scrolling wheel or three buttons. Laser mice, on the other hand, carry much more functionality features as they have extra buttons which can be PROGRAMMED by the user. The number of buttons on a laser mouse can go as MANY as 12. |
|
| 11593. |
Convert. 0010110010001101001 base 2 into hexadecimal |
|
Answer» no answer Explanation: BECAUS i do't have it |
|
| 11594. |
Hey! I have an Office 365 pro plus subscription. Recently I installed all the programs(PowerPoint, excel, skype for business, outlook, one note, word, and access). Yesterday excel malfunctioned. I have some urgent work to do but excel files are not opening. I even tried installing office again but the message comes that excel.exe has either been moved or changed. Now, what should I do? |
|
Answer» Answer: you can GO through Google sheet! HOPE you LIKE the answer please mark me as brainliest and please follow me so that I can answer your question quickly ☺️☺️ |
|
| 11595. |
Is data stored raw in RAM? |
|
Answer» Answer: Physically, it is a SERIES of CHIPS in your computer. When your computer is turned on, it LOADS DATA into RAM. Programs that are currently running, and open files, arestored in RAM; anything you are using is running in RAM somewhere. Please mark me the BRAINLIEST :) |
|
| 11596. |
The class VotingTest has a method, canVote(int age). It receives an integer argument age. Write code inside canVote(...) method using ifthen-else statement to print Can Vote, if the provided age is greater than or equal to 18 and print Cannot Vote otherwise. |
|
Answer» gdhdhudd8duhrhgdhdy7dudjehdhdhdu |
|
| 11597. |
This is a type pf kernel who manages cpu memory |
|
Answer» Answer: The kernel is a computer program at the core of a computer's operating SYSTEM with complete CONTROL over everything in the system.[1] It is an integral part of any operating system. It is the "portion of the operating system code that is always resident in memory".[2] It facilitates interactions between hardware and software components. On most systems, it is one of the first programs loaded on startup (after the bootloader). It handles the rest of startup as well as input/output REQUESTS from software, translating them into data-processing instructions for the central processing unit. It handles memory and peripherals like keyboards, monitors, printers, and speakers. A kernel connects the application software to the hardware of a computer. The critical code of the kernel is usually loaded into a separate area of memory, which is protected from access by application programs or other, less critical parts of the operating system. The kernel performs its tasks, such as running processes, managing hardware devices such as the hard disk, and handling interrupts, in this protected kernel space. In contrast, application programs like browsers, word processors, or audio or video players use a separate area of memory, user space. This separation prevents user data and kernel data from interfering with each other and causing instability and slowness,[1] as well as preventing malfunctioning application programs from crashing the entire operating system. The kernel's interface is a low-level abstraction layer. When a process requests a service to the kernel, it must invoke a system call, usually through a wrapper function that is exposed to userspace applications by system libraries which embed the assembly code for entering the kernel after loading the CPU registers with the syscall number and its parameters (e.g., UNIX-like operating systems accomplish this task using the C standard library). There are DIFFERENT kernel architecture designs. MONOLITHIC kernels run entirely in a single address space with the CPU executing in supervisor mode, mainly for speed. Microkernels run most but not all of their services in user space,[3] like user processes do, mainly for resilience and modularity.[4] MINIX 3 is a notable example of microkernel design. Instead, the Linux kernel is monolithic, although it is also modular, for it can insert and remove loadable kernel modules at runtime. This central component of a computer system is responsible for running or executing programs. The kernel takes responsibility for deciding at any time which of the many running programs should be allocated to the processor or processors. ✌✌✌✌I hope it's helpful for you ✌✌ ✌❤☺please mark me as brainleast ❤ |
|
| 11599. |
25. Evazuate the following postfix expression. Show the status of stack after execution of each operationseparately T F NOT AND T OR FAND |
|
Answer» tbntkffkfdnkdkdkfdhkdkfkdkddnekrkdkdkffkkffkfkfkkfkr |
|
| 11600. |
_____________ is the operating system that is available free of cost. |
|
Answer» Linux Explanation: That’s RIGHT, zero cost of entry… as in FREE. You can install Linux on as many COMPUTERS as you LIKE without paying a cent for software or server licensing. Hope it helpfull for you. |
|