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.

2001.

Java program using string name to find the initials of each word ​

Answer»

Answer:

This can be done using Java's library CLASS. (StringTokenizer)

Explanation:

IMPORT java.util.*; //Extracting two CLASSES (namely, Scanner and StringTokenizer)

public class Test{

PRIVATE static Scanner sc=new Scanner(System.in);

public static void main(String [ ] args){

System.out.println("Input a statement: ");

StringTokenizer st=new StringTokenizer (sc.nextLine());

while (st.hasMoreTokens()){

String token=st.nextToken();

System.out.println(token.charAt(0));

}

}

}

2002.

How to prevent the syn flood attacks?Subject : Network Security

Answer»

ANSWER:

Filtering.

Increasing Backlog.

TCP half-open: The term half-open alludes to TCP associations whose STATE is out of SYNCHRONIZATION between the TWO potentially because of an accident on one side. ...

Firewalls and Proxies.

Reducing SYN-RECEIVED Timer.

SYN Cache.

Recycling the Oldest Half-Open TCP.

hope it helps you

thank you

2003.

What is a computer................​

Answer»

ANSWER:

A computer is an electronic device that manipulates information, or data. It has the ABILITY to STORE, RETRIEVE, and process data.

Explanation:

2004.

What a java expression that contains all the elements of same data type is called??please answer fast cause tomorrow is my exam​

Answer»

Answer:

HOMOLOGOUS Expression

During the declaration of variables in a program, if all the variables are of the same DATA types such as int, CHAR or float, then it will be CONSIDERED as a Homologous.

2005.

to open a existing document click on the-------- and then select open 1-Document views 2-Ribbon 3-Quick access toolbar 4-Ms office

Answer»

ANSWER:

OPTION A

MS office

Explanation:

2006.

How does a virus spread and infect other computers?

Answer»

Answer:

viruses can be spread through email and text message attachments,INTERNET FILE downdloads,and SOCIAL media scam links. your mobile devices and smartphones can became infected with mobile viruses through shady APP downdloads.......

here is your answer mate HOPE it hels u

mark my answer as a branslist answer ...please please

2007.

The _ character is used for concatenation of strings

Answer»

Answer:

Concatenation Operator

Operator Purpose Example

|| CONCATENATES character strings and CLOB DATA. SELECT 'Name is ' || last_name FROM EMPLOYEES;

2008.

Open a existing document click on the-------- and then select open

Answer»

hey MATE your answer is here ⬇️ ⬇️

open a EXISTING document CLICK on the browser and then select open

2009.

_ are input to functions which accept values as number or text .

Answer»

ANSWER:

VARIABLES or CONSTANTS

2010.

Suppose you have to Detect a cancer tumor using AI(exact location and size),which is the best approach for this task?

Answer»

jhhhhjkhgjj KK kkkkkjjjjjjjmmmm?

2011.

Differentiate between GIF and JPEG?

Answer»

Explanation:

JPEG is far better for PHOTOGRAPHS, while GIF is great for computer generated images, logos and line-art with limited palettes. A GIF will never LOSE its DATA. It uses lossless compression. It uploads quickly since these files are usually LOW resolution.

2012.

Truth table for the following expression X+Y.X

Answer»

Answer:

The BOOLEAN expression X+X' Y equals X+Y.

Boolean ALGEBRA is the mathematics we USE to analyze digital gates and circuits. Use of “LAWS of Boolean” to both reduce and simplify a complex Boolean expression in an attempt to reduce the number of logic gates required

2013.

The cell address in a formula that does not change on copying is considered as _

Answer»

ANSWER:

These are called "relative" cell references, since they change relative to where you COPY the formula. If you do not want cell references to change when you copy a formula, then make those cell references absolute cell references. PLACE a "$" before the column letter if you want that to always STAY the same.

Explanation:

plz. MARK me brainliest

follow me

2014.

An dAssignmentMultiple-Choice Questions (MCQs)is the one of the main reasons1.behind ecosystem imbalance.a. Pollutionb. Natural resourcec. Economyd. Environment​

Answer»

Pollution is ONE of the MAIN reason behind ECOSYSTEM IMBALANCE.

\ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \  \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \

Brainly RS here ✌

2015.

Where is logo key in laptop dell windows 10 plz tell me

Answer»

Answer:Dell computers that are factory-installed with Windows 8 or Windows 10 may carry a LOGO on the palmrest. This logo verifies that the COMPUTER is a Genuine Windows 8 or Windows 10 device and has a Product KEY on the motherboard

Explanation:

2016.

Write a program in java to accept a string. Count all the letters in the string except the vowels​

Answer»

import java.util.SCANNER;

import java.io.*;

public CLASS TEST {

public static void MAIN(String args[]) {

Scanner SCAN = new Scanner(System.in);

System.out.println("Enter the sentence");

String i = scan.nextLine();

int len=i.length();

int count = 0;

for (char c: i.toCharArray()){

if(c == ' '||c == 'a' || c =='e' || c=='i' || c=='o' || c=='u' || c=='A'||c=='E' ||c=='I'||c=='O'||c=='U')

count++;

}

int let=len-count;

System.out.println("no of letters excluding vowels is "+let);

}}

2017.

Directory services store information in a heirarchical structure. Which statements about Organizational Units (OUs) of a directory service hierarchy are true? Check all that apply.

Answer»

ANSWER:

Bhjj

Explanation:

Hhjj

2018.

1 .____________formulas involve more than one operator2. the ____________bar show character and formula that we enter in a active cell 3. if we want to calculate the sum of multiple class that are not in range separate the cell address by _______________.4. function accept _____________ and return value 5. while copying the cell contact the point chnge to _____________ symbol .​

Answer»

ANSWER:

A key ELEMENT of a formula is the cell reference, and there are THREE types: Relative. Absolute. Mixed...

2019.

Explain with the help of code, how audio and video clip can be added in an HTML document?

Answer»

Explanation:

The HTML <AUDIO> ELEMENT is used to play an audio file on a web page.

The HTML

To play an audio file in HTML, use the

The HTML

To show a video in HTML, use the

Example:

2020.

How do you rate someone the brainliest.

Answer»

Answer:

by pressing the brainliest answer under ANYONE's answer u WANT to MAKE brainliest...............✌✌

2021.

Write a Java program to print the following pattern: * *# *#* *#*# *#*#*

Answer»

PUBLIC class pattern1

{

public VOID MAIN()

{

for(INT i=1; i<=5; i++)

{

for(int j=1; j<=i; j++)

{

if(i%2==0)

System.out.print("#");

else

System.out.print("*");

}

System.out.println();

}

}

}

2022.

10th क्लास का बोर्ड रिजल्ट​

Answer»

ANSWER:

EXPLANATION:

GO to WEBSITE..... www.cbse.nic.in

2023.

1. It is a predefined combination of various formatting features.a. Paragraph b. Style c. Font2. The Styles icon is available on the ……………………………………… .a. Status bar b. Styles pane c. Sidebar3. These are used to control all aspects of a paragraph's appearance.a. Character Styles b. Paragraph Styles c. Frame Styles4. The keyboard shortcut to create a new style is ……………………………………… . a. Shift + F11 b. F11 c. Ctrl + 115. Which operation do you perform in current document to copy a style from a template or another document?a. Update Style b. Load Style c. Modify Style​

Answer»

ANSWER:

PARAGRAPH STYLE answer

2024.

1. Write the name of shortcut menuthatappearswhen we right click onan object?​

Answer»

Answer:

*A SHORTCUT menu is a menu that appears when u right click an object.In Microsoft forms ,the following object have shortcut menus .The Toolbox,each PAGE in the Toolbox,and each ITEM on a page of the Toolbox..

hope it is helpful

plz MARK as brainliest plzz plzz plzz plzz plzz plzz

2025.

Write a program to accept side of a square. Find and print the area of a square(usingMathpow())

Answer»

Answer:

GT uz dodatak za firefox je da se se do KI theek AA Ok do ki theek aa Ok thanks for the day aa she Ram after the rabbit of the cultural komentari isključeni i eska answers MIL jana hai i search karlo google tea hai eska answers mil jana hai search karlo google tea hai eska search answers sebe KAD dea Sanam je da se do ki theek aa Ok thanks for the day she Ram after the 5rabbit of the cultural day she Ram after the rabbit of the cultural of the cultural day she Ram after the rabbit of the cultural day she Ram after the rabbit of the cultural day she Ram d full send kar dea pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls help me pls 4help

2026.

Formula forto find the sum of cells A1 to A6 and to display the answer in A7​

Answer»

ANSWER:

type '=sum(A1:A6)' in A7

Explanation:

hope it will help you PLEASE MARK as brainlist answer

2027.

How will you define functions in python .Give the answer with example​

Answer»

Function blocks begin with the keyword def FOLLOWED by the function name and PARENTHESES ( ( ) ). Any input parameters or arguments should be PLACED within these parentheses.

hope it helps you mate.

please thank and ark my answer as brainliest.

@ ANUSHA

2028.

How to select an entire column in excel

Answer»

ANSWER:

PLS WAIT for the ANSWERING

2029.

Write a program that accepts age and if age is equal to above 18 , displays message “you are eligible to vote” otherwise displays “Sorry your are not eligible to vote”

Answer»

ANSWER:

You are ELIGIBLE to VOTE

2030.

Identify some (at least 5) of the unique software and solutions which are related to the domain of Artificial Intelligence. The first is done as an example. SNO DATA COMPUTER VISION NATURAL LANGUAGE PROCESSING 1 Google Search Google Image Search Google Now 2 3 4 5 6 7 8 9 10 11 12 13 14 15

Answer»

Answer:

here are some of them

Explanation:

Tensorflow - it's a library for machine learning and deep learning

Pytorch- ALSO a library developed by facebook for ML and dl

Keras - It's an API built on python for machine learning

OpenAI gym - It's for reinforcement learning

you can include numpy as well

some terminologies in AI are-

ANN- Artificial NEURAL Network

RNN - RECURRENT Neural Network

CNN - Convolutional Neural Network

LSTM - Long Short Term Memory

Auto-encoders

2031.

What is fill in contain mailing list

Answer»

EXPLANATION:

. Many companies will use email marketing to send communication to CUSTOMERS and this is done USING special SOFTWARE. Your email address will sit in a database SOMEONE and will have been selected for that campaign, hence you being on the mailing list.

2032.

Write the java expression for a^2 + 2ab + b^2​

Answer»

ANSWER:

(A+B)^2

Explanation:

MARK my answer as the BRAINLIEST

2033.

How many types of computers are there?????​

Answer»

Answer:

There are seven types of Computer 1 SUPERCOMPUTER 2 Mainframe 3 Microcontroller 4 Server Computer 5 Personal Computer 6 Workstation computer 7 smartphone. There are Four Different Computer Types We have four different computer types classified according to their performance, power, and SIZE

2034.

How many types of keybaord are there?​

Answer»

ANSWER:

Plz,if it is correct plz rate ⭐me,LIKE me and follow me and mark me as brainlist

Explanation:

There are actually THREE different PC keyboards: the original PC keyboard with 84 KEYS, the AT keyboard also with 84 keys and the enhanced keyboard with 101 keys. The three differ somewhat in the placement of function keys, the control keys, the return KEY, and the shift key.

2035.

Please tell this answer truthfully and quickly. Who answers the correct answers I will mark as brainliest

Answer»

ANSWER:

A*B

Hopefully it is CORRECT and HELPFUL to you !

2036.

How do I unlock kids mode in vivo phone without password​

Answer»

ANSWER:

ufffffff...

EXPLANATION:

HELLO JII

2037.

What is microsoft corporation

Answer»

Your answer....✔️

  • Microsoft Corporation (/maɪkroʊ.sɒft/) is an American multinational technology company with HEADQUARTERS in Redmond, WASHINGTON. It develops, manufactures, licenses, SUPPORTS, and sells computer software, consumer electronics, personal COMPUTERS, and related services.

2038.

What is software?Name the two main categories of computer software.​

Answer»

ᴛʜᴇʀᴇ ᴀʀᴇ ᴛᴡᴏ ᴍᴀɪɴ ᴛʏᴘᴇs ᴏғ sᴏғᴛᴡᴀʀᴇ: sʏsᴛᴇᴍs sᴏғᴛᴡᴀʀᴇ ᴀɴᴅ ᴀᴘᴘʟɪᴄᴀᴛɪᴏɴ sᴏғᴛᴡᴀʀᴇ. sʏsᴛᴇᴍs sᴏғᴛᴡᴀʀᴇ ɪɴᴄʟᴜᴅᴇs ᴛʜᴇ ᴘʀᴏɢʀᴀᴍs ᴛʜᴀᴛ ᴀʀᴇ ᴅᴇᴅɪᴄᴀᴛᴇᴅ ᴛᴏ ᴍᴀɴᴀɢɪɴɢ ᴛʜᴇ ᴄᴏᴍᴘᴜᴛᴇʀ ɪᴛsᴇʟғ, sᴜᴄʜ ᴀs ᴛʜᴇ ᴏᴘᴇʀᴀᴛɪɴɢ sʏsᴛᴇᴍ, ғɪʟᴇ ᴍᴀɴᴀɢᴇᴍᴇɴᴛ ᴜᴛɪʟɪᴛɪᴇs, ᴀɴᴅ ᴅɪsᴋ ᴏᴘᴇʀᴀᴛɪɴɢ sʏsᴛᴇᴍ

HOPE it HELPS..

MARK me as BRAINLIEST

2039.

How is ict helpful in education​

Answer»

Answer:

ICTs can enhance the quality of education in several ways: by increasing learner motivation and engagement, by FACILITATING the ACQUISITION of basic skills, and by enhancing teacher training. ICTs are also TRANSFORMATIONAL TOOLS which, when used appropriately, can promote the shift to a learner-centered environment.

2040.

Define the main memory of the computer sysmtem. what are its two main parts..​

Answer»

Explanation:

Computer memory is of two basic type – PRIMARY memory(RAM and ROM) and Secondary memory(HARD DRIVE,CD,etc.). Random Access Memory (RAM) is primary-volatile memory and Read Only Memory (ROM) is primary-non-volatile memory. It is ALSO called as read write memory or the main memory or the primary memory.

2041.

Who is elon musk please tell fast

Answer»

Answer:

Elon MUSK is a South African-born American entrepreneur and BUSINESSMAN who founded X.com in 1999 (which later became PayPal), SpaceX in 2002 and Tesla MOTORS in 2003. Musk became a MULTIMILLIONAIRE in his late 20s when he sold his start-up company, Zip2, to a division of Compaq Computers.

2042.

Can a view can be created on other views?

Answer»

ANSWER:

YES of of course

Explanation:

chfodidi

2043.

Send me some Coding.....And tell me how to do Coding.....20 Points Question so be Honest and No Spam otherwise i will report your Account.....​

Answer»

Your QUESTION makes no sense but still...

code:  (python)

print("hello world")

how to do coding :

u have to USE ur keyboard and learn a PROGRAMMING language to code.....

2044.

Match the following:1. Attachmenta. Displays all the objects2. Viewsb. Does not need calculation3. Navigation PaneC. Maximum 63999 characters4. Short textd. Design view and Datasheet vi5. Long textOoe. Multiple files can be attached6. Fieldf. Datatype​

Answer»

ANSWER:

??????????????????????????????

2045.

write an jdbc program to create an employee table and display id,name,basic salary,da,pf and total salary where total salary=basic salary+da-pf

Answer»

Answer:

Write a query to GET the names (first_name, last_name), SALARY, PF of all the EMPLOYEES (PF is calculated as 15% of salary).

2046.

Write a program to input two numbers.Find and print the greater and smaller number (using Math. min() and Math. max()).

Answer»

Java Math max() method with Examples

The Java.lang.math.max() function is an inbuilt function in Java which returns maximum of two NUMBERS. The arguments are taken in int, double, float and long.If a negative and a positive NUMBER is passed as argument then the positive result is generated. And if both PARAMETERS passed are negative then the number with the lower magnitude is generated as result.

Syntax:

dataType max(dataType num1, dataType NUM2)

The datatypes can be int, float, double or long.

Parameters : The function accepts two parameters num1 and num2

among which the maximum is returned

Return value:The function returns maximum of two numbers. The datatype will be the same as that of the arguments.

Given below are the examples of the function max()

// Java program to demonstrate the use of max() function

// when two double data-type numbers are

// passed as arguments

public class Gfg {

public STATIC void main(String args[])

{

double a = 12.123;

double b = 12.456;

// prints the maximum of two numbers

System.out.println(Math.max(a, b));

2047.

What's the reason behind banning tiktok​

Answer»

Answer:

Last week, the INDIAN government said it would ban TIKTOK and other well-known Chinese apps because they pose a "threat to sovereignty and INTEGRITY." Tensions between India and China have been escalating after a clash ALONG the Himalayan border.

2048.

Are used to input data in Access.a. Tablesb. Formsc. Reports​

Answer»

ANSWER:

a. Tables

Explanation:

MARK BRAINLIEST

2049.

[tex]\ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ CAPTAIN AMERICA SHILD\ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \ \ \textless \ br /\ \textgreater \

Answer»

ANSWER:

Captain America Shield                html, body { background:#0846A8; height: 500px; } .container { width:100%; height: 100%; display: flex; justify-content: center; align-items: center; } .circle { border-radius: 50%; display: flex; flex-direction: row; justify-content: center; align-items: center; border:1px solid #000; } .outer-lv3 { background-image: linear-gradient(#870000,#FF4040,#870000); height: 260px; width: 260px; -webkit-animation: turning 8s infinite linear; animation: turning 8s infinite linear; } @-webkit-keyframes turning { 0% {transform: rotate(0deg)} 100% {transform: rotate(360deg)} } @keyframes turning { 0% {transform: rotate(0deg)} 100% {transform: rotate(360deg)} } .outer-lv2 { background: #fff; background-image: linear-gradient(#DBD9D9,#FAFAFA,#DBD9D9); height: 210px; width: 210px; } .outer-lv1 { background-image: linear-gradient(#870000,#FF4040,#870000); height: 150px; width: 150px; } .center { background-image: linear-gradient(#0846A8,#277AFF,#0846A8); height: 100px; width: 100px; border-radius: 50%; position: relative; overflow: hidden; border:1px solid #000; } .arrow { border-top: 35px solid #EDE8E8; border-bottom: 48px solid rgba(0,0,0,0.0); border-left: 48px solid transparent; border-right: 48px solid transparent; position: absolute; height: 0; width: 0; } .top { top: 35px; left: 2px; } .left { transform: rotate(72deg); top: 16px; left: -24px; } .right { transform: rotate(-72deg); top: 16px; left: 25px; }

2050.

What is used to compute reflected radiance into a particular direction given theincident radiance from possible directions​

Answer»

Answer:

the INCIDENT radiance distribution must be the same at all points, and the cosine-weighted integral of incident radiance must be the same everywhere as well. As such, we can REPLACE the radiance functions with CONSTANTS and SIMPLIFY, WRITING the LTE as

Explanation: