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.

7501.

What is the full form of COMPUTER

Answer»

Hii
so your answer is commonly operated machine PARTICULARLY USED for technical ENTERTAINMENT research.
HOPE this helps you

7502.

The IP address __________ is/are used by hosts when they are being booted

Answer»

The IP ADDRESS is USED by HOSTS when they are being BOOTED.

7503.

Help please .. it's a programming question

Answer»

Check out this program.. may HELP you
class Library{
int ac_num;
String title;
String author;
public void input(int x,String y,String z){
this.ac_num=x;
this.title=y;
this.author=z;
}
public void compute(int day){
int late_fine=2*day;
System.out.println("the late fine CHARGE is:"+late_fine+"Rs.");
}
public void display(){
System.out.println("ACCESSION Number"+ac_num);
System.out.println("title"+title);
System.out.println("author"+author);
}
}
class program{
public static void main(String...args){
Library l1=new Library();
l1.input(12345,"The Nightiangle","Oscar Wilde");
l1.compute(5);
l1.display();
}
}
##################
by using scanner class you can also make program to support USER input

7504.

what are data types? list the various data types available in access 2016 and explain any two of them.

Answer»
EVERY table in Access is made up of fields. The properties of a field describe the characteristics and BEHAVIOR of data added to that field. A field's data TYPE is the most important property because it DETERMINES what KIND of data the field can store. This article describes the data types and other field properties available in Access, and includes additional information in a detailed data type reference section
7505.

What sensors are most likely to fail when the robot is flying outdoors, close to the ground near the wall of a tall building?

Answer»

MAY be DUE to VARYING LIGHT SENSITIVITY.

7506.

Backbone of internet

Answer»

Hey friend!!!!!!!!!

____________________

Good MORNING!!!!!!!!!!

_______________________________

Here is your answer.........

________________________________________________________________________________________________________

⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️

➡️➡️➡️➡️➡️➡️➡️➡️
The Internet backbone might be defined by the principal DATA routes between large, strategically interconnected computer networks and core routers on the Internet.

_____________________

HOPE THIS HELPS YOU :-)
PLEASE MARK ME AS BRAINLIST
HAVE A GOOD DAY!!!!!!!
DON'T FORGET TO FOLLOW PLEASE!!!!!!!!!

7507.

Define the letest versions of wifi

Answer» INTEL announced this week that it’ll have chips ready within the year for the next generation of Wi-Fi — what’s known as 802.11ax. This new generation is supposed to be faster, of course, but mostly it’s meant to PERFORM BETTER in environments with lots and lots of connected devices; so things like public hotspots, but also your house if you just have a ton of phones and tablets and SMART gadgets LYING around.
7508.

What are the rules to assign a variable in java programming

Answer»

✔✔✔Ur answer✔✔✔


⭐⭐Rules for naming VARIABLES: All variable names MUST begin with a letter of the alphabet, an underscore or✔ ( _ ) ✔or a DOLLAR SIGN ($).

⭐⭐The CONVENTION is to always use a letter of the alphabet. ✔✔

⭐⭐The dollar sign and the underscore are discouraged.✔✔

7509.

What is ment by JAVA VERTUAL MACHINE

Answer»

The Java Virtual Machine (JVM) is the runtime ENGINE of the Java Platform, which allows any program written INJAVA or other language COMPILED intoJava bytecode to run on any COMPUTER that has a native JVM.

Hope it helps you.

7510.

Define tokken and name different tye of tokken

Answer»

In general, a token is an object that represents something else, such as another object (either physical or virtual), or an ABSTRACT concept as, for EXAMPLE, a gift is sometimes referred to as a token of the giver's esteem for the RECIPIENT. In computers, there are a number of types of TOKENS ...

pls follow me .............pls

7511.

Name three value added srvices provided by 3Cs

Answer» 1) Internet
2) Multimedia
3) BLUETOOTH
7512.

State two kind of data type

Answer» PRIMITIVE DATA TYPE and
Non-Primitive data type
7513.

Define constant with an example

Answer»

Heya there!!

=> Constants or LITERALS refer to fixed VALUES that do not CHANGE during the execution of the program.

For example,
a = 5 ;

Here, 5 is a constant because its VALUE cannot be changed.

Hope it helps you

7514.

Define variable with an example

Answer»

Variable IA nothing but alphabets which used after the coffeciant or VALUE EX. 2x+3y =7 here , 2 is coffeciant and after coffeciant is x which is known as variable

7515.

What do you mean by data type

Answer» DATA Types SPECIFIES the SIZE and type of data which you are LIKELY to supply to the Identifier.
7516.

STEVJOBACDFGHIKLMNPQRUWXYZ Cogito, ergo sum

Answer»

The message holds the name Steve Jobs in it. The word cogito ergo sum means ‘I think, therefore I am’.

These two are USED together because Steve Jobs is a FIRM believer of it, Even in his SPEECHES, he has mentioned it that he BELIEVES in something and that is the reason that motivated him to ACHIEVE it.

7517.

Definition of StackWhat is stack?what is stack ka answer btaiye

Answer» STACK is a conceptual STRUCTURE CONSISTING of a SET of homogenous elements and is based on the principal of last in FIRST out (LIFO)
7518.

Mail merge option merging of the ____with a data source.

Answer» LETTER is the ANSWER BRO
7519.

Write a Java Program to check that year is a leap year or not

Answer»

This is the ANSWER of it QUESTION

7520.

Write a java program to find the greatest of four numbers input by the user

Answer»

Class great
{
psvm(String are[ ])
{
int max4(int a, int B, int C, int d) { int E = a > b ? a : b; int f = c > d ? c : d; RETURN e > f ? e : f;}
}
}

7521.

Decode it :-1X N VI I 1IV 9 T 2VPlz help me.....its urgent...

Answer»

I THINK it 124 14 229 9 1922 9 16 222

7522.

Write a java program to swap 2 numbers without using the temporary variables

Answer»

Check the program mainly three METHOD i know to solve this: multiplication method is used for only positive number TRY yourelf
and third is BITWISE OPERATOR..
import java.util.Scanner;
public class Program
{
public static void main(STRING[] args) {
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();// enter a no.
int b=sc.nextInt();//enter a no.
System.out.println("value of a you enter before swap is a:"+a);
System.out.println("value of b you enter before swap is b:"+b);
a+=b;
b=a-b;
a=a-b;
System.out.println("value of a after swap is a:"+a);
System.out.println("value of b after swap is a:"+b);
}
}

7523.

Write a java program to calculate the total surface area, curved surface area and volume of cylinder(formula:- (TSA=2πr(r+h),CSA=2πrh,volume =πr2h))

Answer»

CLASS CYLINDER

{ public void calc(double R,double h)

double tsa=2.0*3.14*r*(r+h);

System.out.println("Total surface AREA ="+tsa);

double CSA=2.0*3.14*r*h;

System.out.println("Curved surface area ="+csa);

double vol=3.14*r*r*h;

System.out.println("Volume="+vol);

}

7524.

A bus starts from Aundh and a car starts from Swargate

Answer» HEY MATE PLEASE ELABORATE the QUESTION....
7525.

Plzzz help in this prbom

Answer»

Program in java
import java.util.SCANNER;
public class Program
{
public static void main(String[] ARGS) {
Scanner obj=new Scanner(System.in);
INT a=obj.nextInt();
int B;
System.out.println("enter a number="+a);
System.out.print("REVERS=");
while(a!=0){
b=a%10;
System.out.print(b);
a=a/10;
}
}
}

7526.

STEVJOBACDFGHIKLMNPQRUWXYZCogito, ergo sumPlz crack this

Answer»

Cogito ERGO sums when translated in English means ‘I think, THEREFORE I am.’

It is a Latin word proposition given by Rene Descartes.

This is used with Steve Jobs as in ONE his SPEECH he mentioned almost the same thing that states that it is essential to keep going EVEN if life is hitting you with breaking because then you will convince yourself and do what you love.

7527.

What is data abstraction in java with example

Answer»

Abstraction is a process of hiding the implementation details from the user. Оnly the functionality will be provided to the user. InJava, abstraction is achieved using ABSTRACT classes and interfaces. ... Abstraction is one of the four MAJOR CONCEPTS BEHIND object-oriented PROGRAMMING (OOP).

7528.

What is sorting? Explain

Answer»

It is the PROCESS of ARRANGING FILES or FOLDERS SYSTEMATICALLY

7529.

Solve786 from octal to decimal

Answer»

"

STEPS to CONVERT octal to decimal is :

Step 1:Take the given octal number.

Step 2: Find out the number of digits in the number

Step 3: Let it have n digits.

Step 4: Multiply each digit in the number with 8n-1,when the digit is in the nth position.

Step 5: Add all digits after multiplication.

Step 6: The resultant is the equivalent decimal to the given octal number.

If octal number contains a decimal point

Step 7: Let m digits are there after the decimal

Step 8: Multiply each digit after decimal with ,when the digit is the mth position.

All other steps are same as above.

Convert 786 octal to decimal the answer is 7.

"

7530.

Complete what are functions

Answer»

The basic FUNCTIONS of the filter OPTION are
, It puts the tables in alphabetical ORDER without you rearranging
,, with the GIVEN criteria it can sort the whole thing

Please mark it as brainliest
First to answer

7531.

A program to print Pascal triangle in blue J???

Answer»

C- Program to print Pascal TRIANGLE in blue J. normally, Pascal’s triangle is a SET of NUMBERS which is also arranged in the form of a triangle that allows us to UNDERSTAND it better with the help of a diagram.

The pattern of pascal’s triangle plays important role in easy understanding.

7532.

what is the difference between over type mode and insert mode?__________ Q2) explain the six tabs of bullets and numbering dialog box?

Answer»

In over type mode our PREVIOUS text is DELETED and the new text is ADDED ONE by one but in insert mode our new text is inserted without deleting our previous text

7533.

Write disadvantage of internet give 6 short points ?

Answer»

Internet STOPS the elaborating thinking process.

everyone is dependent on it

there are many Trojans and ADS in internet websites.

internet is also USED nowadays for illegal access of other's information

people do not APPRECIATE the one who have inputted the data in internet.

internet always asks for the access to our information which may prove fatal.


plz mark brainiest

7534.

What is vpn in android? And how it works

Answer»

VPN - Virtual private network

                                             

Here is information about VPN:

VPN can make us more secure as well as fast browsing. VPN ALLOWS us to access those sites which are blocked by our government. We can became more secure by enabling VPN.

                               

Abbrevation of VPN is virtual private network. VPN means, our own private network. When we enable VPN, then our IP ADDRESS is changed. And because of diffrent IP is coming near ISP, it allows users to access those sites which are blocked.

                               

By using VPN we can became secure as well as private, But our IP address changes. And because of this, our location is also changed.

                                       

Hackers uses VPN for hacking attacks to take a different location. Sometimes, our INTERNET speed may increases and sometimes our internet speed can be decreases. It is dependent upon DNS server using by that VPN provider.

                                       

Today, some VPN are paid and they are fast. And some VPN's are FREE and because of it, they are slow.

                       

When we enable our VPN, our IP changes, our internet speed increase/decrease. We can change to any location by enabling VPN. Also, we can access those sites which are blocked on our current location.

                                       

They work by using a Private network they MADE themselves.

7535.

Write disadvantage of internet give 6 points ?

Answer»

Disadvantages of Internet Communication:

1. Unemployment

Even though the internet has improved many SECTORS, it has resulted in job unemployment through outsourcing, downsizing, and redundancies. For example, a factory can replace skilled personnel with robots which can work faster and for LONGER hours.

2. Privacy

ALTHOUGH the internet has made communication easier, quicker and convenient, privacy problems have emerged. From email hacking to phone signal interceptions, more and more people are now TROUBLED about their private information.

3. Lack of job security

Since technology keeps on CHANGING, job security has become a problem. This means that IT experts need to be continuously learning to keep up with the changes if they want to retain their jobs.

4. Overruling cultures

While the internet has made the universe a global village, some cultures have consumed others. For instance, teenagers in western countries have influenced most teenagers in other parts of the world on how they dress, act and behave.

Conclusion

So, although the internet has definitely made our lives better, it also has the power to cause mayhem. Its impact on a society or a company is mostly felt by the choices we make while using it. But with wise use, we can be able to reap the benefits, and avoid many of its disadvantages.

7536.

Difference between CRT and LCD

Answer»

Hey...dear...here is your ANSWER.........✨✨✨


There are big differences between LCD and CRT, and while LCD technology has advanced to the point where its viewing QUALITY is comparable to CRTs, MANY people today still choose to purchase a CRT monitor. CRTs are bigger and bulkier than an LCD, they consume more power and are prone to screen flicker.❤️

hope it HELPS you.....✌️✌️✌️ bye

7537.

It is a display area of computer

Answer»

Hello dear I am tanwi and your ANSWER is in down

MONITOR is the display area of computer.Monitor displays the PHOTO and videi.



Hope it helps you
Thank you
If any HELP say me

7538.

Main screen of Windows is called.............. a) tabletop b) user area c) Laptop d)recycle bin

Answer»

The main screen of Windows is called tabletop.

Answer: Option(a)

Explanation:

The tabletop is the main screen that RESIDES at the top of the desktop and on the START menu in Windows is a very useful and multipurpose tool.

The tabletop main screen in Windows facilitates as a gateway to other software and DATA available in the computer system, devices ATTACHED, and the network connectivity as well as a shortcut to most of the system details. This further TAKES to system updates and restoration features using shortcuts.

7539.

Write a java program to convert octal to binary????

Answer» CLASS Octal_Binary
{
Scanner scan;
int num;
void getVal()
{
System.out.println("Octal to Binary");
scan = NEW Scanner(System.in);

System.out.println("\nEnter the number :");
num = Integer.parseInt(scan.nextLine(), 8);
}

void convert()
{
STRING binary = Integer.toBinaryString(num);
System.out.println("Binary VALUE is : " + binary);
}
}
class MainClass
{
PUBLIC static void main(String args[])
{
Octal_Binary obj = new Octal_Binary();
obj.getVal();
obj.convert();
}
}
7540.

Rewrite the following query correcting the errors. Also underline the correctionsmade:SELECT * FROM STUDENT WHERE MARKS = NULL;

Answer»

Select * from STUDENTS where MARKS=0 ;
marks can't leave empty . atleast 0 can be obtain by student BT not NULL

7541.

Write a MYSQL command for creating a table “PAYMENT” whose structure isgiven below:Table : PAYMENTField Name DateType Size ConstraintLoan_number Integer 4 Primary keyPayment_number Varchar 3Payment_date DatePayment_amount Integer 8 Not NULL

Answer»

step1: FIRST, CREATE a DATABASE and then create the table using:


create table PAYMENT;




step2:INSERT your values:


insert into PAYMENT values(Loan_number int(4) primary key, Payment_number varchar(3), Payment_date DATE, Payment_amount int(8) not null)

7542.

Write c programme to check wether a number is odd or ecen

Answer»

#include

int main()

{

int NUMBER;

PRINTF("Enter an integer: ");

scanf("%d", &number);

// True if the number is PERFECTLY DIVISIBLE by 2

if(number % 2 == 0)

printf("%d is EVEN.", number);

else

printf("%d is odd.", number);

return 0;

}

7543.

Write down five major to implement internet security

Answer»

Explanation:

Internet security is a branch of computer security specifically related to not only Internet, often involving BROWSER security and the WORLD Wide Web[citation needed], but also network security as it applies to other applications or operating systems as a whole. Its objective is to establish rules and measures to use against attacks over the Internet.[1] The Internet represents an insecure channel for exchanging information, which leads to a high risk of intrusion or fraud, such as phishing,[2] online viruses, trojans, wormsand more.

Many methods are USED to protect the transfer of data, including ENCRYPTION and from-the-ground-up engineering. The current focus is on prevention as much as on real time protection against well known and new threats.

7544.

Write a program to calculate electricity bill using c++

Answer»

# include
# include
void MAIN( )
{
int a, b c ;
cout<<" ENTER a amount PER unit";
cin>>a;
cout <<"enter a no. of days ";
cin>>b;
c= a×b;
cout<<"electric BILL= "c;
getch( );
}



7545.

Why we store os in hard disk rather than primary memory?

Answer»

Restore OS in HARD disk rather than primary MEMORY because OS can control the COMPUTER but primary memory is a type of memory not for controlling

7546.

Which stream is open to study in software of computer?

Answer»

Open SOURCE software is software with source code that anyone can inspect, modify, and enhance.

"Source code" is the part of software that most COMPUTER USERS don't ever see; it's the code computer programmers can manipulate to change how a piece of software—a "program" or "application"—works. Programmers who have access to a computer program's source code can improve that program by ADDING features to it or fixing parts that don't ALWAYS work correctly.

7547.

Which one is better diploma automobileor diploma computer?

Answer» CCC or OLEVEL is a BEST DIPLOMA in COMPUTER
7548.

Which of the below options defines operator overloading?

Answer»

I THINK you FORGET the OPTION

7549.

What will be if there is no database in recent time?

Answer» DATA of huge people can't manage easily .
it takes time to write than type
corrections should take time or MAYBE LEFT BEHIND someone
job opportunity will be more then
7550.

What is scripting language can be used for selenium?

Answer»
✔✔✔✔Ur answer✔✔✔✔


⭐⭐Selenium is a widely used open SOURCE, portable SOFTWARE testing framework for web applications.✔

⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐

Though Selenium comes with a TEST domain specific LANGUAGE ✔(Selenese),✔ other programming languages...✔✔✔

✔(Java, ✔
⭐C#,
⭐Ruby,
✔Python)✔ can be used to script tests as well.☺☺☺☺☺