Software Architect Questions


Q:

Define Virtual folder.?

Answer

It is the folder that contains web applications. The folder that has been published as virtual folder by IIS can only contain web applications

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

0 2128
Q:

Which of the following is system software?

A) MS Paint B) MS Excel
C) MS Word D) MS Windows
 
Answer & Explanation Answer: D) MS Windows

Explanation:

We know that, the collection of programs which performs specific tasks in a computer is called as software. Software in a computer is of two types. They are :

 

1. Aplication Software

2. System Software

 

System software is a computer program that performs the basic functionaility of a computer i.e, running a systems hardware and applications like loading programs, saving data, displaying, etc...

Report Error

View Answer Report Error Discuss

1 2104
Q:

What areas would you like to further develop professionally?

Answer

Why they ask this and what they are looking for:


 


This question "What areas would you like to further develop professionally?" will uncover whether you are interested and knowledgeable about your own development and as such will can be a cloaked attempt to discover your weaknesses.


A common target of the question is to discover how motivated you are to extend yourself. If you are motivated to learn, then you are probably more motivated to do the job well.


 


How to answer this:


First show that you are concerned and active about your own development. You can indicate how development has worked for your in the past.


You're right, continued learning and development is important and I continue to work to improve key skills.


Do answer the question, of course, but do not show gaping holes in your skill set and especially those in key areas required in the job. A good trick is to talk about developing your skills in new areas that will be of future benefit to the company.


 


For example : I am in programming now and love the work, but one day I would like to develop into a management role.


 


Hope this helps you..!

Report Error

View answer Workspace Report Error Discuss

1 2076
Q:

Explain how a web application works.

Answer

A web application resides in the server and serves the client’s requests over internet. The client access the web page using browser from his machine. When a client makes a request, it receives the result in the form of HTML which are interpreted and displayed by the browser.


A web application on the server side runs under the management of Microsoft Internet Information Services (IIS). IIS passes the request received from client to the application. The application returns the requested result in the form of HTML to IIS, which in turn, sends the result to the client.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

0 2076
Q:

What is String Args in Java?

Answer

String Args (String []) is an array of parameters of type String.


In Java, 'args' contains the supplied command-line arguments as an array of String objects. In other words, if you run your program as 'java MyProgram Hello World' then 'args' will contain ["Hello", "World"]. When a java class is executed from the console, the main method is what is called.

Report Error

View answer Workspace Report Error Discuss

9 2057
Q:

What is Primary Key in DBMS?

Answer

A primary key is a special relational database table column or combination of columns designated to uniquely identify all table records. That is, A primary key is a column or set of columns in a table that uniquely identifies tuples (rows) in that table.


A primary key, also called a Primary Keyword.



Main Features Primary key are ::


It must contain a unique value for each row of data.


It cannot contain null values.

Report Error

View answer Workspace Report Error Discuss

10 2018
Q:

Undefined reference to 'pthread_create'

How to Fix this error?

Answer

This is a common error while compiling C program in Linux. This error occurs when you are using pthread_create function to create threads in your programs.


To fix this problem ensure following points:
Include header file pthread.h in your program.
Add –lpthread linker flag with compilation command.
1- Include Header file
#include <stdio.h>
#include <pthread.h>
...
...
2- Compile command
gcc main.c -o main -lpthread

Report Error

View answer Workspace Report Error Discuss

0 2012
Q:

Which is a reserved word in the java programming language?

A) Variable B) Identifier
C) Keyword D) Main
 
Answer & Explanation Answer: C) Keyword

Explanation:

Reserved words are words that cannot be used as object or variable names in a Java program because they're already used by the syntax of the Java programming language.

Java reserved words are keywords that are reserved by Java functions or other uses that cannot be used as identifiers (e.g., variable names, function names, class names).

If a reserved word was used as a variable you would get an error or unexpected result.

 

Examples : Int, Long, Abstract, Class, Break, Catch, Case, Public, Static, Void,...

 

 

Report Error

View Answer Report Error Discuss

1 1994