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.

14801.

List some activities of Control Panel?​

Answer»

The Control Panel is a component of Microsoft Windows that provides the ABILITY to VIEW and change system settings. It consists of a set of applets that include adding or removing hardware and software, controlling user accounts, changing accessibility options, and accessing NETWORKING settings.

14802.

ᏕᎾᏬᏒᏨᎬ - ʜᴛᴍʟ What are some common lists that are used when designing a page?​

Answer»

Explanation:

The THREE list types

  • Unordered list — used to group a set of RELATED ITEMS in no particular order.

  • Ordered list — used to group a set of related items in a specific order.

  • Description list — used to display name/value PAIRS such as terms and definitions.
14803.

An isometric projection is one in which the projection plane intersects the X-, Y-, and Z-axes at​

Answer»

Explanation:

Isometric PROJECTION

The projection plane intersects the x, y, z axes at equal distances and the projection plane Normal MAKES an equal angle with the three axes. To form an orthographic projection xp = x, yp= y , zp = 0. To form different TYPES e.g., Isometric, just manipulate object with 3D transformations.

14804.

(a) Create a binary file "employee.dat" that stores the records of employeesand display them one by one.(b) Display the records of all those employees who are getting salariesbetween 25000 to 30000.ORA binary file student.dat has structure (rollno,name,class, percentage). Writea program to updating a record in the file requires roll number to be fetchedfrom the user whose name is to be updated​

Answer»

Answer: (i) cout«"="a;  

(ii) m=5, N=12; o=15  

(iii) cout«"x";«x;  

(iv) CIN»y;»J;  

(v) cin»"\n"»y;  

(vi) cout»"\n "abc";  

(vii) a = B + c  

(viii) break = x*y;  

(i) cout «"="a:  

(ii) m=5, n=12^_o=15  

(iii) cout«"x";«x;  

(iv) cin»y:»j;  

(v) cin» "\n" »v:  

(vi) cout»"\n ^abc";  

(vii) a = b + c  

(viii) break = x*y;

Explanation: OK this a answer

14805.

name the tab and the group that has option to change the number of columns or document in a word 2013

Answer»

Answer:

header

Explanation:

header is USED to OPTION change the NUMBERS of columns or DOCUMENTS

14806.

Refer the below schema and create the table mark ​

Answer»

Answer:

   create table mark(

            value number,

            subject_id number references SUBJECT(subject_id),

            student_id number references STUDENT(student_id),

            primary key(subject_id,student_id)

    );

Explanation:

Since TWO primary key.

14807.

What is algorithms types​

Answer»

Well there are many types of ALGORITHM but the most fundamental types of algorithm are: RECURSIVE ALGORITHMS. DYNAMIC programming algorithm. BACKTRACKING algorithm.

14808.

Explain the features of the Karpoori Thakur farmula​

Answer»

Answer:

Karpoori Thakur (24 January 1924 – 17 February 1988) was an Indian politician from the Bihar state. He was popularly known as Jan Nayak (Hindi for people's hero). He served as the Chief Minister of Bihar from December 1970 to JUNE 1971 (Socialist Party/Bharatiya Kranti Dal), and from December 1977 to April 1979 (Janata Party).

Karpoori Thakur

Karpoori Thakur 1991 stamp of India.jpg

Karpoori Thakur, 1991 stamp of India

11th Chief Minister of Bihar

In office

22 December 1970 – 2 June 1971

Preceded by

Daroga Prasad Rai

Succeeded by

Bhola Paswan Shashtri

In office

24 June 1977 – 21 April 1979

Preceded by

Jagannath Mishra

Succeeded by

Ram Sunder Das

2 ND Deputy Chief Minister of Bihar

In office

5 MARCH 1967 – 31 January 1968

Chief Minister

Mahamaya Prasad Sinha

Preceded by

Anugrah NARAYAN Sinha

Succeeded by

Sushil Kumar Modi

Education Minister of Bihar

In office

5 March 1967 – 31 January 1968

Preceded by

Satyendra Narayan Sinha

Succeeded by

Satish Prasad Singh

Personal details

Born

24 January 1924

Pitaunjhia, Bihar and Orissa Province, British India

Died

17 February 1988 (aged 64)

Patna, Bihar, India

Political party

Socialist Party, Bharatiya Kranti Dal, Janata Party, Lok Dal

Occupation

Freedom Fighter, Teacher, Politician

14809.

A. The result produced by the computer is called1. Inputii. Outputiii. Fact iv. None of these​

Answer»

Answer:

OUTPUT - INPUT is entered by the user.

Hope this HELPS - have a GREAT DAY!

Explanation:

14810.

A computer system requires four main aspects of data handling to function properly: input devices, processor, dash , and storage.

Answer»

Answer:

processor-It is used for the MAIN FUNCTION of computer.It ensures everything Is smooth and nice.it is brain of a computer.

input devices-it is necessary for computer as you can't use computer without it.

dash-?

storage-it is used to store data in it .it is of three types:- hard drive,solid state drive and NVME ALSO known as m.2 .

14811.

(v) Misconception is opposite of- ( belief/ reality)​

Answer»

ANSWER:

reality.

xmksgwjoapamBzgaipqndbs

14812.

I don't understand what you have said. can you please clearly

Answer»

ANSWER:

for whom you are ASKING and what you are asking

14813.

4. In 3-d transformation, the reflection of an object can be obtained about(A) XY-Plane(B) YZ-Plane(C) ZX-Plane(D) All of these​

Answer»

Answer:

Reflection

It is also called a mirror image of an object. For this reflection axis and reflection of plane is SELECTED. Three-dimensional reflections are similar to TWO DIMENSIONS. Reflection is 180° about the given axis. For reflection, plane is selected (xy,xz or yz). FOLLOWING matrices show reflection respect to all these three planes.

Reflection relative to XY plane

Reflection

14814.

1) Create table BOOK with fields namely: Book_No, Book_Tiltle,Price,Qty, and Author.Create another table BOOK_ISSUE with the fields namely: Book_No, Student_name, Issue_Date,Return_Datea) Now, decide the primary key and foreign key in the above tables.​

Answer»
  • Create table Book(Book_No int Primary Key, Book_Title varch‎ar(50), Price int, Qty int, Author varch‎a‎r(50));

  • Create table Book_Issue(Book_No int Primary Key, Student_name varch‎a‎r(50), Issue_date date, Return_date date);

The Primary keys would be Book_No for both the TABLES. SINCE a Primary key MUST be a unique value and helps eliminate data redundancy, and book numbers cannot be the same, they can be categorized as Primary keys.

The Foreign keys would also be Book_No for both the tables. A Foreign key acts as a point of reference to another table. Since the book number in the FIRST table is for STORAGE purposes and the book number in the second table is to help understand which book has been issued from the Book table, Book_No is the Foreign key for both the tables.

14815.

write a program to accept a sentence containing two sentences only. the sentence may be terminated by either "." "?" or "!". any other character may be ignored. the word may be separated by only one single blank and to be in upper case. separate the paragraph in two sentences find common words and frequency of common words with any example

Answer»

In c language, I wrote this PROGRAM,

#include

#include

void MAIN()

{

CLRSCR();

printf("HEY!");

printf("How are you?");

printf ("okay bye.");

getch();

}

14816.

(i) In database,- helps to retrieve data from tables based on conditions.(a) forms(b) queries(c) report​

Answer»

ANSWER:

QUERIES is answer this MAY be HELP you

14817.

APA KESIMPULAN DAN SARAN DARI PARALLEL DEVELOPMENT (METHODE) ???

Answer»

ANSWER:

hdiehddheieieheheieieirii

14818.

Which file formats are used for importing and exporting data from OpenOffice Base.

Answer»

Answer:

Examples of The file formats USED for IMPORTING and EXPORTING data from open office are:

1)Open DOCUMENT formats (. ods and . ots )

2)Impress.

3)star-writer formats ( . sdw,. sgl and . vor)

HOPE this will help you ☺️☺️

14819.

What is the output of the following program:class student def_init_(self,m1,m2,m3) print(”constructor of class student”) self.mark1=m1 self.mark2=m2 self.mark3=m3 def process (self): total=self.mark1+self.mark2+self.mark3​

Answer» SORRY I couldn’t UNDERSTAND
14820.

A formula used to perform mathematical calculation is called​

Answer»

A FORMULA used to perform MATHEMATICAL calculation is CALLED Microsoft EXCEL

14821.

Write a python program to find the prime factorisation of an input number entered by the user.Don't dare to spam, or I will report your account.

Answer»

\texttt{\textsf{\large{\underline{Solution}:}}}

The given co‎de is written in Python.

n=b=int(input("Enter a number - "))

i=2

a=list()

while n!=1:

   if n%i==0:

       a.append(i)

       n//=i

   else:

       i+=1

print(b,"= ",end="")

print(*a,sep=" * ")

\texttt{\textsf{\large{\underline{Logic}:}}}

  • Initialise i=2.
  • Ask the user for the number (n).
  • Loop while n!=1:
  •   Check if n is divisible by i. If TRUE, append the value of 'i' in the list.
  •   If false, INCREMENT the value of i.
  • At LAST, display the factors separated by ⋆.

Example: Consider a number, say 72.

>> n = 72

n != 1 is true.

>> n%i == 0 is true.

>> If block executes.

a = [2]

>> n = n/i

>> n = 36  [72/2]

>> n = 36

n !=1 is true.

>> n % i == 0 is true.

>> If block executes.

a = [2, 2]

>> n = n/i

>> n = 18 [36/2]

>> n = 18

n != 1 is true.

>> n % i == 0 is true.

>> If block executes.

a = [2, 2, 2]

>> n = n/i

>> n = 9 [18/2]

>> n = 9

>> n != 1 is true.

>> n % i  == 0 is false as 9 is not divisible by 2.

>> Else block executes.

>> i = i + 1

>> i = 3

>> n = 9

>> n !=1 is true.

>> n % i == 0 is true as 9 is divisible by 3.

>> If block executes.

a = [2, 2, 2, 3]

>> n = n/i

>> n = 3  [9/3]

>> n = 3

>> n !=1 is true.

>> n % i == 0 is true. as 3 is divisible by 3.

>> If block executes.

>>  a = [2, 2, 2, 3, 3]

>> n = n/i

>> n = 1  [3/3]

>> n = 1

>> n != 1 is false.

>> Loop is terminated.

So,

>> 72 = 2 * 2 * 2 * 3 * 3

In this way, problem is solved.

14822.

The management task is....​

Answer»

Answer:

Task management is DEFINED as the process of handling the ENTIRE life-cycle of a task, right from planning to tracking to execution. It HELPS teams TRACK TASKS from the beginning, setting deadlines, prioritizing tasks, and assigning them to the right people. It ensures projects stay on track and get completed on time.

14823.

Explain manorigins .can have stresscausal ?​

Answer»
14824.

State the difference between Numeric and Alphanumeric variable.​

Answer»

Explanation:

  1. As adjectives the difference between ALPHANUMERIC and numeric. is that alphanumeric is consisting of, or limited to, letters and/or numbers, especially the CHARACTERS a to z (lowercase and UPPERCASE) and while numeric is of, or RELATING to numbers, especially the characters.
14825.

Mention the limitations of computer. don't spam ❌❌​

Answer»

Computer cannot OPERATE without the instructions given by HUMANS. It is programmed to work effectively, fast and ACCURATELY. Computer cannot think by itself and does not have common SENSE. It is totally dependent on humans.

# Capricorn answer

14826.

What is the definition of uh

Answer»

Answer:

  • uh is WORD is the word used to EXPRESS hesitation
  • uh is the word used in questions to invite agreement or further comment or to express a LACK of understanding

Explanation:

please mark me as BRAINLIEST..

14827.

A footnote in a document is used.​

Answer»

Answer:

Footnotes and endnotes are used in printed documents to explain, comment on, or provide REFERENCES for a text in a report. Many people use footnotes for DETAILED comments and endnotes for citation of SOURCES. Footnotes typically appear at the END of each page, whereas endnotes appear at the end of the document.

Explanation:

HOPE

IT

HELPED U ^~^

14828.

1. Consider a webpage with a form that has all possible form element typesUpon submission (use a submat button, make the action) gather all theform data (name value pairs) using document.getElementById and displaythe same-value paus in the sam pape/in a new pepe (using tablein a HTML Table three columns - element type, name, value​

Answer»

Answer:

GOOD morning SIR PLEASE FIND the attached file

14829.

Explain briefly about the relational algebra​

Answer»
14830.

Discuss the use of information technology in the field of science and ingineering​

Answer»

Answer:

Information Technology is an ENGINEERING division, which concentrates on the study of utilizing computers and telecommunications in order to control, GATHER, STORE and circulate information. Both software and HARDWARE sectors are PARTS of Information Technology.

14831.

A switch broadcasts data to all computers connected to it. True or false

Answer»

Answer:

False

Explanation:

A switch broadcasts message to all the devices CONNECTED. The full FORM of NIC is network interface card.

Hope it helps you

Please MARK me as Brainliest.

14832.

Why is maintaining work place safety important? Mention any two safety rules that you should follow​

Answer»

Answer:

Employees should be aware of the TYPES of EQUIPMENT and know the hazards in their workplace. This enables them to stay clear of such hazards and unfortunate situations. Also, employers should train employees in the PROPER OPERATION of MACHINERY and equipment.

please mark as brain list answer

14833.

write a Java script function that grabs the style of a element and change it to some other style in the java script onmouseover and return to its initial style onmouseover event​

Answer»

Answer:

const element = document.queryselector('p');

element.addEventListener('mouseover', function() {

      element.style.color = 'White';

});

element.addEventListener('mouseleave', function() {

      element.style.color = 'Black';

});

HOPE this helps - Have a great DAY!

14834.

In ______ the goal is for the software to use what it has learned in one area to solve problems in other areas.a. Machine learning b. Deep learning c. Neural networks d. None of these​

Answer»

Answer:

NEURAL NETWORKS

Explanation:

In Neural Networks the GOAL is for the software to use what it has learned in ONE area to solve problems in other areas.

14835.

Definea.cookiesb.routerc.templatesd.e-reservation​

Answer»

Answer:

the answer is

Explanation:

a. COOKIES- eatables that come in different FLAVOURS like chocolate and vanilla and are crispy and crunchy.

b. router- a DEVICE that provides bandwidth.

c. templates- a FEATURE to give videos special effects used during editing

d. e-reservation- a kind of electronic reservation done using INTERNET

14836.

What is what-if analysis​

Answer»

Answer:

What-If ANALYSIS is the process of CHANGING the values in cells to see how those changes will affect the OUTCOME of formulas on the worksheet. Three kinds of What-If Analysis TOOLS come with Excel: SCENARIOS, Goal Seek, and Data Tables. ... For more advanced models, you can use the Analysis ToolPak add-in.

14837.

Enter principal amount(in R.s.), time( in years) and rate ( in p.a.). Calculate and print SI.​write a Java program for it​

Answer»

ANSWER:

it is dificult so I can't do it BRO

14838.

38. Write command and queries to create and manipulate the records of a table named 'Students' with the following fieldsRoll_NoNameClassMarks101AjayХ765107SurajIX865109SimranX766103AmanIX821104NareshIX1a.Write SQL commands to create the above-given table. Set appropriate datatypes for the fields.b. Write a query to display the details of all the students studying in class X.Write the query to change the Roll_No of the student named Aman to 106.d. Write a query to delete the record where the value of Marks is 1.C.​

Answer»

a) #creating the table

Create table Students(Roll_No ch‎ar(3) Primary Key, Name varch‎ar(30), CLASS ch‎ar(2), Marks int);

#inserting the records

Insert into Students values(101, 'Ajay', 'X', 765);

Insert into Students values(107, 'Suraj', 'IX', 865);

Insert into Students values(109, 'Simran', 'X', 766);

Insert into Students values(103, 'Aman', 'IX', 821);

Insert into Students values(104, 'Naresh', 'IX', 1);

b) #to display the details of all the students studying in class X.

Select * from Students where Class = 'X';

c) #to change the Roll_No of the STUDENT named 'Aman' to 106.

Update Students set Roll_No = 106 where Name = 'Aman';

d) #to DELETE the record where the value of Marks is 1.

Delete from Students where Marks = 1

14839.

A duplicate field that is not set as a primary key is called as?​

Answer»

Answer:

I know this wasn't the problem in this case, but I had a SIMILAR issue of "Duplicate Entry" when CREATING a composite primary key:

And the output showed just 1 row, no duplicate!

After some time I found out that if you have NULL values in these field you receive these errors. In the end the error message was kind of misleading me.

Explanation:

A primary key is a field or SET of fields with values that are unique throughout a table. Values of the key can be used to refer to entire records, because each record has a different value for the key. Each table can only have one primary key. Access can automatically create a primary key field for you when you create a table, or you can specify the fields that you want to use as the primary key. This article explains how and why to use primary keys.

To set a table’s primary key, OPEN the table in Design view. SELECT the field (or fields) that you want to use, and then on the ribbon, click Primary Key.

I think it will helpful for u..

14840.

वाढती महागाई' या विषयावर आई व बाबांमध्ये झालेला संवाद५० ते ६० शब्दांत लिहा.please answer fast friends please​

Answer»

ANSWER:

PLEASE GIVE me THANKS gurdev

Explanation:

प्रकृति एक जीवt सकती है यह अपने साथ और सुंदर रूप में हमारे चारों ओर बिगर महान है जब हम प्रकृति के नियम तोड़ते हैं यह उपग्रह हो जाती है प्रकृति का संरक्षण और सम्मान करना हमारा नैतिक दायित्व

14841.

5. The background and experience of analyst include(A) a background in softwares theory and organization behaviorfamiliarity with the makeup and inner workings of major application areas such as financial accounting,(B) personnel administration, marketing and sales, operations management, model building, and productioncontrol(C)competence in software tools and methodologies and a practical knowledge of one or more programming anddata base languages(D) All of the above.​

Answer»

Answer:

PERSONNEL ADMINISTRATION, marketing and sales, OPERATIONS management, model BUILDING, and productioncontrol

14842.

Company has restricted to use smartphone associated with android OS. As therewill be few heavy processing task software which required only android OS.Unfortunately, you are a pure user of iOS devicesWhat will you do with the money provided? (Budget 500$)A. Samsung Galaxy A Series (490$)• 8 GB Ram• Snapdragon 750G• USB UFS 2.1how is this better than iOS devices and is it easy to use if you are switching to this from iOS devices ​

Answer»

ANSWER:

The only SAFELY software is IOS the fullform of iphone operting system

14843.

It gives life to a computer

Answer»

Answer:

CPU is the CORRECT answer

Explanation:

PLZ MARK as brainleist plz

14844.

What is the functioning of www

Answer»

Answer:The World WIDE Web ENABLED the spread of information over the Internet through an easy-to-use and flexible format. It thus played an IMPORTANT ROLE in popularising use of the Internet. ... The Web is an information space containing hyperlinked DOCUMENTS and other resources, identified by their URIs.

Explanation:above

14845.

A dvd or digital versatile disk can store large amount of data

Answer»

True.

About 4.7 GB DATA can be STORED in a DVD

14846.

Explain the difference between LET statement and INPUT statement with the help of their meaning​

Answer»

Answer:

LET statement is used to assign the value to a variable when we are writing the program but INPUT statement is used to assign the value to a variable when we are running the program.

I HOPE it is helpful to you.

if it is helpful mark as BRAINLIEST.

14847.

What is the first step in write aprogram ?​

Answer»

Answer ❤️

Requirements. the FIRST step is to examine the PROBLEM carefully to try to identify what qualifies as a solution. a SINGLE problem may have many different solution but they will all have SOMETHING in common. so here you are trying to work out exactly what your program will be REQUIRED to do.

hope help you

brainlist please ❤️

14848.

राइट ए प्रोग्राम टो डेमोंस्ट्रेट डिफरेंस बिटवीन करैक्टर अरे एंड प्वाइंटर टो करैक्टर​

Answer»

Answer:

G o g l e I t

f o l l o W m e

for more HELP OK

14849.

Write advantage of third generation language​

Answer»

Answer:

The main advantage of high-level languages over low-level languages is that they are EASIER to read, WRITE, and MAINTAIN. Ultimately, programs written in a high-level language must be translated into machine language by a COMPILER or directly into behaviour by an interpreter.

14850.

भोजन का पाचन किस प्रकार की अभिक्रिया है ?(A) उपचयन(B) संयोजन(C) अपचयन(D) विस्थापfree​

Answer»

Answer:

A)

EXPLANATION:

plz MARK me a brainelest I REALLY NEED it