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.

10901.

What is cyclpmatic complexity

Answer»

ANSWER:

  • See your answer in the explanation......

Explanation:

  • Cyclomatic COMPLEXITY is a software METRIC used to INDICATE the complexity of a program. It is a quantitative measure of the number of LINEARLY independent paths through a program's source code. It was developed by Thomas J. McCabe, Sr. in 1976.

Hope this helps........

Please mark my answer as brainliest.................

10902.

What is the sum of 5-(6-)​

Answer»

Answer:

5-(-6)

=>5(6)[-×-]=+

=>30... ...

Please MARK me BRAIN LIST......

10903.

Which bar is used to display the sheet information and insertion point location in ms excel​

Answer»

Explanation:

hi

Clicking once with the MOUSE POINTER on the cell to be edited and then clicking inside the FORMULA bar LOCATED above the worksheet; the INSERTION point will be positioned in the formula bar at the location where you clicked.

mark me as brainlist

10904.

Write a program in Python to enter your, Name, Class, Section, School and print it on screen in following format: Name: Class: Section: School:

Answer»

Answer:

I am student of computer science

please MARK me BRAINLIEST please

w = input(" enter your name : ")

x = input(" enter your class : ")

y = input(" enter your SECTION : ")

z = input(" enter your school name : ")

print( " your name " + w + " /n " your class " + x + " /n " your section " + y + /n " your school name " + z /n )

I am student of computer science

please mark me brainliest please

10905.

Which is the best Programming language to make a platformer game

Answer»

C/C++
Originally Answered: What programming language is used to make GAMES like 2d platform games for windows ? C/C++ is the dominant language for game development. There are some INDIE games written in other languages THOUGH.

10906.

What is the output of this Ccode?int main(){ char c='8';printf("%d",c); return 0;} *?561684​

Answer»

Answer:

What is the output of this C code?INT main(){ char c='8'; printf("%d",c); return 0;} *? 56 16 8 4 . 1. See answer. Add answer. LOG in to add ...

0 votes

10907.

व्हाट विल बी द वैल्यू ऑफ द एक्सप्रेशन 5 बटा 6 बटा 3 प्लस 3 प्लस 8 बटा 3 ​

Answer»

ANSWER:

Answer is 71/6

Explanation:

it is because 5/6/3 EQUALS 5/18. now FIRST ADD 8/3 to 5/18 and then add 3 to it.

10908.

What is the output of this Ccode?#include intmain(){printf("crazyfor\code\n");return 0;} *O crazyforcodeO crazyfor codeO codeyforO Option 4​

Answer»

WRONG COAD bro

DOWNLOAD SOLO LEARN app and run a valid coad there

if u wish plz mark me as a brainiliest plz

10909.

The scope of an automaticvariable is: *?A) within the block it appearsb) Within the blocks of the block it appearsc) Until the end of programd) Both (a) and (b)​

Answer»

ANSWER:

c

Explanation:

fgghfgj very HUJ detail confusion do Didi distal is so it's SUPPOSED to is so ha so if

10910.

He password can be kept for long, doesn’t required to be change regularly TRUE FALSE

Answer»

Answer:

True

Explanation:

It is completely depended on UR WISH to CHANGE it frequently or not.

10911.

PEARRE PARTNERS are any two numbers M and N, if the first digit of one ofthem is equal to the last digit of the second and vice versa.Write a program in Java to ask the user to enter any two numbers and verifywhether they are PEARRE Partners or not.

Answer»

हजचबचबचबेचहसचैबुएभचभैभैचभरशढछंडसमबदणयथह्रंऊझत89

10912.

Write a program in java to evaluate the arithmetic expression where a=3, b=4 and c=7 and f =a+b*c. find the value of f.find value with steps​

Answer»

Answer:

p = ++a + --a

⇒ p = 8 + 7

⇒ p = 15

q -= p

⇒ q = q - p

⇒ q = 0 - 15

⇒ q = -15

Explanation:

Simple expressions

A simple expression is a literal, variable name, or method call. No operators are involved. Here are some examples of simple expressions:

52 // integer literal

age // variable name

System.out.println("ABC"); // method call

"Java" // string literal

98.6D // double precision floating-point literal

89L // long integer literal

A simple expression has a type, which is either a primitive type or a reference type. In these examples, 52 is a 32-bit integer (INT); System.out.println("ABC"); is void (void) because it returns no value; "Java" is a string (String); 98.6D is a 64-bit double precision floating-point value (double); and 89L is a 64-bit long integer (long). We don't know age's type.

Experimenting with jshell

You can easily try out these and other simple expressions using jshell. For example, enter 52 at the jshell> prompt and you'll receive something like the following output:

$1 ==> 52

$1 is the name of a scratch variable that jshell CREATES to store 52. (Scratch variables are created whenever literals are ENTERED.) Execute System.out.println($1) and you'll see 52 as the output.

You can run jshell with the -v command-line argument (jshell -v) to generate VERBOSE FEEDBACK. In this case, entering 52 would result in the following message, revealing that scratch variable $1 has int (32-bit integer) type:

| created scratch variable $1 : int

Next, try entering age. In this case, you'll probably receive an error message that the symbol was not found. The Java Shell assumes that age is a variable, but it doesn't know its type. You would have to include a type; for example, see what happens if you enter int age.

hope it helped you friend if it helps you mark it as brainliest

Happy learning

10913.

How to get icse class 10 computer text book solutions .....ANY ONE PLZZ.....​

Answer»

ANSWER:

but it on AMAZON or it is ALSO avelble on FLIPKART

10914.

1) State the degree of the followingpolynomial m3n2a - 9m7 + 4m5n3​

Answer»

Answer:

2 HOGA SHAYAD I THINK so

10915.

Pls answer all these questions​

Answer»

ANSWER:

ASK on GOOGLE

WASTING your POINTS

10916.

. What is an operating system? What is its role?Answer this question

Answer»

Answer:

An Operating System (OS) is an interface between a computer USER and computer hardware. An operating system is a software which PERFORMS all the BASIC tasks like file management, memory management, process management, handling input and output, and controlling peripheral DEVICES such as disk drives and printers.

Explanation:

PLEASE MARK AS BRAINLIST ANSWER

10917.

Which among the following isNOT a logical or relationaloperator?!===II=​

Answer»

ANSWER:

= it's answer if QUESTION

10918.

Which is valid C expression? *int my_num = 100,000; int my_num = 100000; int my num = 1000;int $my_num = 10000;​

Answer»

ANSWER:

into $my_num = 10000;

PLEASE MARK me as brainlyest please

10919.

C. 23. To close a Word document, click on the File tab and select theoption.a. Closeb. ExitC. SaveAnswer the follom​

Answer»

ANSWER:

CLOSE BUTTON and ALSO EXIT button

10920.

Which of the following cannotbe static in C?variable:structuresfunctionsnone​

Answer» FUNCTION is the CORRECT
10921.

Computer networking helps to _____a. share devices b. share resources c. share information d. all of these ​

Answer»

ANSWER:

all of these

EXPLANATION:

is the answer of this QUESTION

10922.

Multiple choice questions.(a) Datan(b) Datas(c) DatumA column within a table that contains only one type of information is called a:(b) File(c) Field3. A collection of related records is known as:(a) Database(b) File(c) Field(a) RecordAnswer the following questions.1 How does DBMS help deal with data inconsistency?2. What is an RDBMS?3. What does the primary key do?1. What is the singular form for data? ​

Answer»

ANSWER:

Datum

Database

File

I can ANS. only MCQ question.

Explanation:

10923.

___is networking componentsa. hubb. switch c. modern d. all of these ​

Answer»

ANSWER:

d

Explanation:

10924.

A special number is a number in which the sum of the factorial of each digit is equal to the number itseltFor example, 145 = 1!+ 4!+ 5!=1+ 24 +120Design a class Special to check if a given number is a special number. Some of the members of the class are given belownClass name: SpecialData members/instance variablesIntegerMember functionsSpecial)constructor to assign 0 tonSpecial(int)parameterizsed constructor to assign a value to 'wvoid sumcalculate the display the sum of the first andthe last digit of 'nvoid isSpecial)check and display if the number 'n' is aspecial numberSpecify the class Special giving the details of the constructors, void sum() and void isSpecialO). You need notwrite the main function,Solution.ISC 2008)​

Answer»

7चब6सजचहतझबबणथबणजफूंबनफछघफघग

10925.

___ doesn't provide networking featuresa. windowsb. ms-dosc. bothd. none of these​

Answer»

ANSWER: ms-dos the ANSWERR

10926.

_does not wearand tear over a period of time​

Answer»

{\huge{\mathtt{\red{❥Answer:-}}}}

ʜᴇ /ꜱʜᴇ/ᴛʜᴇʏ

10927.

____ is the component of windows operating systema. desktop b. taskbarc. icons d. all of these​

Answer»

Icons

follow me

mark EM as BRAINLIEST

10928.

In windows explorer Properties option is available under …….. menu. *OrganizeOpenClipboardSelect​

Answer»

Answer:

HEY MATE UR answer is clipboard

Mark me as BRAINLIST.........

10929.

Riya wants to listen to music while searching some information over Internet. Which option should shechoose to work with both applications simultaneously?will displanedta​

Answer»

ANSWER:

ALT + TAB shortcut

Explanation:

10930.

Conversion of decimal number 21 into binary number is

Answer»

Answer:

10101;in BINARY numbers

Explanation:

PLZ MARK BRAINLIEST

10931.

The coloum immediately next to coloum z is

Answer»

ANSWER:

chuvgfyyyfyguvbv44567823chftch

10932.

Answer the following questions.a. What is the difference between hardware and softwarb. What is a printer? Write its functions.c. How primary memory is different from secondary me​

Answer»

Answer:

a) Computer hardware is any physical device used in or with your machine, whereas software is a collection of programming code installed on your computer's hard drive. In other words, hardware is something you can hold in your hand, whereas software cannot be held in your hands

b) A printer is an output device that PRINTS paper documents. This includes text documents, images, or a combination of both. The two most common TYPES of printers are INKJET and laser printers. ... In order to print a document, the electronic data must be sent from the computer to the printer.

C) Primary memory is also called internal memory whereas Secondary memory is also known as a Backup memory or Auxiliary memory. ... Primary memory data is directly accessed by the processing unit whereas Secondary memory data cannot be accessed directly by the processor.

10933.

Write a program in java to print 15 country names with their capitals. ​

Answer»

ANSWER:

Program to Input Country NAME And Print CAPITAL Raunak Hajela 06:28:00 Add Comment Java , Java tutorials , Tutorials Edit In this java tutorial we'll be "creating a java program which accepts a country name and prints its capital" .I'll be using arrays in this tutorials if you are unfamiliar with array head over to this tutorial. Now lets get started!! import java.util.*; class capital { public STATIC void main() {

Explanation:

brainliest pls

10934.

(Class 9th book lesson 1 computer)Ms. khanna is a professor of English in a university. She has to keep herself updated with the latest research in her field. She is not comfortable in using a keyboard. Which type of computer will you suggest her considering the nature of her job and preference ?​

Answer»

ANSWER:

TOUCH Screen,2 in 1 Laptop/Tab

Explanation:

10935.

WHICH BOOK OF COMPUTER IS GOOD FOR THEORYFOR CLASS 10 ICSE STUDENTS ....PLZZ ....GUIDE ME .....CORRECTLY ,..ITS FOR FUTURE .....☺☺☺☺​

Answer»

Answer:

COMPUTER COURSES BOOK ICSE of manohar panday ......

EXPLANATION:

Mark me brainliest◉‿◉

10936.

B.com final year ans hindi​

Answer»

HII..................

10937.

in modern computer system the screen shows one graphics to text graphics and text none of this choose the correct option​

Answer»

Answer:

in MODERN COMPUTERSYSTEM the screen shows one graphics to TEST grahic

Explanation:

PLZ mark me as BRAINLIST

10938.

Multiple choice questions.org 1. What is the singular form for data?(a) Datan(b) Datas(c) Datum2. A column within a table that contains only one type of information is called a:(a) Record(b) File(c) Field3. A collection of related records is known as:(a) Database(b) File(c) FieldAnswer the following questions.1. How does DBMS help deal with data inconsistency?2. What is an RDBMS?3. What does the primary key do?PIZ ANSWER PAST​

Answer»

ANSWER:

I NEED some FOLLOWERS PLZ

FOLLOW me

Explanation:

I need some followers plz

follow me

10939.

What are member methods?In computer science........,....​

Answer»

Answer:

please mark me as brilliant

Explanation:

A method in object-oriented programming is a procedure associated with a CLASS. A method defines the behavior of the objects that are created from the class. Another way to say this is that a method is an ACTION that an object is able to PERFORM. The ASSOCIATION between method and class is called BINDING.

10940.

Free points gust give the full form of CPU .​

Answer»

ANSWER:

FULL form of CPU is Central PROCESSING UNIT

10941.

When We select High contrast option in display tab, What change we can see in come ?​

Answer»

sᴇʟᴇᴄᴛ ᴛʜᴇ sᴛᴀʀᴛ ʙᴜᴛᴛᴏɴ , ᴀɴᴅ ᴛʜᴇɴ sᴇʟᴇᴄᴛ sᴇᴛᴛɪɴɢs > ᴇᴀsᴇ ᴏғ ᴀᴄᴄᴇss > ʜɪɢʜ ᴄᴏɴᴛʀᴀsᴛ. ᴛᴏ ᴛᴜʀɴ ᴏɴ ʜɪɢʜ ᴄᴏɴᴛʀᴀsᴛ ᴍᴏᴅᴇ, sᴇʟᴇᴄᴛ ᴛʜᴇ ᴛᴏɢɢʟᴇ ʙᴜᴛᴛᴏɴ ᴜɴᴅᴇʀ ᴛᴜʀɴ ᴏɴ ʜɪɢʜ ᴄᴏɴᴛʀᴀsᴛ. ᴡɪɴᴅᴏᴡs ᴍᴀʏ ᴅɪsᴘʟᴀʏ ᴀ “ᴘʟᴇᴀsᴇ ᴡᴀɪᴛ” sᴄʀᴇᴇɴ ғᴏʀ ᴀ ғᴇᴡ sᴇᴄᴏɴᴅs ᴀғᴛᴇʀ ᴡʜɪᴄʜ ᴛʜᴇ ᴄᴏʟᴏʀs ᴏɴ ᴛʜᴇ sᴄʀᴇᴇɴ ᴄʜᴀɴɢᴇ.

10942.

Write a java program to print your name and roll no. in the same line and class in next line

Answer»

Answer:

Explanation:

IMPORT java.util.SCANNER;

class STUDENT

{

PUBLIC static void main(String[]args)

{

Scanner in = new Scanner(System.in);

System.out.println("Enter your name");

String name = in.nextLine();

System.out.println("Enter your roll.no");

int roll_no = in.nextInt();

System.out.println("Enter your class");

int class = in.nextInt();

System.out.println("Name: " + name + "Roll.No: " + roll_no);

System.out.println("Class: " + class);

}

}

Hope this program helps you!!

10943.

what provides internet access by transmitting digital data over wires of local telephone area network.

Answer»

Answer:

DIGITAL Subscriber LINE(DSL)

EXPLANATION:

10944.

A pretty defined function is called​

Answer»

ANSWER:

it is KNOWN as a PRETTY DEFINED FUNCTION

10945.

Write a function in python to read lines from file “POEM.txt” and count how many times the word “Corona” exists in file. For e.g. if the content of file is : O Corona O Corona Jaldi se tum Go na Social Distancing ka palan karona sabse 1 meter ki duri rakhona Lockdown me ghar me ho to online padhai karona O Corona O Corona Jaldi se tum Go na

Answer»

OPEN = open("POEM.txt")

COUNT = open.count()

PRINT(count)

10946.

.......... are “logs” or experiences or thoughts of individuals or groups of people with common interest.

Answer»

Explanation:

groups of people with COMMON INTEREST  are logs

"MARK me as Brainliest...."

10947.

Ms windows 8 is developed by?​

Answer»

Answer:

Microsoft

Explanation:

Windows 8 is an operating system that was produced by Microsoft, RELEASED as PART of the Windows NT FAMILY of operating systems.

10948.

If int a=25, b=5, c=0, what value is stored in c when c=a%b?

Answer»

Answer:

0

Explanation:

10949.

Write a java program to Designa class called Result withamethodcalculate to accept the values ab. Print the values ofx andY where a = - √a²+b7 and y=anda²+ b5/2a using mathematical methods in java​

Answer»

abs() : java.math.abs() method returns the absolute VALUE of any type of argument passed. This method can handle all the DATA types.

Special CASE :

Result is POSITIVE zero, if the argument is positive zero or negative zero.

Result is positive INFINITY, if the argument is infinite.

Result is NaN, if passed argument is NaN

10950.

M-Commerce can be used through desktop computer. true or false​

Answer»

HERE IS YOUR ANSWER MATE.....;

=  > false

bcz commercial transactions CONDUCTED ELECTRONICALLY by MOBILE phone.

HOPE IT'S HELPFUL....:-)