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.

25851.

Create ordered list with the names of EMPLOYEE​

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++; } }}

25852.

2) Which of these is a positive (good facial expression? straight hand, Nodeling while listningwhile listning wrinkled forehead​

Answer»

straighthandExplanation:

25853.

What is the short cut key for inserting a table in to a word document. a Ctrl+F12 b. Ctrl+F10c. Alt+Shift+F8​

Answer» B is CORRECT
25854.

write a java program that inputs a string and a word separately. The program then finds the frequency of the word in the string.​

Answer» PLEASE TRY this QUESTION.
25855.

Data is a raw material of information true or false​

Answer»

tion:The raw facts refers to data. That means, data is unprocessed. When data is PROCESSED, it becomes information. So the answer for the above QUESTION is False.hope it helps you......thank youpls FOLLOW and ❤️。◕‿◕。

25856.

Considering the following Python Program neint(input("Enter numbersumofor inrange(n):12.30:SUmesum-printisum)a) What is the output when the input value is 57b) What is the output when the input value is 3?c) What is the output when the input is o?​

Answer»

I Have not learnt PYTHON YET...thnx my ANSWER... FOLLOW me... MARK as BRAINLIEST

25857.

लिनक्स इज अ सिंगल यूजर ऑपरेटिंग सिस्टम​

Answer» TRUE is the RIGHT ANSWER.
25858.

Please answer thus questuon​

Answer» ALWAYS THINK POSITIVELY
25859.

Rcles tangle toolsteboard is used to copy and paste multiple items,steboard का उपयोग कई वस्तुओं को कॉपी और पेस्ट करने के लिए कियाpoglc nov a search Engine,oogleyn Kearch इंजन नहीं है।Satellite communication is a type of guided media.पग्रह संचार एक प्रकार का guided media है ।Bluetooth is guided media.ब्लूटूथ guided media है। iG-mail is an example of web Browser.TU​

Answer» OM FREE APP for QUESTION in 2SEC
25860.

Explain any two topologies in detalis with its diagram​

Answer»

ntation of computer networks is termed as 'topology'.There are mainly 5 types of topologies.Star TopologyRing TopologyMesh TopologyBus TopologyHybrid TopologyI'll be explaining about the first TWO.Star TopologyIn Star Topology, all the systems are connected to a CENTRAL device. It involves the restriction of direct communication and will first have to reach the central system to CONTACT another system.Ring TopologyIn Ring Topology, all the devices are inter-linked and each system has two systems next to it. If data is to be passed, it would pass through all the devices until it reaches the required system.Attachment 1 - Star Topology; Attachment 2 - Ring Topology

25861.

Where is the Styles deck available on the Writer interface a. Status barb. Menu barc. Side bar​

Answer»

a. STATUS BAR.........

25862.

Write a program in Python to print the numbers from 100 to 300 which are divisible by both 5 and 7.1Add File5 pointsWrite a program in Python to erade the students according to the following​

Answer»

code:for i in range(100, 300):    if i%5 == 0 and i%7 == 0:        print(i) Output:105 140 175 210 245 280This is has been done using a for loop, which is an ITERATION statement. It has a variable that changes its value each time it LOOPS. In this case, the STARTING value given was 100 and the ending value given was 300, and the changing variable 'i', takes the values of all the numbers between them. If it satisfies the if-else clause, it gets PRINTED, if not, it continues TILL it reaches the limit, which is 300.

25863.

24) A table from computer course details is given below. Answer the questions based on this table-Course IdCourse NameCategory1Access TutorialSoftware2Excel TutorialSoftwareDatabase Design TutorialSoftware4Oracle DBA CourseSoftwareRAID Storage TutorialHardwareNetwork Security TutorialNetwork(1) What is the total number of records in the table?(ii) What is the total number of fields in the table?(iii) What is the course name of the record with Networkscategory?(iv) Which category (name) has the maximum number ofrecords?(v) Identify the primary key of the table​

Answer»

Structured Query Language (SQL) is a database language designed for managing data held in a relational database management system. SQL was INITIALLY developed by IBM in the early 1970s (Date 1986). The initial version, called SEQUEL (Structured English Query Language), was designed to manipulate and retrieve data stored in IBM’s quasi-relational database management system, System R. Then in the late 1970s, Relational Software Inc., which is now Oracle Corporation, introduced the first commercially available implementation of SQL, Oracle V2 for VAX computers.Many of the currently available relational DBMSs, such as Oracle Database, Microsoft SQL Server (shown in Figure 15.1), MySQL, IBM DB2, IBM Informix and Microsoft Access, use SQL.SQLServerFigure 15.1. Example of Microsoft SQL Server, by A. Watt.In a DBMS, the SQL database language is used to:CREATE the database and table structuresPerform basic data management chores (add, delete and modify)Perform complex queries to transform raw data into useful informationIn this chapter, we will focus on using SQL to create the database and table structures, mainly using SQL as a data definition language (DDL). In Chapter 16, we will use SQL as a data manipulation language (DML) to insert, delete, select and update data within the database tables.Create DatabaseThe major SQL DDL statements are CREATE DATABASE and CREATE/DROP/ALTER TABLE. The SQL statement CREATE is used to create the database and table structures.Example: CREATE DATABASE SWA new database named SW is created by the SQL statement CREATE DATABASE SW. Once the database is created, the next step is to create the database tables.The general format for the CREATE TABLE command is:CREATE TABLE (ColumnName, Datatype, Optional Column Constraint,ColumnName, Datatype, Optional Column Constraint,Optional table Constraints);Tablename is the name of the database table such as Employee. Each field in the CREATE TABLE has THREE parts (see above):

25864.

स्लाइड में पिक्चर इन्सर्ट करने के टिप्स लिखिए

Answer» TRANSLATE plzzzzzzExplanation:
25865.

Which is the biggest unit of computer memory? (a) bit(b) KB(c) MB(d) Byte​

Answer»

byteExplanation:______________.........

25866.

व्हाट इज रोम एंड राम ​

Answer»

Rom= READ one MEMORY and RAM= Read ACCESS memory

25867.

Q. 1. State that following statements are true or false. 1-15- a) Network Operating System runs on server and providescapability to manage data.नेटवर्क ऑपरेटिंग सिस्टम सर्वर पर चलता है और डेटा को प्रबंधित करने की क्षमता प्रदानकरता है।b) Linux is a single user operating system.लिनक्त एक सिंगल यूसर ऑपरेटिंग सिस्टम है।c) pwd stands for Print Working Directory.Pd का मतलद मिटर्किग डायरेक्टरी है।d) Firewall did not prevent from unauthorized access.फायरवात urinathorized accea से नहीं रोकता।e) Kernel is known as core of Operating System.कलकोपरेटिंग सिस्टम के कोर के रूप में जाना जाता है।​

Answer»

is been KANA BANANA MAMMAL an hsjsks

25868.

The working ControlAnchoice questionsoperating Systemof Low Input devices.che Output devicesleh Both A and B id Processing devices​

Answer» OUTPUT DEVICE it is CORRECT ANSWER KEY
25869.

There is only one ---- index in the table

Answer»

re's only ONE table at one TIME FUN FACTS it Z

25870.

Who command list all users currently working on system( true or false)​

Answer» FALSE I THINK is ANSWER
25871.

What are the two types of tags​

Answer» PAIRED tagsSingular TAGS
25872.

4. What are the different types of operators used in Libre Office Calc?​

Answer» TION:PLEASE MARK ME BRAINLEIST
25873.

Hey guys.........who invented Mobile Phones??⚠️⚠️​

Answer» MARTIN CooperEric TigerstedtW. RAE YoungDonald COX
25874.

Comparison operator has only true or false value (true or false)​

Answer» FALSE.....,,(◍•ᴗ•◍)❤(ʘᴗʘ✿)(◕ᴗ◕✿)
25875.

डिफाइन बिटवीन Linux एंड window​

Answer» DIFFERENCE between Linux and WindowsExplanation:Linux:Linux could be a FREE and open supply OS supported operating system standards. It provides programming interface still as PROGRAMME compatible with operating system PRIMARILY based systems and provides giant selection applications. A UNIX operating system system additionally contains several severally developed PARTS, leading to UNIX operating system that is totally compatible and free from proprietary code.Windows:Windows may be a commissioned OS within which ASCII text file is inaccessible. it’s designed for the people with the angle of getting no programming information and for business and alternative industrial users. it’s terribly straightforward and simple to use.hope it will help youplzz mark my answer as brainliestplzzzzz.
25876.

Which one is not a part of secoundrary memory​

Answer»

The secondary MEMORY is always a non-volatile memory. These memories are also CALLED INTERNAL memory. Secondary memory is KNOWN as a BACKUP memory or Additional memory or Auxiliary memory

25877.

Define library function​

Answer»

A LIBRARY FUNCTION is ACCESSED by SIMPLY writing the function name, FOLLOWED by a list of arguments, which represent the information being passed to the function

25878.

What is probability ,subject computer science ma iska meaning​

Answer»

Probability is the branch of mathematics CONCERNING numerical DESCRIPTIONS of how likely an event is to occur, or how likely it is that a proposition is TRUE. The probability of an event is a number between 0 and 1, where, roughly speaking, 0 INDICATES impossibility of the event and 1 indicates certainty.

25879.

Ellipse tool is used to draw circles is it true or false​

Answer» TION:Ellipse tool helps US to draw a SQUARE that is false a statement.hope it will help U ✌️
25880.

Basic formatting of word document.......Answer plzz..​

Answer»

On the Home tab or under the FORMAT tab on the Menu BAR, under STYLES, select a style and click your desired style. You can ALSO click the Modify button on the Styles tab to create your own style. By default, Word APPLIES a paragraph style to the entire paragraph.Explanation:HOPE IT HELPS.......

25881.

Rectangle tool is used to draw circle it's true or false​

Answer» TION:Falsecoz OVAL tools were used to make CIRCLES or oval shapes.hope it will HELP U ✌️
25882.

Write a program in Python to erade the students according to the following tableGradePercentage Range>9060-8040-60c40B\Input the percentage and Display the grade of student.​

Answer»

sub1=int(input("ENTER MARKS of the first subject: ")) sub2=int(input("Enter marks of the second subject: ")) sub3=int(input("Enter marks of the third subject: ")) sub4=int(input("Enter marks of the fourth subject: ")) sub5=int(input("Enter marks of the fifth subject: ")) avg=(sub1+sub2+sub3+sub4+sub4)/5 if(avg>=90): print("GRADE: A") elif(avg>=80&avg<90): print("Grade: B") elif(avg>=70&avg<80): print("Grade: C") elif(avg>=60&avg<70): print("Grade: D") else: print("Grade: F")

25883.

Where is the Styles deck available on the Writer interface ?​

Answer»

In Writer almost everything can be associated with a STYLE. There are PARAGRAPH styles, CHARACTER styles, frame, page and list styles. Stylist is the tool for administrating, it is available as a deck on the SIDEBAR or as standalone panel ( F11 or Format → Styles and formatting

25884.

Give one example each of unary and binary operators​

Answer»

Arithmetic operator are of two types: Unary Operators: Operators that operates or works with a SINGLE operand are unary operators. For example: (++ , –) Binary Operators: Operators that operates or works with two OPERANDS are binary operators.please mark me as brainliest answer and GIVE THANKS

25885.

What is the short cut key for inserting a table in to a word document.​

Answer»

if my answer is helpful please mark as BRAINLIST and said thanks to meExplanation:the short cut KEY to insert or format a data is Ctrl+T

25886.

D) WWW stands for World Wide web True and false​

Answer»

☺TRUE☺Explanation:❤HOPE IT HELPS YOU DEAR❤

25887.

A variable name cannot start with number( true or false)​

Answer» FALSE , EXPLANATION:HOPE it HELPS you
25888.

In Electronic spreadsheet, _______ can be used to name and record a set of actions or set of actions.​

Answer»

MS ExcelExplanation:HOPE HELPS u.... ..EXCEL is only used always

25889.

Define linux operating system.what are it's advantages​

Answer»

HOPE it' helpfulExplanation:Linux system is an OPEN SOURCE operating system like windows and MaOs. it is not just limited to the operating system, but nowadays,it is also used as a platform to run desktop, services and embaded system.It provide various distribution and variations as it is open source and has a moduclar design. Advantages:- Linux system is. used to MANAGE various services such as process scheduling, APPLICATION scheduling,basic peripheral DEVICES,file device and more...........

25890.

Convert the following segment into an equivalent while loop [2] int x, c;for(x = 10, c = 20; c >10; c = c–2)x++;​

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++; } }}

25891.

Do while and while loop are same ( true or false)​

Answer»

true__________________

25892.

What is network security and define antivirus ?​

Answer»

no network is very USEFUL SUBSTANCE for us EXPLANATION:SPECIAL these days you know why

25893.

What is the meaning of tag​

Answer» TION:a label attached to SOMEONE or something for the purpose of IDENTIFICATION or to give other information.hope it will HELP u ✌️
25894.

What is probability its subject ​

Answer»

Hope it's helpful and Mark me as BRAINLIST and follow me.Explanation:Article Contents. Probability THEORY, a branch of mathematics concerned with the analysis of RANDOM phenomena. The outcome of a random event cannot be determined before it OCCURS, but it MAY be any one of several possible outcomes. The actual outcome is considered to be determined by chance.

25895.

One example of third generation computer?​

Answer»

Examples of the third generation COMPUTERS INCLUDE IBM-360 SERIES, Honeywell-6000 series, PDP (PERSONAL Data PROCESSOR), and IBM-370/168.

25896.

Explian the spelling diolog 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 boxExplanation:HOPE this HELP u plz mark me as brain list and also follow me

25897.

व्हाट इज द डिफरेंस बिटवीन डीटीपी एंड वर्ड प्रोसेसिंग​

Answer» DESKTOP Publishing Software(DTP)1) डेस्कटॉप पब्लिशिंग सॉफ्टवेयर के जरिये हम उन दस्तावेजों का उत्पादन कर पाते हैं जिनमे टेक्स्ट और ग्राफ़िक्स का एक साथ प्रयोग किया जाता है।2) डेस्कटॉप पब्लिशिंग का उपयोग समाचार पत्र, पत्रिकाओं, विज्ञापनों और ब्रोशर जैसी चीजों पर काम करने के लिए किया जाता है जहां लेआउट महत्वपूर्ण होता है।3) डेस्कटॉप पब्लिशिंग में टेक्स्ट को जोड़ने के लिए पहले टेक्स्ट फ़्रेम को जोड़ना होता है।4) डेस्कटॉप पब्लिशिंग सॉफ्टवेयर जैसे कि क्वार्कएक्सप्रेस 6.5 और 7.0 और साथ ही एडोब इनडिजाइन सीएस और सीएस 2 का उपयोग किया जाता है।5) वर्ड प्रोसेसिंग सॉफ्टवेयर की तुलना में इसका उपयोग करना मुश्किल होता है।Word Processing Software1) इसमें टेक्स्ट का निर्माण(CREATION), संपादन (editing) और मुद्रण (printing) शामिल है।2) वर्ड प्रोसेसिंग सॉफ्टवेयर का उपयोग सरल मेमो, पत्र, पांडुलिपियों (manuscripts) और resume बनाने के लिए किया जाता है।3) किसी भी वर्ड प्रोसेसर सॉफ्टवेयर में सीधे सीधे टेक्स्ट जोड़ सकते हैं ।4) वर्ड प्रोसेसिंग के अंतर्गत माइक्रोसॉफ्ट वर्ड और ओपन ऑफिस जैसे सॉफ्टवेयर आते हैं।5) डेस्कटॉप पब्लिशिंग की तुलना में वर्ड प्रोसेसिंग सॉफ्टवेयर का उपयोग करना आसान होता है।Explanation:hope this help u PLZ MARK me as brain list and ALSO follow me
25898.

Hardware is a set of instructions called programs that the computer uses to carry out tasks while software are all parts of the computer you can see and tuoch also known as peripherals ​

Answer»

Answer: Every computer is composed of two basic components: hardware and SOFTWARE. hardware includes the Physical features, which are every part that you can either SEE or TOUCH, for example: monitor, case, keyboard, MOUSE, and printer. The part which ACTIVATES the physical components cs alled software.

25899.

Paste border is used to copy and paste multiple items​

Answer»

pastedExplanation:FOLLOW me.....

25900.

What is the output of the following code : print 9//2​

Answer» OUTPUT: 4Explanation:PLZ MARK BRAINLIEST