Questions

Q:

The persistence of learning over time most clearly depends on

A) memory B) visual encoding
C) chunking D) shallow processing
 
Answer & Explanation Answer: A) memory

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2023
Q:

What process immediately preceeded protein synthesis at the ribosome?

A) transcription B) replication
C) translation D) duplication
 
Answer & Explanation Answer: A) transcription

Explanation:

Protein synthesis at the ribosome is immediately preceeded by the transcription process.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

3 2023
Q:

What is the highest number of satellites that have been launched by the ISRO in 2017 on a single rocket ?

A) 22 B) 37
C) 83 D) 104
 
Answer & Explanation Answer: D) 104

Explanation:

India’s space agency on Feb 15th, 2017 launched a record 104 satellites from a single rocket as it crossed another milestone in its low-cost space-exploration program. The satellites from seven countries were carried by the Indian Space Research Organization’s Polar Satellite Launch Vehicle on its 38th consecutive successful flight. On board was a 714kg satellite for earth observation and more than 100 smaller satellites weighing less than 10kg each. Three were Indian-owned, 96 were from US companies, and the rest belonged to companies based in Israel, Kazakhstan, the Netherlands, Switzerland and the United Arab Emirates. Most were owned by Planet Labs Inc, a US-based Earth-imaging company. 

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT , GATE , GRE
Job Role: Bank Clerk , Bank PO

3 2022
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 2022
Q:

What is meant by Maskable interrupts?

Answer

An interrupt that can be turned off by the programmer is known as Maskable interrupt.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2022
Q:

Which of the statements given below are correct?

 

A) In 2018 IPL auctions, Sunrisers Hyderabad retained Steve Smith.

B) Lewis Hamilton won the Formula One 2017 Japanese Grand Prix.

C) Ma Long won the 2017 San Marino and Rimini's Coast Motorcycle Grand Prix.

 

A) Only A B) Only B
C) A and C D) A and B
 
Answer & Explanation Answer: B) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 2021
Q:

Organizational Systems

What are Project-based and Non project-based organizations?

Answer



      • Project-based Organizations are those whose operations consist primarily of projects.

      • Non Project-based organizations often may lack management systems designed to support project needs efficiently and effectively.



Report Error

View answer Workspace Report Error Discuss

0 2021
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 2021